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!

Exclusively for Visual Basic 6.0 Programmers Only!

Great Day! Everyone :)

Patulong naman Thanks in Advanced :)

Panu ko ba to gagawin sa vb6 + mysql + listview
"Gusto ko sana palabasin na mag tototal sila by Category pero sunod sunod sila lilitaw like dito sa example na picture na nilagay ko"

Thanks ulit , malaking pasasalamat ko sa mga tutulong Thanks :)
 

Attachments

  • Sample Table.JPG
    Sample Table.JPG
    28.5 KB · Views: 9
Last edited:
error method refresh failed daw at syntax in from clause anu po mali?
note : table name po ay USER field name po user at pass

Adodc1.RecordSource = "SELECT * FROM USER WHERE user = " & Text1.Text
Adodc1.Refresh
If Adodc1.Recordset.Fields(0) = Text1.Text Then
MsgBox " Already exist"
Else
Adodc1.Refresh
With Adodc1.Recordset

.AddNew
.Fields(0) = Text1
.Fields(1) = Text2
.Update
End With
End If
 
Last edited:
error method refresh failed daw at syntax in from clause anu po mali?
note : table name po ay USER field name po user at pass

Adodc1.RecordSource = "SELECT * FROM USER WHERE user = " & Text1.Text
Adodc1.Refresh
If Adodc1.Recordset.Fields(0) = Text1.Text Then
MsgBox " Already exist"
Else
Adodc1.Refresh
With Adodc1.Recordset

.AddNew
.Fields(0) = Text1
.Fields(1) = Text2
.Update
End With
End If
<b>Adodc1.RecordSource = "SELECT * FROM USER WHERE user = '" & Text1.Text "'"</b>
Adodc1.Refresh
If Adodc1.Recordset.Fields(0) = Text1.Text Then
MsgBox " Already exist"
Else
Adodc1.Refresh
With Adodc1.Recordset

.AddNew
.Fields(0) = Text1
.Fields(1) = Text2
.Update
End With
End If

try this one :)
 
pahenge poh ng source code... la kc ako mahanap sa google ehh..

import excel file data to mysql database..

pahelp poh...
 
Mga Sir pnu ba ma ayus ung error 429? 64bits kc gmit ko d ko mpaconnct xa msaccess
 
I like to stay hir... I am enjoying this thread...:clap:

nid help cnu may alam na system about PARISH INFORMATION SYSTEM...:help: pls kelangan q lng po ng sample!
 
mga tol patulong nman sa log in form using adodc and ms access as database..
2 textbox lng, ung username at password at isang combobox na usertype(admin/user)..di q makuha pg may usertype na..tnx in advance..
 
mga tol patulong nman sa log in form using adodc and ms access as database..
2 textbox lng, ung username at password at isang combobox na usertype(admin/user)..di q makuha pg may usertype na..tnx in advance..

use adodb instead. kung gusto mo check mo signature ko
 
Guys phingi nmn ng Forms para sa Database Backup tska Restore (for MS Access) add ko lng sa SYSTEM ko :D para tapos na : SALAMAT

:salute::praise::salute:


:thanks:
 
Guys phingi nmn ng Forms para sa Database Backup tska Restore (for MS Access) add ko lng sa SYSTEM ko :D para tapos na : SALAMAT

:salute::praise::salute:


:thanks:

add reference microsoft scripting run time


back up code

fileSys.CopyFile App.Path & "\database\db.mdb", App.Path & "\backup\" & txtbackupname.Text & ".bck", True


MsgBox "Backup Sucessful"

restore code

Dim fileSys As New FileSystemObject

fileSys.CopyFile App.Path & "\backup\" & txtbackupname, App.Path & "\database\db.mdb", True
MsgBox "Restore Successful!", vbInformation

parang ganyan
 
ano component ba ang gagamitin sa vb 6.0 kapag gagawa ng connection sa mysql?
 
pa-help naman po... paano po ang code para sa random show ng forms??? :)
 
Great Day! Everyone :)

Patulong naman Thanks in Advanced :)

Panu ko ba to gagawin sa vb6 + mysql + listview
"Gusto ko sana palabasin na mag tototal sila by Category pero sunod sunod sila lilitaw like dito sa example na picture na nilagay ko"

Thanks ulit , malaking pasasalamat ko sa mga tutulong Thanks :)


Nakita ko na ang sagot gusto ko lang ishare sa inyo para kung sakaling maging problema niyo rin to :) Happy Coding :)

Link : Click Here
 
Last edited:
guys help pano lagyan ng application number already exist e2 ung code ko sa SAVE button

Private Sub cmdSave_Click()
Dim cntrl As Control

For Each cntrl In Me
If TypeOf cntrl Is TextBox Then
If cntrl.Text = "" Then
MsgBox "Please provide value in the blank field "
Exit Sub
End If
End If
If TypeOf cntrl Is ComboBox Then
If cntrl.Text = "" Then
MsgBox "Please Select the appropriate value from the dropdown box"
Exit Sub
End If
End If

Next

Call connect
With rs_appform

.AddNew
.Fields("app_no") = txappno.Text
.Fields("type_flu") = cmbflu.Text
.Fields("date_issued") = DTPicker1.Value
.Fields("has") = txarea.Text
.Fields("region") = cmbreg.Text
.Fields("province") = cmbprov.Text
.Fields("municipality") = txmunicipal.Text
.Fields("barangay") = txbarangay.Text
.Fields("n") = txnorth.Text
.Fields("e") = txeast.Text
.Fields("w") = txwest.Text
.Fields("s") = txsouth.Text
.Fields("applicant") = txapplname.Text
.Update
'End With
MsgBox "Student Successfully Added, Please Proceed for Enrollment", vbInformation, "STUDENT ENROLLED"
Dim rep
rep = MsgBox("Do you wish to enroll new student ?", vbInformation + vbYesNo, "CREATE NEW")
If rep = vbYes Then
Unload frmsturegister1
Unload Me
frmflag.Show

Else
Unload frmflag
Unload Me
End If
End With
'End With

End Sub

sana mhelp nyo poh ako d2 salamat
 
Back
Top Bottom