.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Imperial input from user in Foot Inch .
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I really I got confused - Hope somebody could give me a hand . I have a form with some textbox on it, which should be
filled in with imperial dimension. Like foot and inch. Users right now complain about it is not user friendly ,to put data in form, and honestly they are right. I didn't a good job .
Some people like to put vetting in inch and then by the time textbox lost it focus it should automatically convert data to feet-inch format. Some other user like to put decimal I have to be able to should them in 1/8 inch.
some user like to use space as separator between foot and inch and some other like to use dash.
Bottom line I stocked. Is there any function for this in autocad ?
when I look at my code I just struggled with pure string. I thought maybe there is something in autocad which give developer this option. Like the way we input dimension in command prompt.
Any Advice or tip would be appreciated already.
Janet.
Solved! Go to Solution.
Re: Imperial input from user in Foot Inch .
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I looked into something like this about 2 years ago because our MicroStation user really don't like the foot/inch input method in AutoCAD. ADN support said there's nothing built in.
MicroStation's input method handles feet, inches, and fractions all from the number pad. 10'-1 1/2" inches is entered as:
10..1 1/2
Makes it real easy with out having to hit the alpha keys on the keyboard.
If AutoCAD has any input method like this I would really love to hear about it also.
FL. Dept. of Transportation
CADD Applications Developer
HPxw4600 Workstation
Core 2 Duo 2.33ghz, 8gb RAM
nVidia Quadro FX1700
Win7 64bit
Re: Imperial input from user in Foot Inch .
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Mike ,
Thanks for heads up. I am pretty sure some people wrote something about it. Just it is a matter of sharing experiences.
At least now I know I should not look into object browser. I have to try to write it down from scratch unless somebody wrote it already.
Regards,
Janet.
Re: Imperial input from user in Foot Inch .
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Autodesk.AutoCAD.Runtime.Converter.DistanceToStrin

Re: Imperial input from user in Foot Inch .
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Thanks Chief,
First I didn't know about this at all. Really appreciated.
But the question is how you cotrol user input on a from data entry , Not at command prompt ?
Regards,
Janet.
Re: Imperial input from user in Foot Inch .
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
That is what it is for. It won't work at a command line prompt unless you always allow Arbitrary input and parse the result autocad gives you.
You need to handle the .Leave event on the TextBox control (or whatever control your users are entering the length information), then pass the (numeric) string from the control to the Converter function and replace the controls text with the text returned by the converter.

Re: Imperial input from user in Foot Inch .
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
![]()
Got you. I will try and let you know in a few hours.
Thanks chief.
Hope Mike is reading this as well.
Regards,
Janet.
Re: Imperial input from user in Foot Inch .
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
BTW, It won't do any good for Mike's microstation example (10..1 1/2) because it requires a Double, but it would turn 121.5 into (10'-1 1/2")

Re: Imperial input from user in Foot Inch .
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Chief , it is working like a charm. Yeaaaaaaaaaaaaaaaaaah!!
I almost wrote 150 lines of code to do that and still buggy.
Really appreciated.
Without you guys here I should've been fired by far. ![]()
Regards, and all the best
Janet.
Re: Imperial input from user in Foot Inch .
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
chiefbraincloud wrote:Autodesk.AutoCAD.Runtime.Converter.DistanceToStrin
g(Dist as double, units as DistanceUnitFormat, precision as integer) as string
Can anyone explain how the integers relate to precision? I mean does a 1 mean 1/2" precision, a 2 mean 1/4" precision, etc?
How can I make it the same as the precision specified in the units dialog?
Thanks in Advance


