Search:

Type: Posts; User: codewarrior

Search: Search took 0.01 seconds.

  1. Replies
    0
    Views
    1,330

    onKeyDown(), question in dlg based app

    I have a dialog based application whith some cotrols (buttons and editbox), in VisualC++ 6.
    Now I want variables in the dialog to respond to keystrokes whith the onKeyDown() or onChar()...
  2. Replies
    6
    Views
    1,045

    This is how Im going to use my classes, and whats...

    This is how Im going to use my classes, and whats the problem is about. Sorry if I was unclear on the subject.
    In main() I create an array of Customer objects whith the new operator, each of the...
  3. Replies
    6
    Views
    1,045

    No, it works fine the file is called...

    No, it works fine the file is called strang.h/strang.cpp and the class is named String, so that is not the problem. The problem is to find out how many bytes to read/write to/from file, since one...
  4. Replies
    6
    Views
    1,045

    Need help on fstream...

    Say I have an array of ojects, one of the members in each object is a class called string that I have made myself, the one member in the string class is a pointer to char (char* str).
    Now I want to...
  5. Replies
    4
    Views
    2,184

    Thank YOU

    Thank YOU
  6. Replies
    4
    Views
    2,184

    Thanks, but I have tried that , but it prints all...

    Thanks, but I have tried that , but it prints all swedish characters like carbage.
  7. Replies
    4
    Views
    2,184

    Need help on unicode in VisualC++

    Im trying to get cout to understand swedish characters, anyone know howto?
    If I prompt the user to write to cin.getline(), and then write it to the std.output it works fine.

    Like this:
    char...
  8. Replies
    2
    Views
    2,153

    OK, thanx. But I found out a way myself, by...

    OK, thanx. But I found out a way myself, by making a class with gotoxy(), setcolor() and highligthrow() member-functions. Wasnt so hard when I figured out where to look(windows.h).
  9. Replies
    4
    Views
    5,382

    Cant you do something like this to? ...

    Cant you do something like this to?

    cin.getline(a, 3);
    cin >> b;
    cin.get(); //takes care of anthing in the buffer
    cin.get(c).get(); //reads to c and takes care of the leftovers in the buffer...
  10. Replies
    2
    Views
    2,153

    Menus in DOS programs

    Can anyone give me a hint on how to do menus and menubar in console programs. Or a simple list of options you can use the tab-key to tab to the desired option and return key to make the choice?
    Im...
Results 1 to 10 of 10