CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: kingting

Search: Search took 0.04 seconds.

  1. Thread: 2D array

    by kingting
    Replies
    7
    Views
    3,277

    Re: 2D array

    I don't know anything about those. You are probably posting in the wrong forum as this is the graphics section.
  2. Thread: 2D array

    by kingting
    Replies
    7
    Views
    3,277

    Re: 2D array

    it also depends on how you are allocating data. so you want a 4x2 array of strings? are you using pointers or STL objects?


    char *stringTable[4][2];
    char userString[256] = {'\0'};
    for(int i =...
  3. Thread: 2D array

    by kingting
    Replies
    7
    Views
    3,277

    Re: 2D array

    You are going to have to be more specific but if you are using winapi
    you can acquire the text strings from the message EM_GETLINE i believe. There is plenty of documentation online.......
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured