Skip to main content

IFcalc Version 1.0.0

hello friends its my VB6 application I was developing to learn more about VB6,
called IFCalc,


1. What is IFCalc?
2. Getting Started.
3. How to Use.
4. Download (discontinued...)


1. What is IFCalc?

IFCalc is a small computer program for windows XP operating system. Using IFcalc one can do calculations in imperial length units i.e. Feet - Inches directly using the (0''-0 0/16") format. All calculations viz. addition, subtraction, multiplication and division are performed simultaneously at one click. User can put any desired result in memory and retrieve the same for further calculations.Hope it helps to people who need to do feet-inch calculation frequently.The software is freeware and is completely open source. Mail to sachinstructure@gmail.com for the source code.



2. Getting Started :

IFCalc is a standalone program which needs no installation and very light sized just around 60 Kb. At most of the places the developer has put a tool tip for assistance.

3. How to use?

The following points are the explanatory for user interface and usage. Please refer above picture.

a] MR button (1) : This button puts the value presently in memory into the text box (6) i.e. Input 1
b] M+ (2) : This and every similar button present to the left of text boxes puts the value currently displayed in them to memory.
c] 1> (3) : This is an Auto Format button for Input 1. User when wants to put just the feet value in Input 1 and format it into (0'-0 0/16") format, shall use this button. Example: Entering just 2 in Input 1 text box and pressing this button will make Input 1 text format as 2'-0 0/16".
d] 2> (4) : This is an Auto Format button for Input 1. User when wants to put just the feet and inch value in Input 1 and format it into (0'-0 0/16") format, shall use this button. Example: Entering 2 (space) 3 in Input 1 text box and pressing this button will make Input 1 text format as 2'-3 0/16".
e] 3> (5) : This is an Auto Format button for Input 1. User when wants to put just the feet, inch and fraction value in Input 1 and format it into (0'-0 0/16") format, shall use this button. Example: Entering 2 (space) 5 (space) 2 in Input 1 text box and pressing this button will make Input 1 text format as 2'-5 2/16". Remember the last fraction will become "/32" if accuracy (9) is set to 32.
f] Input 1 (6) : The user needs to enter the first value into this box. User can directly type value in (0'-0 0/16") format or can use Auto Format buttons to format.
g] Clear All (7) : Clears all text boxes except the memory.
h] CALC (8) : This button initiates the calculations.
i] Accuracy (9) : User can set the desired accuracy here with the drop down list.
j] Memory (10) : This spot shows the value currently in memory.

* For Input 2 Auto Format button are similar to Input 1.
IFCalc calculates using absolute values, Don't put (+) or (-) signs before inputs.

4. Download...Discontinued...no time for further developing this application.

Sachin Kharat

Comments

Popular posts from this blog

Using Excel VBA Macro to Add Numbering Bullets to Any Data

N.B.: For Code Scroll Down :) Hello Everyone, This is Sachin K here again, Today while at work one of my colleague got into a trouble. He entered a lot of data into a spreadsheet like names of person and data related to their documents in front of their name. Now all of a sudden he needs to insert a numbering bullets in various rows, similar to one can find in MS Word. Oh !!! Its not there !!! I thought I could write a simple VBA code instead and make things easy for him. Here is the situation (Screenshot 1): You have data in row as seen below from Row No. 2 to Row No. 13. You want to insert 1) , 2), 3), ..., etc. in front of each data in the same cells as they are. It easy to put serial in empty cells in front of the data but remember that's not what we want here. Screenshot 1 : The Problem Here is the Solution (Screenshot 2): The VBA Code runs and gives a result as shown in screenshot below Screenshot 2 : The Solution The VBA Code and Form used (Scree...

Getting Thumbnail of images, Pdfs and DWG files

Its very much easy to get the thumbnail of the files supporting the thumbnail view like image files, Dwg files, pdf files........many programs need such kind of thumbnails. in VBA or VB6 projects you just need to add a simple control and set the filepath and thats it it is done!!!....i explain it below.... 5 easy steps to go so be patient.... :) 1. Go to Toolbox where general controls lie like textbox, label, button etc..... 2. right click over toolbox and go to Components........... 3. Select the following type library from controls.......if its not there in list go to browse and add it from system32 folder........add webvw.dll and u ll see this control in list....... if using VBA u might have this library alreay loaded and named " thmb ctrl "........ 4. u ll see a blank white control added to your toolbox..... 5. Just put that control on the form and in the code set thumbctl1.displayFile = "path of the file" 5. you could use common dialog to get th...

Clock - My 2nd Vb6 application

This one is my 2nd application called clock. I think most of the beginners in VB or other platform surely make a clock program by curiosity and to learn more, so do I have done one. I learnt many things while programming this one. Its color changing capability is I think cool and one should give it a try n try make a great color combination. The biggest challenge while programming this one was making the border less form movable by user click and drag. I could not create logic well and coded something bizarre that was moving the form out of the screen!!! Anyways to tackle with this problem I searched a VB coding forum and found a nice code that just worked amazingly. Thanks to the person for that code and making me realize I have a long way to go and learn. Anyways, greets to all. Download From 4Shared DOWNLOAD Download free. Thank you for downloading... Sachin Kharat