Results 1 to 4 of 4

Thread: [RESOLVED] Inches to hundredths of an inch

  1. #1

    Thread Starter
    PowerPoster JuggaloBrotha's Avatar
    Join Date
    Sep 2005
    Location
    Lansing, MI; USA
    Posts
    4,286

    Resolved [RESOLVED] Inches to hundredths of an inch

    How would I convert 3 5/8" (3.625") to hundredths of an inch?
    Would it be 3625 or 0.03625?
    Currently using VS 2015 Enterprise on Win10 Enterprise x64.

    CodeBank: All ThreadsColors ComboBoxFading & Gradient FormMoveItemListBox/MoveItemListViewMultilineListBoxMenuButtonToolStripCheckBoxStart with Windows

  2. #2
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: Inches to hundredths of an inch

    Since the original number s 3.625 ... the resulting conversion would be 362.5/100 making 362.5 your answer.

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  3. #3
    Only Slightly Obsessive jemidiah's Avatar
    Join Date
    Apr 2002
    Posts
    2,431

    Re: Inches to hundredths of an inch

    More generally, if you know conversion factors, it's easy to convert units in general: multiply by "1" repeatedly.

    Here, you know 1" = 100 hundredths of an inch, so 1 = 1" / 100 hundredths of an inch, so
    3.625" = 3.625" * 1 = 3.625" * 100 hundredths of an inch / 1" = 3.625*100 hundredths = 362.5 hundredths of an inch [the "s in the top and bottom cancel just like normal fractions].
    The time you enjoy wasting is not wasted time.
    Bertrand Russell

    <- Remember to rate posts you find helpful.

  4. #4

    Thread Starter
    PowerPoster JuggaloBrotha's Avatar
    Join Date
    Sep 2005
    Location
    Lansing, MI; USA
    Posts
    4,286

    Re: Inches to hundredths of an inch

    Ok, so now I think I have this chart all filled out, I ended up using google to convert from milimeters to inches.
    Code:
    Inches		Millimeters	100th of an inch	
    Height	Width	Height	Width	Height	Width
    3 5/8	6 1/2			362	650
    3 7/8	8 7/8			387	887
    4 1/8	9 1/2			412	950
    4 1/2	10 3/8			450	1037
    4 3/4	11    			475	1100
    5    	11 1/2			500	1150
    		250	350	984	1377
    		176	250	692	984
    		125	176	492	692
    		324	458	1275	1803
    		229	324	901	1275
    		162	229	637	901
    		114	162	448	637
    		114	229	448	901
    		110	220	433	866
    		220	310	866	1220
    		155	220	610	866
    		110	155	433	610
    		110	220	433	866
    		110	230	433	905
    		155	223	610	877
    		112	223	440	877
    3 7/8	7 1/2			387	750
    8 1/2	14			850	1400
    8 1/2	11			850	1100
    The 100th of an inch column has to be a whole number (no decimals) so I truncated the answer at the decimal place after moving it 2 spots to the right.
    Attached Files Attached Files
    Currently using VS 2015 Enterprise on Win10 Enterprise x64.

    CodeBank: All ThreadsColors ComboBoxFading & Gradient FormMoveItemListBox/MoveItemListViewMultilineListBoxMenuButtonToolStripCheckBoxStart with Windows

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width