Click here to Skip to main content
15,909,896 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: A bug? And what to do to fix it? Pin
Maxwell Chen29-Apr-02 1:42
Maxwell Chen29-Apr-02 1:42 
GeneralYES!!! Pin
Igor Urdenko29-Apr-02 3:14
Igor Urdenko29-Apr-02 3:14 
GeneralRe: A bug? And what to do to fix it? Pin
Roger Allen29-Apr-02 3:46
Roger Allen29-Apr-02 3:46 
Generalmore info about the tli tlh files editing Q Pin
Aviv Halperin29-Apr-02 0:02
Aviv Halperin29-Apr-02 0:02 
GeneralRe: more info about the tli tlh files editing Q Pin
Christian Graus29-Apr-02 0:10
protectorChristian Graus29-Apr-02 0:10 
GeneralRe: more info about the tli tlh files editing Q Pin
Aviv Halperin29-Apr-02 0:25
Aviv Halperin29-Apr-02 0:25 
Generalarrays Pin
Jasmin Khan28-Apr-02 23:16
Jasmin Khan28-Apr-02 23:16 
GeneralRe: arrays Pin
Niklas L28-Apr-02 23:43
Niklas L28-Apr-02 23:43 
// declaring
int arrayUninit[26][26];
int arrayInit[26][26] = {
  { 0, 1, 2, ..., 25 },
  { 0, 1, 2, ..., 25 },
  ...
};

// Clearing all
memeset(arrayUnint, 0, 26 * 26 * sizeof(int));

// accessing elements
for (int x = 0; x < 26; x++)
  for (int y = 0; y < 26; y++)
    arrayUninit[x][y] = ...;

GeneralRe: arrays Pin
Jasmin Khan28-Apr-02 23:49
Jasmin Khan28-Apr-02 23:49 
Generalwhere to get the windows xp icon(the icon for system ,toolbar..) Pin
benben28-Apr-02 22:51
benben28-Apr-02 22:51 
GeneralRe: where to get the windows xp icon(the icon for system ,toolbar..) Pin
Gaurika Wijeratne28-Apr-02 23:49
Gaurika Wijeratne28-Apr-02 23:49 
GeneralRe: where to get the windows xp icon(the icon for system ,toolbar..) Pin
lszyn8-May-02 5:09
lszyn8-May-02 5:09 
GeneralDLL and TLS Pin
NicholasCougar28-Apr-02 22:38
NicholasCougar28-Apr-02 22:38 
GeneralRe: DLL and TLS Pin
Joaquín M López Muñoz29-Apr-02 11:36
Joaquín M López Muñoz29-Apr-02 11:36 
GeneralCreating Password Dialog Pin
Sameer Maggon28-Apr-02 22:27
Sameer Maggon28-Apr-02 22:27 
Generaldatabase (ADO) Pin
Drawil28-Apr-02 22:27
Drawil28-Apr-02 22:27 
GeneralRe: database (ADO) Pin
Orbital^28-Apr-02 22:29
Orbital^28-Apr-02 22:29 
GeneralRe: database (ADO) Pin
Drawil28-Apr-02 22:47
Drawil28-Apr-02 22:47 
GeneralRe: database (ADO) Pin
Orbital^29-Apr-02 5:12
Orbital^29-Apr-02 5:12 
GeneralHide System Tray Pin
Sameer Maggon28-Apr-02 21:44
Sameer Maggon28-Apr-02 21:44 
GeneralRe: Hide System Tray Pin
Mike Nordell29-Apr-02 13:22
Mike Nordell29-Apr-02 13:22 
GeneralRe: Hide System Tray Pin
Sameer Maggon29-Apr-02 19:24
Sameer Maggon29-Apr-02 19:24 
GeneralMDI aplication Pin
Orbital^28-Apr-02 21:35
Orbital^28-Apr-02 21:35 
GeneralRe: MDI aplication Pin
Orbital^28-Apr-02 22:27
Orbital^28-Apr-02 22:27 
GeneralRe: MDI aplication Pin
Roger Allen28-Apr-02 22:30
Roger Allen28-Apr-02 22:30 

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.