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!

VB.NET Programming Corner!

asa first page...
talagang introduction ang ang ituturo ng mga school, IKAW na bahala ang mag research kung saan ka nahihirapan at naguguluhan..
example
dataadapter, check mo lng sa library or sa google then basahin mo..
eto pa, intellisense ng .net mas ok nanaman kasi may explanation agad...

kung naging SPOON FEEDING ang mga school ngayn ewan ko lng kung anong mangyayari sa IT natin dito sa pilipinas...

Yeah agree ako sau master polens basic syntax lang tlaga tinutoro sa skul. Ikaw na bahala sa iba kaya kung d mo talaga trip IT or comsci ala d ka aasenso dyan.. :) Read and Read and Read lalo na bawal ka mapagiwanan sa IT world kung hindi mahihirapan ka ulit.
 
asa first page...
talagang introduction ang ang ituturo ng mga school, IKAW na bahala ang mag research kung saan ka nahihirapan at naguguluhan..
example
dataadapter, check mo lng sa library or sa google then basahin mo..
eto pa, intellisense ng .net mas ok nanaman kasi may explanation agad...

kung naging SPOON FEEDING ang mga school ngayn ewan ko lng kung anong mangyayari sa IT natin dito sa pilipinas...


Tnx TS, pero yung sa akin lang halos lahat ng mga nakalagay doon ay hindi ko alam kung para saan???? PERO TNx sa REply!! babasahin ko na lang yung my comment mo!!!

SECOND QUESTION!

paano palitan ung sa LOGIN Form yung password ng *!!! e2 code ko!!!
If TBUser.Text = "Admin" And TBPassword.Text = "12345" Then
Form2.Show()
Me.Hide()
Else : MsgBox("Username and/or Password incorrect, Please re-enter")
End If

TBUser.Text = ""
TBPassword.Text = ""
 
sir marniel pahelp nmn gumgwa kasi kami projct para sa vb.net.gumagawa ako ngayon ng LIBRARY SYSTEM.prob ko is un pano magkakaroon ng NOTIFICATION kapag DUE DATE na ng BOOK na BINORROW...pahelp po/
 
Tnx TS, pero yung sa akin lang halos lahat ng mga nakalagay doon ay hindi ko alam kung para saan???? PERO TNx sa REply!! babasahin ko na lang yung my comment mo!!!

SECOND QUESTION!

paano palitan ung sa LOGIN Form yung password ng *!!! e2 code ko!!!
If TBUser.Text = "Admin" And TBPassword.Text = "12345" Then
Form2.Show()
Me.Hide()
Else : MsgBox("Username and/or Password incorrect, Please re-enter")
End If

TBUser.Text = ""
TBPassword.Text = ""
textbox properties... try to check
 
mga boss pano po gumwa ng archive sa system namin .. parang pharmacy yung system namin.. kumbaga dun lahat babasag yung mga old patient records.. meron ba kayo link ng sample pharmacy system ? hihi salamat po sa mag help )
 
mga boss pano po gumwa ng archive sa system namin .. parang pharmacy yung system namin.. kumbaga dun lahat babasag yung mga old patient records.. meron ba kayo link ng sample pharmacy system ? hihi salamat po sa mag help )

gawa ka lng ng archived table
select all sa main table
loop then insert sa archived table
archived table same sila ng fields sa main table....
kayo na bahala kung ano ang "OLD RECORD" sa new record..business rules kumbaga..
 
gawa ka lng ng archived table
select all sa main table
loop then insert sa archived table
archived table same sila ng fields sa main table....
kayo na bahala kung ano ang "OLD RECORD" sa new record..business rules kumbaga..
sge boss salamat sa pag help :) pwede ko ba makuha ym mo boss papahelp lng sa system
 
sir my link po kau ng vb.net installer ??? pahinge namn po salamat . .wala pa po kasi ako installer . . :)
 
Ano pa kaya ang magandang GUI sa leave extension ? Naisip namin na kailangan ma-record pa rin ang original inclusive dates:
-Date Filed
-Date From
-Date To
 
Mga master, possible ba sa listview na palitan ang row type niya? Pwd ba maglagay ng checkbox sa listview?

Anyway meron pa po akong isang problema, kasi nag save na ako ng records sa database ko, ang lumalabas sa grid ay ganito.
attachment.php


Pero gusto ko sana yung DisplayMember nya hindi yung ValueMember. Paano po kaya ito mga master? Although na bind po ako ng combobox. Eto ang table na pinagkukuhanan ko ng Value.
attachment.php




Patulong naman mga master.
 

Attachments

  • 1.JPG
    1.JPG
    10.5 KB · Views: 64
  • 2.JPG
    2.JPG
    10.6 KB · Views: 65
Last edited:
tanong lang sir.me prob ako sa pag insert ng data sa database.gmit ko is MSACCESS as db. meron ka ba sample jan ng working program na merong insert tpos display nya sa listview ?thanks sir.
 
Last edited:
tanong lang sir.me prob ako sa pag insert ng data sa database.gmit ko is MSACCESS as db. meron ka ba sample jan ng working program na merong insert tpos display nya sa listview ?thanks sir.
first page po ang mga samples...
 
Help.

Mga master, possible ba sa listview na palitan ang row type niya? Pwd ba maglagay ng checkbox sa listview?

Anyway meron pa po akong isang problema, kasi nag save na ako ng records sa database ko, ang lumalabas sa grid ay ganito.
attachment.php


Pero gusto ko sana yung DisplayMember nya hindi yung ValueMember. Paano po kaya ito mga master? Although na bind po ako ng combobox. Eto ang table na pinagkukuhanan ko ng Value.
attachment.php




Patulong naman mga master.
 

Pwede ang listview na checkbox, sa properties look for
CheckBoxes and set it to True. (It's False by default.)

Dun sa Combobox, pano ba ang code mo?
Paki-post po dito.

Heto ang example..
for reference...
Dim conn As New SqlConnection(connString)

Dim strSQL As String = "SELECT * FROM tblStatus"
Dim da As New SqlDataAdapter(strSQL, conn)
Dim ds As New DataSet
da.Fill(ds, "tblStatus")

With ComboBox1
.DataSource = ds.Tables("tblStatus")
.DisplayMember = "Description"
.ValueMember = "StatusID"
.SelectedIndex = 0
End With
 
Last edited:
Pwede ang listview na checkbox, sa properties look for
CheckBoxes and set it to True. (It's False by default.)

Dun sa Combobox, pano ba ang code mo?
Paki-post po dito.

Heto ang example..
for reference...
Dim conn As New SqlConnection(connString)

Dim strSQL As String = "SELECT * FROM tblStatus"
Dim da As New SqlDataAdapter(strSQL, conn)
Dim ds As New DataSet
da.Fill(ds, "tblStatus")

With ComboBox1
.DataSource = ds.Tables("tblStatus")
.DisplayMember = "Description"
.ValueMember = "StatusID"
.SelectedIndex = 0
End With

Master ganito po ang pang bind ko ng combobox.

Sub dg_cmbDataBind(ByVal cmb As Object, Optional ByVal hasNewLine As Boolean = True, Optional ByVal NewLineDescr As String = "")
Dim oDtTable As Data.DataTable = Ds.Tables(0).Copy

If hasNewLine Then
oDr = oDtTable.NewRow
oDr(0) = "-1"
oDr(1) = NewLineDescr
oDtTable.Rows.Add(oDr)

oDtTable.DefaultView.Sort = oDtTable.Columns(1).ColumnName
End If


cmb.DataSource = oDtTable.DefaultView
cmb.ValueMember = oDtTable.Columns(0).ColumnName
cmb.DisplayMember = oDtTable.Columns(1).ColumnName
'cmb.DataBindings()
End Sub

Katulad la din naman po ng sample mo.
 
mga boss ano po smtp host at port sa yahoo mail yung working poh..try ko nah ang host smtp.mail.yahoo.com @ port 465,25,587..nag eeror poh e.. para po sa pagsend nag email using vb.net..poh
 
mga boss ano po smtp host at port sa yahoo mail yung working poh..try ko nah ang host smtp.mail.yahoo.com @ port 465,25,587..nag eeror poh e.. para po sa pagsend nag email using vb.net..poh

Enable mo ang SSL para magamit mo ang port 465.
 
mga TS help about sa vb.net at sql!!!

ano pong sql server ung mdali gmitan na iccoconnect sa vb.net???

tska

pahingi naman po ng sample program dyan sa vb.net w/ database na sql na may ADD,DELETE,UPDATE,SAVE,NEXT,PREVIOUS


salamat po :help:
 
Back
Top Bottom