Board index » delphi » repost: SetFocus in InnoSetup

repost: SetFocus in InnoSetup


2006-12-10 09:37:22 AM
delphi192
Hello and sorry for reposting, I had a problem with my date.
Im trying to figure out how to focus to a control in InnoSetup.
SetFocus doesnt work. Any idea?
Thanks
 
 

Re:repost: SetFocus in InnoSetup

Bob D writes:
Quote
Hello and sorry for reposting, I had a problem with my date.
She was in a bad mood?
:-)
JoeH
 

Re:repost: SetFocus in InnoSetup

Quote
Im trying to figure out how to focus to a control in InnoSetup.
SetFocus doesnt work. Any idea?
WizardForm.ActiveControl:=Edit4;
Oliver Townshend
 

Re:repost: SetFocus in InnoSetup

THANKS THANKS !!!
One more question please,
I have a Edit1 control and I need this value to store in an ini file at the
end of
installation. How can I access Edit1 value from Ini section?
Thanks
"Oliver Townshend" <oliveratzipdotcomdotau>writes
Quote
>Im trying to figure out how to focus to a control in InnoSetup.
>SetFocus doesnt work. Any idea?

WizardForm.ActiveControl:=Edit4;

Oliver Townshend

 

Re:repost: SetFocus in InnoSetup

Really bad :-)
"Joe Hendricks" <XXXX@XXXXX.COM>writes
Quote
Bob D writes:
>Hello and sorry for reposting, I had a problem with my date.

She was in a bad mood?
:-)
JoeH
 

Re:repost: SetFocus in InnoSetup

Quote
I have a Edit1 control and I need this value to store in an ini file at
the end of
installation. How can I access Edit1 value from Ini section?
This might help, as its the code I use to write to the registry (so there's
probably a related function call). (The ability to search the newsgroups at
jrsoftware.org is really useful BTW)
RegWriteStringValue(HKEY_CURRENT_USER, 'Software\Code
Legal\Application','Sales Representative', Edit4.Text);
Oliver Townshend