Jump to content

Creating a text link into another GUI


edena
 Share

Recommended Posts

Hi!

Please can anyone help on this,

I want to create Three GUI's: GUI1 will only have a button, GUI2 will have three inputs to create the final result showing a link and a text in GUI3,

A. GUI1 will have a button to navigate to GUI2

B. GUI2 will have three Inputs:

* Input1 will be the site address written, the URL

* Input2 will be the text to show the result in a text link form

* Inpur3 will be just written text

When the button from GUI2 is clicked

C. GUI3 will show the result inputted from GUI2:

* A link in a Text Form

* A plain text form

Below is an example I learnt from Sleepydvdr and BrewManNH but the Inputs and links are not active:

#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <ButtonConstants.au3>
Global $Form1 = 999, $Form2 = 999, $Form3 = 999, $Button1 = 999, $Button2 = 999, $Button3 = 999
$Form1 = GUICreate("Form1", 203, 174)
$Button1 = GUICtrlCreateButton("Button1", 64, 72, 75, 25)
GUISetState(@SW_SHOW)

While 1
    $nMsg = GUIGetMsg(1)
    Switch $nMsg[1]
        Case $Form1
            Switch $nMsg[0]
                Case $GUI_EVENT_CLOSE
                    Exit
                Case $Button1
                    GUISetState(@SW_DISABLE, $Form1)
                    _Form2()
            EndSwitch
        Case $Form2
            Switch $nMsg[0]
                Case $GUI_EVENT_CLOSE
                    GUIDelete($Form2)
                    GUISetState(@SW_ENABLE, $Form1)
                Case $Button2
                    GUISetState(@SW_DISABLE, $Form1)
                    GUISetState(@SW_DISABLE, $Form2)
                    _Form3()
            EndSwitch
        Case $Form3
            Switch $nMsg[0]
                Case $GUI_EVENT_CLOSE
                    GUIDelete($Form3)
                    GUISetState(@SW_ENABLE, $Form2)
            EndSwitch
    EndSwitch
WEnd

Func _Form2()
    $Form2 = GUICreate("Form1", 203, 174)
    $Google = GUICtrlCreateInput("Google", 40, 16, 121, 21)
    $URL = GUICtrlCreateInput("URL", 40, 56, 121, 21)
    $text = GUICtrlCreateInput("text", 40, 96, 121, 21)
    $Button2 = GUICtrlCreateButton("Button1", 64, 136, 75, 25)
    GUISetState(@SW_SHOW)
    #endregion ### END Koda GUI section ###
EndFunc   ;==>_Form2

Func _Form3()
    $Form3 = GUICreate("Form1", 203, 174)
    $Button3 = GUICtrlCreateButton("Button1", 64, 136, 75, 25)
    $Label3 = GUICtrlCreateLabel("Google", 72, 32, 56, 24)
    GUICtrlSetFont(-1, 12, 400, 4, "MS Sans Serif")
    GUICtrlSetColor(-1, 0x0000FF)
    GUICtrlSetCursor(-1, 0)
    $Label3a = GUICtrlCreateLabel("text", 88, 80, 30, 24)
    GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")
    GUISetState(@SW_SHOW)
    #endregion ### END Koda GUI section ###
EndFunc   ;==>_Form3

Thank You

Edited by edena
Link to comment
Share on other sites

Instead of opening another thread for the same question, you should have just kept to the one thread.

Anyways, your controls aren't global, so none of the other functions are going to be able to see the variables that are assigned to the inputs. Read the help file on variable scope, global/local, and then you'll be able to reference them in other functions.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

I apologise for the same thread question but I found that my heading " " sounds more on just opening GUI forms that is why I want to specify my question about creating links " ".

But Thanks for the info. I appreciate it.

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...