zxtnt09 Posted September 4, 2015 Share Posted September 4, 2015 Hi,i was create a sql database ( it was have username / password ) now how can i connect this sql database to my autoit program ?!notes : member can not create his own account ( i should create username/password ).if someone help me step-by-step I'am grateful to him thanks. Link to comment Share on other sites More sharing options...
Danyfirex Posted September 4, 2015 Share Posted September 4, 2015 saludos zxtnt09 1 Danysys.com AutoIt... UDFs: VirusTotal API 2.0 UDF - libZPlay UDF - Apps: Guitar Tab Tester - VirusTotal Hash Checker Examples: Text-to-Speech ISpVoice Interface - Get installed applications - Enable/Disable Network connection PrintHookProc - WINTRUST - Mute Microphone Level - Get Connected NetWorks - Create NetWork Connection ShortCut Link to comment Share on other sites More sharing options...
zxtnt09 Posted September 5, 2015 Author Share Posted September 5, 2015 Gracias <3 Link to comment Share on other sites More sharing options...
Danyfirex Posted September 5, 2015 Share Posted September 5, 2015 Gracias <3De nada. Saludos zxtnt09 1 Danysys.com AutoIt... UDFs: VirusTotal API 2.0 UDF - libZPlay UDF - Apps: Guitar Tab Tester - VirusTotal Hash Checker Examples: Text-to-Speech ISpVoice Interface - Get installed applications - Enable/Disable Network connection PrintHookProc - WINTRUST - Mute Microphone Level - Get Connected NetWorks - Create NetWork Connection ShortCut Link to comment Share on other sites More sharing options...
zxtnt09 Posted September 5, 2015 Author Share Posted September 5, 2015 (edited) Dear,i was fix that ( connect to website) and all of that is fine working but,how can i use something like that : my Login GUI : expandcollapse popup; GUI For Login #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <ProgressConstants.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> $LOGIN = GUICreate("Login", 371, 100, 400, 400) GUISetIcon("C:\Users\Sarah\Desktop\Setup\t44.exe", -1) GUISetBkColor(0xFFFFFF) $usernametxt = GUICtrlCreateLabel("Username:", 8, 16, 55, 17) GUICtrlCreateInput("", 88, 16, 161, 21) GUICtrlCreateInput("", 88, 48, 161, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_PASSWORD)) $buy = GUICtrlCreateButton("Buy", 280, 14, 81, 25) $ok = GUICtrlCreateButton("Log iN", 280, 47, 81, 25) GUICtrlSetBkColor(-1, 0xA6CAF0) $passwordtxt = GUICtrlCreateLabel("Password:", 5, 48, 53, 17) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $buy buy() Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd ; Buy account Func buy() If $buy = True Then ShellExecute ("http://google.com") EndIf EndFunc ; My script ( it should show after login was success )thanks ♥ Edited September 5, 2015 by zxtnt09 Link to comment Share on other sites More sharing options...
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