Loading
Share Your Source Code or Article
Do you have source code, articles, tutorials, web links, and books to share? You can write your own content here. You can even have your own blog.
Submit now...
Submit now...
Sponsor
Receive Free Updates
Today's popular content
- Payroll System (179)
- A Simple Add, Edit, Delete, and Search using VB and MSAccess (162)
- Hotel Reservation System (VB.NET) (129)
- Students Information System (121)
- Library Management Software (118)
- How to Add/Update/Delete Record using MS Access Database (115)
- Free Hotel Management System Manual (104)
- Hotel Reservation System (101)
- Library System Source Code (94)
- how to unload form and load a new form (92)
- 1 of 204
- ››
Random Post
- "this" IN JAVA VER.1.1 (1,011)
- Upload binary data the Database (1,440)
- Fingerprint Scanner/Reader using Digital Persona (3,223)
- Sample How to Use YouTube API in PHP or HTML (11,311)
- How to Ask Question (2,492)
- Windows Forms - ComboBox Control (10,506)
- Pritam's Audio Player (1,122)
- How to make a form transaparent! (2,763)
- Eyebrowser - BORLA (INTERNET BROWSER USING JAVA) (1,260)
- Save Information Using (ADO.NET OledbConnection(Object Oriented Programming)) (7,650)
- 1 of 133
- ››
hi there!
First, you need to make connection string of your data base from your vb project,,like this
Public cn As ADODB.Connection
Public rs As New ADODB.Recordset
Public Sub myCon()
Dim mDataSource As String
mDataSource = "database/kiosk.mdb"
Set cn = New ADODB.Connection
cn.CursorLocation = adUseClient
cn.CommandTimeout = 0
cn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & mDataSource & ";Persist Security Info=False"
Set rs = New ADODB.Recordset
End Sub
hope makatulong ito sa problema mo..