Search:

Type: Posts; User: LostNotFound

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    2,197

    Getting Two Decimal Places

    Hi i was wondering how to set a float to print out only two decimal places, when it is outputted to the screen.

    The program involves money and you cant have 3 decimals with currency.

    Example
    ...
  2. Replies
    1
    Views
    1,394

    USB printing

    Is there any way ina console c++ program to print with a printer that runs off usb
  3. Replies
    2
    Views
    2,525

    What I really dont understand is basically the...

    What I really dont understand is basically the function prototype. I dont understand why there are two ** before the root, i dont know what int(*cmp) is for and i dont understand the basic setup of...
  4. Replies
    2
    Views
    2,525

    Linked List Merge Sort

    As I am a fairly new c++ programmer I was given this mergesort, for a linked list. I do not quite understand it, if someone could comment it it would be much apreciated.


    struct node {
    ...
  5. Replies
    1
    Views
    3,065

    Bitmap Printing In Console C++

    Is there any way in console c++ program to send a bitmap from and external file directly to be printed by the default printer.
  6. Replies
    1
    Views
    1,026

    System Commands

    I was wondering i there was a compiled list anywhere of system commands i can use in my console c++ programs.

    Examples
    system("pause");
    system("color 1F");

    The problem is I dont know any...
  7. Replies
    3
    Views
    1,249

    Thanks PJYelton that works great with my linked...

    Thanks PJYelton that works great with my linked list. Appreciate it.
  8. Replies
    3
    Views
    1,249

    Output Manipulation

    Hi, I have a program that displays nodes in a datbase. The problem is a lot of the fields are too long when I display them. Is there a c+++ output mainpulator that when a field is displayed to only...
  9. Replies
    1
    Views
    951

    Bitmap in VC++

    Ive read other posts but they havent helped. Could someone tell me how to load a bitmap into a console c++ program and display it to the screen. Note this is a visual c++ program, so please dont tell...
  10. Replies
    0
    Views
    1,567

    Merge Sort Linked List Help

    Hi this is probably the last question ill ever have to ask. I was given some source for a mnerge sort for a singly linked list as followed.


    struct node {
    struct node *next;
    char...
  11. Replies
    1
    Views
    9,747

    Adding To The Middle Of A Linked List

    Hi I have a singly linked list and know how to add to the end of it but am unsure of how to add it to the linked list so that a node is placed inbetween nodes of similar CustomerNumber, I even have...
  12. Replies
    2
    Views
    1,590

    Thanks for the suggestion Salem everything is...

    Thanks for the suggestion Salem everything is working good now
  13. Replies
    2
    Views
    1,590

    Comparing Character Arrays

    Hi this is code simply compares an entered string of characters with a binary file entry. The only problem is when the two character arrays are compared and are the same they program is trating it...
  14. Replies
    1
    Views
    837

    Binary I/O

    How do you write and/or read a character array to a file using a binary file stream. Thank you.
  15. Replies
    7
    Views
    1,316

    Actually one more question. I know I can...

    Actually one more question. I know I can overwrite data ina binary file but say if I wanted to delete a binary 0 or 1 completely how could i do it.
  16. Replies
    7
    Views
    1,316

    Thanks IfYouSaySo you just solved my problem,...

    Thanks IfYouSaySo you just solved my problem, thanks tot he binary I/O suggestion I can fullfill the requirement of direct access. Thanks again.
  17. Replies
    3
    Views
    2,673

    This is the basic sturcture for my sturcutre for...

    This is the basic sturcture for my sturcutre for my linked list, I am in desperate need of some help on an algortim that could quicksort by the year. Ive tried many things but I can't get an algoritm...
  18. Replies
    3
    Views
    2,673

    Singly Linked List Quicksort

    Is there a way to sort via a quicksort a singly linked list.
  19. Replies
    7
    Views
    1,316

    Lol, i didnt mean it that way. I do though have a...

    Lol, i didnt mean it that way. I do though have a linked list thats fully functioning and the deleting, adding, and all other functions work with it. TMy problem though is that a requirement is to...
  20. Replies
    7
    Views
    1,316

    Deleting/Searching Directly File I/O

    Can someone post some code (preferably commented) of how to directly delete and search for a record in a flat text database, without completely reqwiting the database just deleting a single entry....
  21. Replies
    2
    Views
    2,841

    Yeah but none of them are commented well

    Yeah but none of them are commented well
  22. Replies
    2
    Views
    2,841

    Linked List Merge Sort

    Could someone post a commented example of a merge sort of a singly linked list , or provide a link to a good commented example. Thank you. Its for a program where the linked list is of nodes...
  23. Replies
    1
    Views
    2,718

    Printing In Console C++

    Can someone please tell me a way to send directly to a printer a gif, jpg, or generally any picture file in a console c++ program to the be printed. Thank you.
Results 1 to 23 of 23