Dec 6, 2001 #1 emart Programmer Apr 26, 2000 11 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
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
Dec 7, 2001 #2 icici IS-IT--Management Jul 20, 2001 82 IN 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. Upvote 0 Downvote
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.