Click here to Skip to main content
15,902,112 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Catch USB-Events Pin
Requiem Sollar9-Feb-06 9:23
Requiem Sollar9-Feb-06 9:23 
Questionhow to retrieve primary keys from Ms.Access with ODBC connection Pin
Issa Salama9-Feb-06 5:25
Issa Salama9-Feb-06 5:25 
AnswerRe: how to retrieve primary keys from Ms.Access with ODBC connection Pin
David Crow9-Feb-06 7:19
David Crow9-Feb-06 7:19 
QuestionHow to create Two Dimensional Array Pin
zahid_ash9-Feb-06 4:47
zahid_ash9-Feb-06 4:47 
AnswerRe: How to create Two Dimensional Array Pin
toxcct9-Feb-06 4:51
toxcct9-Feb-06 4:51 
GeneralRe: How to create Two Dimensional Array Pin
zahid_ash9-Feb-06 5:48
zahid_ash9-Feb-06 5:48 
GeneralRe: How to create Two Dimensional Array Pin
zahid_ash9-Feb-06 6:10
zahid_ash9-Feb-06 6:10 
GeneralRe: How to create Two Dimensional Array Pin
Rage9-Feb-06 7:17
professionalRage9-Feb-06 7:17 
zahid_ash wrote:
I dont know why it is not showing correcct text


Use the HTML markers &lt or &gt, or simply use the buttons on the bottom of the edit box to print < or > or check the box "Ignore HTML tags in this message (good for code snippets)".

so this is

typedef CArray < float, float > INT_PRICE2;


A CArray is a template element, not for two dimensional arrays.

So what you probably need is:

float INT_PRICE2[100][100];  // for a 100 * 100 array


or

float **INT_PRICE2;  // if size still unknown.


~RaGE();

-- modified at 13:17 Thursday 9th February, 2006
GeneralRe: How to create Two Dimensional Array Pin
zahid_ash9-Feb-06 7:26
zahid_ash9-Feb-06 7:26 
GeneralRe: How to create Two Dimensional Array Pin
Rage9-Feb-06 7:37
professionalRage9-Feb-06 7:37 
AnswerRe: How to create Two Dimensional Array Pin
David Crow9-Feb-06 7:41
David Crow9-Feb-06 7:41 
GeneralRe: How to create Two Dimensional Array Pin
Rage9-Feb-06 8:18
professionalRage9-Feb-06 8:18 
AnswerRe: How to create Two Dimensional Array Pin
ThatsAlok10-Feb-06 0:16
ThatsAlok10-Feb-06 0:16 
QuestionUrgent help required!!! Pin
NeerajN9-Feb-06 4:47
NeerajN9-Feb-06 4:47 
QuestionListBox Pin
Mike Winter9-Feb-06 4:11
Mike Winter9-Feb-06 4:11 
AnswerRe: ListBox Pin
#realJSOP9-Feb-06 4:19
professional#realJSOP9-Feb-06 4:19 
GeneralRe: ListBox Pin
Mike Winter9-Feb-06 5:02
Mike Winter9-Feb-06 5:02 
GeneralRe: ListBox Pin
Maximilien9-Feb-06 5:59
Maximilien9-Feb-06 5:59 
GeneralRe: ListBox Pin
Michael Dunn9-Feb-06 7:06
sitebuilderMichael Dunn9-Feb-06 7:06 
QuestionRe: ListBox Pin
David Crow9-Feb-06 7:33
David Crow9-Feb-06 7:33 
QuestionCapturing screen shots problem... please help Pin
llp00na9-Feb-06 3:35
llp00na9-Feb-06 3:35 
QuestionApplication not get execute in WINDOWS XP Pin
maharaja pandian9-Feb-06 1:49
maharaja pandian9-Feb-06 1:49 
AnswerRe: Application not get execute in WINDOWS XP Pin
sunit59-Feb-06 1:53
sunit59-Feb-06 1:53 
GeneralRe: Application not get execute in WINDOWS XP Pin
toxcct9-Feb-06 2:01
toxcct9-Feb-06 2:01 
GeneralRe: Application not get execute in WINDOWS XP Pin
maharaja pandian9-Feb-06 2:07
maharaja pandian9-Feb-06 2:07 

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.