Welcome Guest. Please Login or Register. Apr 5th, 2018, 11:24pm
ATTENTION MEMBERS: Conforums will be closing it doors and discontinuing its service on April 15, 2018. Ad-Free has been deactivated. Outstanding Ad-Free credits will be reimbursed to respective payment methods.
If you require a dump of the post on your message board, please come to the support board and request it.
Re: Dialogue boxes
« Reply #1 on: Dec 4th, 2008, 10:51pm »
If you specify the ES_NUMERIC you can only enter DIGITS into the edit box, so it will not accept signed negative numbers a user types in. You can put them there with SETDLGINT where the last parameter is a boolean signed/not signed.
The other way is to not specify ES_NUMERIC and use a noraml text box and poll what the user is entering yourself in a loop..only allowing him/her to enter the digits 0-9 and a - sign.