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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

data entry screen

Status
Not open for further replies.

emart

Programmer
Apr 26, 2000
11
0
0
US
I'd like to see a program that is an expamle of how to build a data entry screen. If it is a large program I can post my e-mail address.

I'm just trying to learn how to do it.

Thanks,
Ed
 
depends on what fields u want. lets say u accept emp no, emp name, basic pay in the following format



emp no :__________
emp name :___________
basic pay:___________


code would be something like

gotoxy(10,3); cprintf("emp no :");
gotoxy(10,4); cprintf("emp name :");
gotoxy(10,5); cprintf("basic pay:");

then provide for reading at the exact location where u want to accept the data.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top