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

C / C++ / MFC

 
AnswerRe: Hide and show dialogs Pin
Code-o-mat30-Jan-09 23:25
Code-o-mat30-Jan-09 23:25 
GeneralRe: Hide and show dialogs Pin
AnithaSubramani30-Jan-09 23:32
AnithaSubramani30-Jan-09 23:32 
GeneralRe: Hide and show dialogs Pin
Code-o-mat30-Jan-09 23:42
Code-o-mat30-Jan-09 23:42 
GeneralRe: Hide and show dialogs Pin
AnithaSubramani30-Jan-09 23:59
AnithaSubramani30-Jan-09 23:59 
GeneralRe: Hide and show dialogs Pin
Code-o-mat31-Jan-09 0:35
Code-o-mat31-Jan-09 0:35 
QuestionRe: Hide and show dialogs Pin
David Crow31-Jan-09 16:31
David Crow31-Jan-09 16:31 
AnswerRe: Hide and show dialogs Pin
«_Superman_»30-Jan-09 23:27
professional«_Superman_»30-Jan-09 23:27 
Questionconvert row elements from two dimensional array to one dimensional arrays Pin
emira6730-Jan-09 21:15
emira6730-Jan-09 21:15 
Hello,

I'm new in Visual C++.I want to convert row elements from two dimensional array to one dimensional arrays.I wrote Visual C++ function to do this.This function has only one input parameter.Input parameter is two dimensional array.Firstly I tried to copy first row elements of input two dimensional array to one dimensional array in this function.One dimensional array will have been output parameter of function.But it didn't work.

The code is below:

// Temp is one dimensional array its length is 512
// Input paremeter is two dimensional array its width is 512 ,height is 512
// I want to copy first row elements of input two dimensional array to one dimensional array.

array<double>^ fonksiyon (array<double,2>^dizi )// The function
{ array<double>^ temp=gcnew array<double>(512);
Array::Copy(dizi,temp,512);
return temp;// return one dimesional array

}

Could you please help me ? Best regards...
AnswerWrong forum Pin
CPallini30-Jan-09 22:36
mveCPallini30-Jan-09 22:36 
AnswerRe: convert row elements from two dimensional array to one dimensional arrays Pin
David Crow31-Jan-09 16:34
David Crow31-Jan-09 16:34 
QuestionProblem in printing- Please help me. Pin
Le@rner30-Jan-09 21:02
Le@rner30-Jan-09 21:02 
AnswerRe: Problem in printing- Please help me. Pin
Roger Allen4-Feb-09 14:15
Roger Allen4-Feb-09 14:15 
GeneralRe: Problem in printing- Please help me. Pin
Le@rner4-Feb-09 18:52
Le@rner4-Feb-09 18:52 
Questionproblem in [Insert Bitmap] , [Text utf-8 FONT] print Pin
mohammadmot30-Jan-09 19:27
mohammadmot30-Jan-09 19:27 
QuestionI HAVE SOME QUESTION..... Pin
arad.moradi30-Jan-09 10:04
arad.moradi30-Jan-09 10:04 
AnswerRe: I HAVE SOME QUESTION..... Pin
CPallini30-Jan-09 11:08
mveCPallini30-Jan-09 11:08 
GeneralRe: I HAVE SOME QUESTION..... Pin
Code-o-mat30-Jan-09 23:21
Code-o-mat30-Jan-09 23:21 
QuestionXML/XPATH which C++ libraries? Pin
ntnass30-Jan-09 8:08
ntnass30-Jan-09 8:08 
AnswerRe: XML/XPATH which C++ libraries? Pin
Nemanja Trifunovic30-Jan-09 8:47
Nemanja Trifunovic30-Jan-09 8:47 
GeneralRe: XML/XPATH which C++ libraries? Pin
ntnass30-Jan-09 11:39
ntnass30-Jan-09 11:39 
QuestionRe: XML/XPATH which C++ libraries? Pin
CPallini30-Jan-09 11:10
mveCPallini30-Jan-09 11:10 
AnswerRe: XML/XPATH which C++ libraries? Pin
ntnass30-Jan-09 11:36
ntnass30-Jan-09 11:36 
GeneralRe: XML/XPATH which C++ libraries? Pin
CPallini30-Jan-09 12:27
mveCPallini30-Jan-09 12:27 
GeneralRe: XML/XPATH which C++ libraries? Pin
ntnass30-Jan-09 23:41
ntnass30-Jan-09 23:41 
GeneralRe: XML/XPATH which C++ libraries? Pin
Stephen Hewitt31-Jan-09 5:00
Stephen Hewitt31-Jan-09 5:00 

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.