Click here to Skip to main content
16,007,843 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CompareItem in listbox Pin
hajo26-Sep-02 7:07
hajo26-Sep-02 7:07 
GeneralText Size in a CStatic Control Pin
David Viggiano26-Sep-02 4:17
David Viggiano26-Sep-02 4:17 
GeneralRe: Text Size in a CStatic Control Pin
Tomasz Sowinski26-Sep-02 4:47
Tomasz Sowinski26-Sep-02 4:47 
GeneralRe: Text Size in a CStatic Control Pin
David Viggiano26-Sep-02 5:51
David Viggiano26-Sep-02 5:51 
GeneralRe: Text Size in a CStatic Control Pin
Tomasz Sowinski26-Sep-02 6:13
Tomasz Sowinski26-Sep-02 6:13 
GeneralRe: Text Size in a CStatic Control Pin
David Viggiano26-Sep-02 6:23
David Viggiano26-Sep-02 6:23 
Generalmanipulating arrays Pin
M.Leary26-Sep-02 4:07
M.Leary26-Sep-02 4:07 
GeneralRe: manipulating arrays Pin
Daniel Ferguson26-Sep-02 5:09
Daniel Ferguson26-Sep-02 5:09 
If you want to read the array in reverse order use code similar to this:
for (int i = MAX - 1; i > -1; i--) // start at end, go to beginning
{
   for (int j = 0; j < MAX; j++)
   {
      // do something with the array here..
   }
}

That way, the last row will be read first.

_____________________
"So in the interests of survival, they trained themselves to be agreeing machines instead of thinking machines. All their minds had to do was to discover what other people were thinking, and then they thought that, too."
Breakfast of Champions, Kurt Vonnegut

GeneralRe: manipulating arrays Pin
M.Leary26-Sep-02 5:56
M.Leary26-Sep-02 5:56 
Generalare strings in string table in unicode if _UNICODE is defined Pin
tomc26-Sep-02 4:05
tomc26-Sep-02 4:05 
GeneralRe: are strings in string table in unicode if _UNICODE is defined Pin
Tomasz Sowinski26-Sep-02 4:11
Tomasz Sowinski26-Sep-02 4:11 
GeneralRe: are strings in string table in unicode if _UNICODE is defined Pin
Steve S26-Sep-02 22:24
Steve S26-Sep-02 22:24 
GeneralCFile question Pin
ns26-Sep-02 4:04
ns26-Sep-02 4:04 
GeneralRe: CFile question Pin
Tomasz Sowinski26-Sep-02 4:08
Tomasz Sowinski26-Sep-02 4:08 
GeneralThanks for that handy tip! Pin
ns26-Sep-02 4:18
ns26-Sep-02 4:18 
GeneralQuestion about COM Monikers and the ROT Pin
[James Pullicino]26-Sep-02 3:39
[James Pullicino]26-Sep-02 3:39 
GeneralRe: Question about COM Monikers and the ROT Pin
jmkhael26-Sep-02 4:54
jmkhael26-Sep-02 4:54 
GeneralThreads in Windows 2000 Pin
Anonymous26-Sep-02 3:15
Anonymous26-Sep-02 3:15 
GeneralRe: Threads in Windows 2000 Pin
Tomasz Sowinski26-Sep-02 3:22
Tomasz Sowinski26-Sep-02 3:22 
GeneralRe: Threads in Windows 2000 Pin
Andreas Saurwein26-Sep-02 3:19
Andreas Saurwein26-Sep-02 3:19 
GeneralRe: Threads in Windows 2000 Pin
Mike Nordell26-Sep-02 11:49
Mike Nordell26-Sep-02 11:49 
GeneralRe: Threads in Windows 2000 Pin
Anonymous26-Sep-02 4:45
Anonymous26-Sep-02 4:45 
GeneralRe: Threads in Windows 2000 Pin
Todd Smith26-Sep-02 11:19
Todd Smith26-Sep-02 11:19 
GeneralDialog Box Pin
Lucky200226-Sep-02 3:01
Lucky200226-Sep-02 3:01 
GeneralRe: Dialog Box Pin
Roman Fadeyev26-Sep-02 3:09
Roman Fadeyev26-Sep-02 3:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.