Apr 15, 2002 #1 david7777777777 Programmer Joined Sep 26, 2001 Messages 417 Location US How do you set a default value in a textbox DTC? Thanks.
Apr 17, 2002 #2 MerlinB Programmer Joined Dec 14, 2000 Messages 399 Location GB Just provide a value in the thisPage_onenter event (add a PageObject DTC first). Sub thisPage_onenter() if thisPage.firstEntered then txtMyTextbox.value = "a default" end if end sub http://www.websitedesign.co.ukhttp://www.zentext.com (Content Management) Upvote 0 Downvote
Just provide a value in the thisPage_onenter event (add a PageObject DTC first). Sub thisPage_onenter() if thisPage.firstEntered then txtMyTextbox.value = "a default" end if end sub http://www.websitedesign.co.ukhttp://www.zentext.com (Content Management)