keteng Posted May 1, 2013 Posted May 1, 2013 We're sorry.My English is very bad. The code can work generated MDB files. But no password. May I ask how to create MDB file with a password. Local $DbFileName = @ScriptDir & "\Test.mdb" Local $UserID = "admin" Local $PassWord = "Testpwd" Local $ODBC_ADD_SYS_DSN = 4 Local $lpszDriver = "Microsoft Access Driver (*.MDB)" & Chr(0) Local $lpszAttributes = "CREATE_DB=" & $DbFileName & " General" & Chr(0) & _ "UID=" & $UserID & Chr(0) & _ "PWD=" & $PassWord & Chr(0) DllCall("odbccp32.dll","BOOL","SQLConfigDataSource","HWND",NULL, _ "WORD",$ODBC_ADD_SYS_DSN ,"str",$lpszDriver,"str",$lpszAttributes)
water Posted May 1, 2013 Posted May 1, 2013 Welcome to AutoIt and the forum! Please search the Example Scripts forum. There is a MSAccess UDF which might have the function you are looking for. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
keteng Posted May 1, 2013 Author Posted May 1, 2013 Thank you very much for your reply. I search and download its function. But the same can not generate the MDB files with a password. #include "MS_AccessDB.au3" MS_AccessDatabaseCreate("MSDataBase.mdb","admin","123456789",0,True)
water Posted May 1, 2013 Posted May 1, 2013 What's the value of @error after you called MS_AccessDatabaseCreate? My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
keteng Posted May 1, 2013 Author Posted May 1, 2013 MS_AccessDatabaseCreate establish the success of the MDB file. No error return value. Just MDB files with no password.
water Posted May 1, 2013 Posted May 1, 2013 What do you get when you rung:Global $iReturn = MS_AccessDatabaseCreate("MSDataBase.mdb","admin","123456789",0,True) MsgBox(0, "", $iReturn & "-" & @error) My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
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