Ask Experts Questions for FREE Help!
 

Free Answers in 3 Easy Steps

Register Now
3 Steps
 


Ask QuestionsprogressAnswer QuestionsprogressBuild ReputationprogressBecome an Expert
 
At Ask Me Help Desk you can ask questions in any topic and have them answered for free by our experts. To ask questions or participate in answering them you must register for a free account. By registering you will be able to:
  • Get free answers from experts in any of our 300+ topics.
  • Accept money for answers that you provide.
  • Communicate privately with other members (PM).
  • See fewer ads.
  View Answers    Answer this question    Ask a question  
 

muneeridcb
Jun 13, 2009, 12:50 AM
Can I make an Accounting Programme in Visual Basic.

Perito
Jun 13, 2009, 05:48 AM
Sure. You can do accounting programs in all sorts of languages.

One hint. People sometimes have the tendency to use floating-point numbers when dealing with money. For example, $1.25 looks like a floating point number. This can cause round-off problems. It's better to use a very long integer type. $1.25 would be 125 (cents, pesos, etc). That way, there won't be any round-off errors. Visual Basic 6 has a CURRENCY type that is made for this. The Currency type is also available in Visual Basic.NET. This is an integer type specifically made for accounting.