autoitxp Posted March 20, 2007 Posted March 20, 2007 Hi i need little help here . i connected to mdb database using this script how can i tree view column1 using GUICtrlCreateTreeViewItem Local $oRS Local $oConn $oConn = ObjCreate("ADODB.Connection") $oRS = ObjCreate("ADODB.Recordset") $oConn.Open("Driver={Microsoft Access Driver (*.mdb)};Dbq=mydb.mdb") $oRS.Open("Select * FROM Table2", $oConn, 1, 3) MsgBox(1,"", "There are " & $oRS.RecordCount & " column1.") $oConn.Close $oConn = 0
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now