Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Negative Numbers shown without a - minus
Message
From
29/08/2014 13:08:11
 
 
To
29/08/2014 13:03:25
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows Server 2012
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01606633
Message ID:
01606727
Views:
70
>>I would create a custom class of the textbox. Then add an Assign method to the Value property with the following:
>>
>>
>>LPARAMETERS txValue
>>this.ForeColor = RGB(0,0,0)
>>IF VARTYPE(txValue) = "N"
>>  IF txValue >= 0.00
>>    this.Value = txValue
>>  ELSE
>>    this.Value = "(" + ABS(txValue) + ")"
>>    this.ForeColor = RGB(255,0,0)
>>  ENDIF
>>ELSE
>>  this.Value = txValue
>>ENDIF
>>
>
>If the user changed her mind and decided to make the number positive, how would the forecolor change back?
>
>That forecolor might stay red if the user

Did you read the code carefully? (Hint: see line # 2)
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform