Click here to Skip to main content
15,905,563 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
GeneralRe: Converting an icon into a bitmap Pin
Liorsh14-Apr-03 0:44
Liorsh14-Apr-03 0:44 
GeneralRe: Converting an icon into a bitmap Pin
Nicolas Bonamy14-Apr-03 1:30
Nicolas Bonamy14-Apr-03 1:30 
GeneralRe: Converting an icon into a bitmap Pin
Iain Clarke, Warrior Programmer14-Apr-03 0:49
Iain Clarke, Warrior Programmer14-Apr-03 0:49 
GeneralRe: Converting an icon into a bitmap Pin
Nicolas Bonamy14-Apr-03 1:28
Nicolas Bonamy14-Apr-03 1:28 
GeneralRe: Converting an icon into a bitmap Pin
Nicolas Bonamy14-Apr-03 9:01
Nicolas Bonamy14-Apr-03 9:01 
GeneralSending text as popup message Pin
Mr Bose Dayala14-Apr-03 0:17
Mr Bose Dayala14-Apr-03 0:17 
GeneralRe: Sending text as popup message Pin
cr9714-Apr-03 4:07
cr9714-Apr-03 4:07 
GeneralRe: Sending text as popup message Pin
Mr Bose Dayala14-Apr-03 18:01
Mr Bose Dayala14-Apr-03 18:01 
GeneralRe: Sending text as popup message Pin
cr9714-Apr-03 22:24
cr9714-Apr-03 22:24 
GeneralRe: Sending text as popup message Pin
Mr Bose Dayala14-Apr-03 22:39
Mr Bose Dayala14-Apr-03 22:39 
GeneralRe: Sending text as popup message Pin
cr9714-Apr-03 23:00
cr9714-Apr-03 23:00 
GeneralRe: Sending text as popup message Pin
Mr Bose Dayala14-Apr-03 23:42
Mr Bose Dayala14-Apr-03 23:42 
GeneralRe: Sending text as popup message Pin
cr9715-Apr-03 0:05
cr9715-Apr-03 0:05 
GeneralRe: Sending text as popup message Pin
Mr Bose Dayala15-Apr-03 0:42
Mr Bose Dayala15-Apr-03 0:42 
GeneralRe: Sending text as popup message Pin
cr9715-Apr-03 1:42
cr9715-Apr-03 1:42 
GeneralRe: Sending text as popup message Pin
Mr Bose Dayala15-Apr-03 1:47
Mr Bose Dayala15-Apr-03 1:47 

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.