Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Recent content by doorbreaker

  1. doorbreaker

    VB.NET Programming Corner!

    pwede ka ba gumawa ng layout. hindi ko magets yung from picturebox sa other picturebox. and isa pa ang formula is for mathematical equations. wala naman icompute sa picture. baka ibig mo sabihin code. nasan ba talaga ang data mo. nasa listview na or nasa database pa?
  2. doorbreaker

    VB.NET Programming Corner!

    Picturebox2.Image = Picturebox1.Image
  3. doorbreaker

    VB.NET Programming Corner!

    yes, kung nasa network yan eh di mas matagal pa. yan yung nagexecute kumbaga naghahanap sa table at nag didisplay. kung nasa variable na eh di idisplay nalang hindi na hahanapin.
  4. doorbreaker

    VB.NET Programming Corner!

    Private Sub autoempid() cn.Open() With cmd .Connection = cn .CommandText = "SELECT 'P-' + replicate('0',6 - len(Applicant_No)) + cast(Applicant_No + 1 as nvarchar(10)) FROM employee" End With Dim number As Integer = cmd.ExecuteScalar If IsDBNull(number) Then TxtEmpID.Text = "P-000001" Else...
  5. doorbreaker

    VB.NET Programming Corner!

    first of all, hindi nagrun ang checkbox. baka ibig mo sabihin mag run setup na indicated sa checkbox. first kaylangan alam mo yung path nung setup na tinuturo ng checkbox mo then gumamit ka ng nested if and process.start private sub button1(.......) if checkbox1.checked then...
  6. doorbreaker

    VB.NET Programming Corner!

    pwede ka gumamit ng variable then iupdate mo yun on the checkchanged event ng radio button mo. dim CS as string private sub radioMarried_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles radioMarried.CheckedChanged cs = "Married" end sub pwede din pag saving na mag...
  7. doorbreaker

    VB.NET Programming Corner!

    hindi ko alam kung ano ang astig. vb6 obselete na hindi na supported yon anong taon pa. hindi rin magagamit yung bagong framework don.
  8. doorbreaker

    VB.NET Programming Corner!

    pwede thru serial port. use rtc to send a signal to a relay. patulong ka nlng sa marunog sa electronics.
  9. doorbreaker

    VB.NET Programming Corner!

    ipost mo yung connection string mo. baka path ang nilagay mo.
  10. doorbreaker

    VB.NET Programming Corner!

    default na yon ah. dapat yung tabstop property ng text box mo naka true.
  11. doorbreaker

    VB.NET Programming Corner!

    I'm not sure kung tama yung pagkakaintindi mo sa tanong mo. te declare a variable as date/time Dim dateVariable As Date = "4/7/15 3:00 PM" to get the current time in vb.net we use Now to compare the the 2 and toggle a picturebox if...
  12. doorbreaker

    VB.NET Programming Corner!

    Dim FILE_NAME As String = string.format("c:\FOLDER\{0}.txt", textboxsomewhere.text mas maganda kung mag savefiledialog ka nlng gaya ng sinabi ni master maskio
  13. doorbreaker

    [help] mssql query

    create table testable(id nvarchar(3),cat nvarchar(6),subcat nvarchar(6),barcod nvarchar(18)) insert into testable select 'c01','000100','0010',null union all select 'c02','000100','0010',null union all select 'c03','000200','0020',null declare @table as table (ID nvarchar(3),barcod...
Back
Top Bottom