| View previous topic :: View next topic |
| Author |
Message |
unub Cheater
Reputation: 0
Joined: 13 Jun 2007 Posts: 32
|
Posted: Sun Mar 16, 2008 6:19 pm Post subject: +Question+ Delphi Exit Form Code |
|
|
Hey Guys,
Alright so i've got my code to show Form2 when I click a button on Form1 so all I need is a code that will Terminate Form2 until the button on Form1 is clicked again
Thanks!
_________________
once a hacker a hacker for ever
Last edited by unub on Mon Mar 17, 2008 4:37 am; edited 1 time in total |
|
| Back to top |
|
 |
NothingToShow Grandmaster Cheater Supreme
Reputation: 0
Joined: 11 Jul 2007 Posts: 1579
|
Posted: Mon Mar 17, 2008 3:19 am Post subject: |
|
|
What you mean by terminate?
I searched "terminate form delphi" on Google, and found this.
I don't know if that's what you're looking for.
|
|
| Back to top |
|
 |
unub Cheater
Reputation: 0
Joined: 13 Jun 2007 Posts: 32
|
|
| Back to top |
|
 |
NothingToShow Grandmaster Cheater Supreme
Reputation: 0
Joined: 11 Jul 2007 Posts: 1579
|
Posted: Mon Mar 17, 2008 4:30 am Post subject: |
|
|
If you wanna show a form, and hide it again, it could be:
Button cancel:
| Code: | | Form2.Visible := False; |
Button ok:
| Code: | | Form2.Visible := True; |
|
|
| Back to top |
|
 |
unub Cheater
Reputation: 0
Joined: 13 Jun 2007 Posts: 32
|
|
| Back to top |
|
 |
NothingToShow Grandmaster Cheater Supreme
Reputation: 0
Joined: 11 Jul 2007 Posts: 1579
|
Posted: Mon Mar 17, 2008 5:42 am Post subject: |
|
|
You should look at all the flash procedures/functions, which appears when you type
And make some new UFT features.
And if you want another GUI, you could use the WinXP GUI.
Go to Win32 tab, and put a XPManifest component on the form.
|
|
| Back to top |
|
 |
malfunction Grandmaster Cheater Supreme
Reputation: 0
Joined: 30 Jan 2007 Posts: 1015 Location: http://www.behindthecorner.com/
|
Posted: Tue Mar 18, 2008 9:02 am Post subject: |
|
|
lol use
_________________
|
|
| Back to top |
|
 |
Anden100 Grandmaster Cheater
Reputation: 0
Joined: 20 Apr 2007 Posts: 668
|
Posted: Wed Mar 19, 2008 8:29 am Post subject: |
|
|
omgroflol:
| Code: | Procedure Button1Click(Sender: TObject)
Begin
Form2.close
end; |
|
|
| Back to top |
|
 |
|