Click here to Skip to main content
15,921,884 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralDatabase Engines Pin
Franz Klein14-Apr-03 1:56
Franz Klein14-Apr-03 1:56 
GeneralRe: Database Engines Pin
Joe Woodbury14-Apr-03 10:28
professionalJoe Woodbury14-Apr-03 10:28 
GeneralRe: Database Engines Pin
Franz Klein14-Apr-03 21:13
Franz Klein14-Apr-03 21:13 
GeneralBasic Parsing support Pin
peterchen14-Apr-03 1:33
peterchen14-Apr-03 1:33 
GeneralRe: Basic Parsing support Pin
Iain Clarke, Warrior Programmer14-Apr-03 3:31
Iain Clarke, Warrior Programmer14-Apr-03 3:31 
GeneralRe: Basic Parsing support Pin
peterchen14-Apr-03 3:59
peterchen14-Apr-03 3:59 
GeneralRe: Basic Parsing support Pin
Iain Clarke, Warrior Programmer14-Apr-03 5:40
Iain Clarke, Warrior Programmer14-Apr-03 5:40 
GeneralCreate Multiple Windows Pin
Paul Farry14-Apr-03 1:29
professionalPaul Farry14-Apr-03 1:29 
GeneralRe: Create Multiple Windows Pin
Rage14-Apr-03 2:36
professionalRage14-Apr-03 2:36 
GeneralRe: Create Multiple Windows Pin
Paul Farry14-Apr-03 2:49
professionalPaul Farry14-Apr-03 2:49 
GeneralRe: Create Multiple Windows Pin
Rage14-Apr-03 6:22
professionalRage14-Apr-03 6:22 
GeneralRe: Create Multiple Windows Pin
Paul Farry14-Apr-03 11:30
professionalPaul Farry14-Apr-03 11:30 
GeneralLoadIcon question Pin
Jump_Around14-Apr-03 1:24
Jump_Around14-Apr-03 1:24 
GeneralRe: LoadIcon question Pin
Martyn Pearson14-Apr-03 5:33
Martyn Pearson14-Apr-03 5:33 
GeneralRe: LoadIcon question Pin
Rage14-Apr-03 6:36
professionalRage14-Apr-03 6:36 
GeneralRe: For Rage Pin
Toni7814-Apr-03 9:53
Toni7814-Apr-03 9:53 
GeneralRe: For Rage Pin
Jump_Around14-Apr-03 11:14
Jump_Around14-Apr-03 11:14 
GeneralRe: For Rage Pin
Martyn Pearson14-Apr-03 23:51
Martyn Pearson14-Apr-03 23:51 
GeneralRe: For Rage Pin
Jump_Around15-Apr-03 1:06
Jump_Around15-Apr-03 1:06 
GeneralGDI+ Pin
Emiliano14-Apr-03 1:18
Emiliano14-Apr-03 1:18 
GeneralRe: GDI+ Pin
Zdeslav Vojkovic14-Apr-03 1:54
Zdeslav Vojkovic14-Apr-03 1:54 
GeneralRe: GDI+ Pin
Anonymous14-Apr-03 3:37
Anonymous14-Apr-03 3:37 
GeneralImport data file as a Matrix Pin
calgonit14-Apr-03 1:06
calgonit14-Apr-03 1:06 
GeneralRe: Import data file as a Matrix Pin
Rage14-Apr-03 2:56
professionalRage14-Apr-03 2:56 
Something like :
int table[m][n];

FILE *f=fopen("file.txt","rt");
if (f!=NULL)
{
   for (int i=0;i<m;i++)
   {
      for (int j=0;j<n;j++)
      {
        sscanf(f,"%i[here is a tab]",&table[i][j]);
      }
   }
}

fclose(f);


This is pure C, since I do not know what our app is like. This does not work as is, but it should give you a way to implemente it.

~RaGE();
GeneralConverting an icon into a bitmap Pin
Nicolas Bonamy14-Apr-03 0:18
Nicolas Bonamy14-Apr-03 0:18 

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.