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!

Search results for query: *

  1. Spannerman

    Leading Zeros

    Thanks.This was a great help and very simple since I had been messing with itoa,strcpy and strcat with no success. Nice One!!!!!
  2. Spannerman

    Format of ITOA

    What is the format for ITOA I am at work and don't have my manual.
  3. Spannerman

    Leading Zeros

    I am trying to print leading zeros.My number is a numeric clock card number that is usually 4 digits.If ,however,the number should be less than 1000 I want to print leading zeros so that my columns on my print out remain level. Anyone help???
  4. Spannerman

    Extended error 183 DETAILS

    Many thanks for all your help it DID turn out to be concerned with OS.The network had been purposely set so that the Clothes Stores operators could ot write and delete files for security purposes so my legitimate delete and rename was not allowed. Thanks Again.
  5. Spannerman

    Extended error 183 DETAILS

    I have a function to delete a record from a file.The method I am using takes an input code number and finds the record.I substitute the first letter of the surname found with an asterisk and rewrite to the file.I then read the file and write all records without an asterisk to a temporary file.I...
  6. Spannerman

    Extended Error 183

    What is extended error 183
  7. Spannerman

    Flashing Screen Display

    Dear PSkYiClHlOeDrIC, Many thanks for your help.I followed your instructions and it worked perfectly. Thanks again.
  8. Spannerman

    Flashing Screen Display

    Many thanks for your continued interest in my problem.I can expand a little. The program works perfectly at home no problem running from the MS DOS prompt in Windows 95. Also ,at work now after your advice the program works after pressing ALT ENTER when run from windows explorer...
  9. Spannerman

    Flashing Screen Display

    I define lightredflash as global: ======================== #define lightredflash textcolor(140); rmenu() { int choice=0; do /*** FUNCTION TO DISPLAY MAINMENU ***/ { rnewscr(1);lightgreen;gotoxy(35,4);cprintf("MAIN MENU");lightred...
  10. Spannerman

    Flashing Screen Display

    Yes I am using CPRINTF.
  11. Spannerman

    Flashing Screen Display

    Thankyou once again or your reply PSkYiClHlOeDrIC but I am afraid I still cannot get it to work no matter what I try. I have run from the floppy and C drive and pressed ALT Enter over and over but still get the white block. Thanks very much for your time anyway.
  12. Spannerman

    Flashing Screen Display

    Thankyou for your reply PSkYiClHlOeDrIC but I am afraid it did not work. I run at home on Windows 95 which has an MS-DOS option on the menu bar but the one at work is Windows NT which has only a Pseudo type prompt. I am sure I am FULL screen but it still will not work. Is there anything else...
  13. Spannerman

    Flashing Screen Display

    In my program I set up a flashing colour in order to give error message i.e. #define lightredflash textcolor(140); This works fine on my computer,however, on the computers at work it is displayed on screen as a red character with a fixed white bow around it. Any clues as to why this is????
  14. Spannerman

    Printing In C????

    What is an Initialization String? Could you please give me an example? Thanks.
  15. Spannerman

    Printing In C????

    I used to print my C programs on a Dot Matrix printer at work no problem using if(!biosprint(2,0,0) && 0X90) printf;("Printer Not Ready"); Otherwise do the business. This worked fine.However in my new job I now am trying to use a Hewlett Packard Laserjet 6L.I use the same...
  16. Spannerman

    Thanks MBARANSKI Stack Overflow Solved

    Thank you MBARANSKI. The final advice with the WHILE LOOP sorted me out. And PALBANO the stars were dedicated to people who were taking time out to help not criticise.It's nice to learn. The harder the battle the sweeter the victory.
  17. Spannerman

    Still stuck on RECURSION!!!

    I start my database of 16 options with main() and then rmenu(). In this menu i have 16 options which are 16 functions like "View Stock Records" etc.... Each function runs its course and comes to the final bracket } . How do I then get the menu back up on screen in order for the user...
  18. Spannerman

    Recursion Causing Stack Overflow????

    I am still pondering my problem with Stack Overflow understanding recursion. I have a Database which I call Rstock with a menu with 16 options. I run the program rstock.exe and the very first thing it does is run a function rmenu(). This puts up the menu of 16 different options. At the end of...
  19. Spannerman

    Still suffering from Stack Overflow

    I am not sure recursion is the cause although I do not fully understand.
  20. Spannerman

    MDTKINDIA What is a recursive function?

    Thanks for your reply MDTKINDIA what is a recursive function????

Part and Inventory Search

Back
Top