Terms of Agreement:
By using this article, you agree to the following terms...
You may use
this article in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.
You MAY NOT redistribute this article (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.
You may link to this article from another website, but ONLY if it is not wrapped in a frame.
You will abide by any additional copyright restrictions which the author may have placed in the article or article's description.
Function Index Using Concept ADO Database Using Acces
This Concept
1. Open Conection To Database.Example Create Model To Open Connection Database
Example :
Public db as New ADODB.Connection
Public rsA as new ADODB.Recordset
Public Function openDt() As String
On Error Resume Next
With db
.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=False;Data Source=" & App.Path & ".\Database\Data.mdb"
.Open
End With
End Function
'This Is Connection To Table
Sub OpenTbl
with rsA
if .state=adstateopen then
.close
end if
.CursorLocation =adUseClient
.open "Select * from Product",db,adOpenDynamic, adLockOptimistic
end with
end sub
2. And Form Use Code
Example :
with modul
.opendt
.opentbl
end with
3.Give Command Button and Gice Code
Example :
rsA.requery
Ure Database Index
Your feedback will be posted below and an email sent to
the author. Please remember that the author was kind enough to
share this with you, so any criticisms must be stated politely, or they
will be deleted. (For feedback not related to this particular article, please
click here instead.)