need code for fraction od inches
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2005-11-23 09:07 PM
2005-11-23
09:07 PM
TEXT2 0, 0, STR("%fi", GLOB_ELEVATION)
WHat do I need to do to get it to show the exact glob_elevation?
Thanks and Happy Thanksgiving,
Michele
2 REPLIES 2
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2005-11-24 12:16 AM
2005-11-24
12:16 AM
You haven't specified a precision level in your format string, so it defaults to whole inches.
It should be:
TEXT2 0, 0, STR("%0.8fi", GLOB_ELEVATION)
This will give precision to eighths on an inch. For halves the value is "0.2", for sixteenths it is "0.16", etc. It's a little quirky but it makes sense.
It should be:
TEXT2 0, 0, STR("%0.8fi", GLOB_ELEVATION)
This will give precision to eighths on an inch. For halves the value is "0.2", for sixteenths it is "0.16", etc. It's a little quirky but it makes sense.
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2005-11-28 09:49 PM
2005-11-28
09:49 PM
Thanks for the code! I'll have to try it out - right now I'm busy trying to get something out.
Thanks again,
Michele
Thanks again,
Michele