View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Matthew Connor Matthew Connor is offline
external usenet poster
 
Posts: 17
Default Comma in TextBox Problem (Spanish)

Jeff B wrote:
I have a US created spreadsheet with VBA that has a form
with a textbox, that sets the default value to a cell
value

example:
me.textbox1.value = sheets("WT").range("A1").value

The number in A1 is 10.85

When run in a Spanish system with a spanish version the
10.85 is shown as 10,85.

Any clues why this happens?

Thanks,

Jeff B

Microsoft has International settings that can control things like:
decimal (. or ,), date formatting (month/day/year or day/month/year).
They can be set for the entire operating system in Regional and
Language Options (WinXPPro - earlier was International IIRC) in the
Control Panel.

Different programs support these settings to different degrees. Excel
supports them very much. It seems that your Spanish system has the
decimal displayed as a comma. No big worries - the underlying value
remains unchanged. It's only formatting. Or, the .Value property is
unaffected - only the .Text property.

Finally, Excel allows you to override this behavior in Tools | Options
| Internation (tab) - uncheck Use System Separators, then specify
exactly what you want the decimal points to be. (This is an
application level setting.)

Hope this helps,

Matthew