Login?
Posted: Fri Mar 05, 2010 11:52 pm
How can i make a Remember me checkbox?
Which saves Textbox1 and Textbox2 =)?
Which saves Textbox1 and Textbox2 =)?
Sharing, Teaching and Supporting coders of all ages and levels since 2009
https://www.codenstuff.com/forum/
My.settings.rm = true
my.settings.un = textbox1.text
my.settings.p = textbox2.text
my.settings.save
my.settings.reload
if my.settings.rm = true then
textbox1.text = my.settings.un
textbox2.text = my.settings.p
checkbox1.checked = true
else
checkbox1.checked = false
end if