Jump to content

GUI to au3 to exe


 Share

Recommended Posts

I created a simple GUI like this using Koda

#include <GUIConstants.au3>

#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 294, 241, 238, 251)
GUISetBkColor(0xFFFBF0)
$Radio1 = GUICtrlCreateRadio("download text 1", 104, 64, 113, 17)
GUICtrlSetBkColor(-1, 0xFFFFFF)
$Radio2 = GUICtrlCreateRadio("download text 2", 104, 104, 113, 17)
$Button1 = GUICtrlCreateButton("Compile", 112, 176, 75, 25, 0)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit

    EndSwitch
WEnd

Now I need to make so when first checkbox selected the GUI will compile an exe that will download txt file from one url and when second checkbox selected it will compile another exe that will download txt file from another url

I need it to compile an exe and not .au3 file and also without autoit installed

I have no clue how to do it, I will be very grateful if someone can modify this script so i will be able to do it

Thanks

Edited by autoit180
Link to comment
Share on other sites

Next time search before posting. The question "how do I compile scripts without autoit installed?" has been asked many times. The answer is always the same. Please search around and you will find an answer.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...