Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HELP!!!!!!!!!

Status
Not open for further replies.

phel

Programmer
Mar 31, 2004
1
PH
CAN SOMEONE PLEASE TELL WHAT SOFTWARE IS BEEN USED HERE???

I want to program Inventory database program that would also allow me to print out invoices. ( POS) system. i have seen few demo DOS versions.
Does anyone know what application compiler is used? normally in dos mode, with no GUI, normally drawn with two line with a @ charachers.
I.E

@==================|
| |
|==================|

Is it C V3.0 or Borland C++

please please help. or suggest, can i achive the same thing with VC++.
 
Visual C++ version 1.52 was a true DOS mode compiler. Everything after version 4.2 is 32 bit (not 16) and therefore, not true DOS mode.

If you're trying to print invoices in DOS, you're going to have to do lots of character based printing and fiddling to get the positions right on the page. You'll also have to worry about the number of lines per page, so you know when to do a page skip, etc. It's very time consuming. For example:

Code:
printf("@==================================\n");
printf("|                                 |\n");
printf("| Name: %25s |\n", sCustomerName);
printf("|                                 |\n");
printf("===================================\n");

and so on... have LOTS of fun! Hope this helps.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top