Very nice Glyn. Im thinking of making a basic VB6 guide but im still pondering it![]()
Very nice Glyn. Im thinking of making a basic VB6 guide but im still pondering it![]()
omg Thnx Glynn.
I needed something like this . Thanks allot.
Gonna add a new guide probably something this week so stay tuned!
I wanna have my reply in this thread because it be kewl liek that.
Dragon, we all know your to sexy for this thread *shows her the door*.
Anyways..My next guide is on a GUI and how to make a button 'do' what you want it to, I'm hoping to kinda keep these threads going and getting a little more advanced each time then link them all together at the end.
Glyn
(express your thoughts)
blech i would learn this but im too bussy learing HTML for my ICT course so i will lear this strait after and then its on to C++
But +rep for some effort
Science has not yet taught us if madness is or is not the sublimity of the intelligence.
Very nice indeed glyn, +well earned rep from me.
Nice guide, i got down these basics a while ago when i started making random small afk bots and honor bots for myself. What i got stuck on was the GUI. Saving/loading variables into a input box got me. Could save but loading was broken, and wouldn't load in the boxes.
*shrug* We'll wait and see how your series turns out![]()
#include <GUIConstants.au3>
GUICreate("PC2012 Checkboxes")
$checkCN = GUICtrlCreateCheckbox ("CHECKBOX 1", 10, 10, 120, 20)
$checkCN = GUICtrlCreateCheckbox ("CHECKBOX 2", 10, 30, 120, 20)
$checkCN = GUICtrlCreateCheckbox ("CHECKBOX 3", 10, 50, 120, 20)
GUISetState ()
; Run the GUI until the dialog is closed
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
Wend
Looks Good)
---------- Post added at 05:19 AM ---------- Previous post was at 05:15 AM ----------
I tried the IE Browser to Web Page with both codes you gave...
They Didn't work for me.
I like the code below and it works with my default Browser which is Firefox...
Example Browser Link.au3
-------------------------------------------------------------------------------------------
Run(@comspec & " /c start www.google.com",@scriptdir, @SW_HIDE)
--------------------------------------------------------------------------------------------
This works much better... Just thought I would share..)