Log in

View Full Version : GUI help, with making tEdit change username.



laakerules
01-15-2012, 12:13 AM
How would i make the tEdit change a global variable just as the username/password and any other global variables i might want to change.

Zyt3x
01-15-2012, 12:14 AM
var
S : String;
Edit : TEdit;

begin
// code
S := Edit.Text;
end.

laakerules
01-15-2012, 12:28 AM
Thanks but i got it working with somethign alot simpler! :) But thanks for input.