Click here to Skip to main content
15,895,142 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: declare, define, and call of a function passing two dimensional arrays [modified] Pin
mrby1235-May-10 12:58
mrby1235-May-10 12:58 
GeneralRe: declare, define, and call of a function passing two dimensional arrays Pin
Tim Craig5-May-10 14:42
Tim Craig5-May-10 14:42 
GeneralRe: declare, define, and call of a function passing two dimensional arrays Pin
mrby1235-May-10 13:31
mrby1235-May-10 13:31 
GeneralRe: declare, define, and call of a function passing two dimensional arrays Pin
Shi,Yudi5-May-10 16:24
Shi,Yudi5-May-10 16:24 
GeneralRe: declare, define, and call of a function passing two dimensional arrays Pin
mrby1235-May-10 18:42
mrby1235-May-10 18:42 
GeneralRe: declare, define, and call of a function passing two dimensional arrays Pin
Shi,Yudi7-May-10 18:34
Shi,Yudi7-May-10 18:34 
GeneralRe: declare, define, and call of a function passing two dimensional arrays Pin
mrby1236-May-10 7:05
mrby1236-May-10 7:05 
AnswerRe: declare, define, and call of a function passing two dimensional arrays Pin
David Crow6-May-10 3:13
David Crow6-May-10 3:13 
As has already been suggested, please spend some time (here, for example) knowing the differences/similarities between arrays and pointers when using functions. Without that knowledge, you are going to continue to face the same struggles.

That said, have you tried:
void CCvib_procDlg::time(float**, int dim1, int dim2);
...
time(delms, 1000, 6);


I would refrain from naming a function time() as it could be confused with the time() function. Wink | ;)

"One man's wage rise is another man's price increase." - Harold Wilson

"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons

"Man who follows car will be exhausted." - Confucius


GeneralRe: declare, define, and call of a function passing two dimensional arrays Pin
mrby1236-May-10 7:19
mrby1236-May-10 7:19 
Questionhow make limit running my program? Pin
Rezame5-May-10 6:05
Rezame5-May-10 6:05 
AnswerRe: how make limit running my program? Pin
Maximilien5-May-10 6:24
Maximilien5-May-10 6:24 
GeneralRe: how make limit running my program? Pin
Rezame5-May-10 6:29
Rezame5-May-10 6:29 
GeneralRe: how make limit running my program? Pin
CPallini5-May-10 8:09
mveCPallini5-May-10 8:09 
QuestionHow to get A WindowHandle from a process Id Pin
Rajmohan SK5-May-10 1:56
Rajmohan SK5-May-10 1:56 
AnswerRe: How to get A WindowHandle from a process Id Pin
Code-o-mat5-May-10 2:10
Code-o-mat5-May-10 2:10 
AnswerRe: How to get A WindowHandle from a process Id Pin
Member 39226395-May-10 2:11
Member 39226395-May-10 2:11 
GeneralRe: How to get A WindowHandle from a process Id Pin
Rajmohan SK6-May-10 3:28
Rajmohan SK6-May-10 3:28 
AnswerRe: How to get A WindowHandle from a process Id Pin
Cvaji5-May-10 2:13
Cvaji5-May-10 2:13 
AnswerRe: How to get A WindowHandle from a process Id Pin
CPallini5-May-10 2:14
mveCPallini5-May-10 2:14 
AnswerRe: How to get A WindowHandle from a process Id Pin
Michel Godfroid5-May-10 2:20
Michel Godfroid5-May-10 2:20 
AnswerRe: How to get A WindowHandle from a process Id Pin
Rajmohan SK5-May-10 2:31
Rajmohan SK5-May-10 2:31 
QuestionRe: How to get A WindowHandle from a process Id Pin
Rajmohan SK6-May-10 18:16
Rajmohan SK6-May-10 18:16 
QuestionDLL and Pure Virtual Function Pin
john56325-May-10 1:52
john56325-May-10 1:52 
AnswerRe: DLL and Pure Virtual Function Pin
CPallini5-May-10 2:18
mveCPallini5-May-10 2:18 
GeneralRe: DLL and Pure Virtual Function Pin
john56325-May-10 7:15
john56325-May-10 7:15 

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.