Search:

Type: Posts; User: Duncan Booth

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,391

    VC++ pagination @ print time (2)

    OK, here goes. My prog validates a line sequential file of variable length transaction records, the valid records are written to file where they are sorted before the report is printed. The number of...
  2. Replies
    1
    Views
    1,513

    VC++ code 4 pagination @ print time?

    I have to print a report of unspecified length which requires page numbers inserting into the header of each new page - but not the opening one. Does this require some kind of line counter or are...
  3. Replies
    1
    Views
    846

    vc++ : Page Numbers???

    following a sort routine I have to print the report ( no problem there ) but I need to insert page numbers????? Can anyone help with this----Please.
  4. Replies
    1
    Views
    1,284

    VC++ Sort File

    // this is my union......
    union URec {
    structA astruct; //union cont. 3 structs
    structB bstruct;
    structC cstruct;
    };
    union URec Data;

    // The unions are held...
  5. Replies
    1
    Views
    1,910

    Create Dynamic Array of Unions

    I have a binary file containing an unknown number of unions which must be read into a dynamically created array for further processing and sorting.
    Can anyone help with the syntax for this????????
  6. Replies
    2
    Views
    1,623

    Syntax for writing a union to file

    I'm new to all this so please be gentle.....
    I have a union of structures(below) and the union must be written to a binary file.

    union URec{
    struct one structA;
    struct two structB;
    struct...
Results 1 to 6 of 7