Click here to Skip to main content
15,896,606 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
General"AfterEdit" event not getting called Pin
Pazzuzu13-Jun-05 23:00
Pazzuzu13-Jun-05 23:00 
GeneralSpawning Pin
Kash13-Jun-05 22:19
Kash13-Jun-05 22:19 
GeneralRe: Spawning Pin
David Crow14-Jun-05 3:18
David Crow14-Jun-05 3:18 
GeneralDynamically Change Menu Text Pin
sweep12313-Jun-05 21:52
sweep12313-Jun-05 21:52 
GeneralRe: Dynamically Change Menu Text Pin
Weiye Chen13-Jun-05 22:44
Weiye Chen13-Jun-05 22:44 
GeneralRe: Dynamically Change Menu Text Pin
Nilesh K.13-Jun-05 23:01
Nilesh K.13-Jun-05 23:01 
GeneralRe: Dynamically Change Menu Text Pin
sweep12313-Jun-05 20:24
sweep12313-Jun-05 20:24 
Generali want ask about this code Pin
kosamoza13-Jun-05 20:47
kosamoza13-Jun-05 20:47 
i wrote this code about the Matrix project here is a part of the code to input the matrix or a vector with a dynamic allocation:
double*vector ; int num ;
cout<<"enter the size of the vector"<<\n;
cin>>num;
vector=new double[num];
for(i=0;i<num;i++)
{
cout<<"enter="" the="" element"<<i+1<<"in="" vector"<<\n;
="" cin="">>*(vector+i)
}
this for input the vector but for input the matrix i made it in another function:
double*grade ; double**matrix ; int row ; int col;
cout<<"enter the number of rows then coloumns in the matrix"<<\n;
cin>>row>>col;
double**matrix=new double*[row];
for(int j=0;j<row;j++)
{
matrix[j]="new" double[col]
="" for(int="" k="0;" k<row;="" k++)
{
="" for(="" int="" l="0;" l<col;="" l++)
{=""
="" cout<<"enter="" the="" element"<<l+1<<"in="" row"<<k+1<<\n;
="" cin="">>*(grade[k]+l)
}}}
iwant to ask of there is any missing in the followin part of the code
second if i want the program to ask the user if he wants to input one or more matrix can i add this :
for(int c=o;c<n;c++) where="" n="" is="" the="" number="" of="" matrices="" user="" want="" to="" input="" i="" put="" all="" previuos="" for="" loops="" in="" this="" loop="" but="" withmall="" change="" as="" folows
in="" stead="" writing="" matrix[j]i="" will="" write
matrix[c][j]="new" double[col]
&="" instead="" cin="">>*(grade[k]+l) i will write
cin>>*(grade[c][k]+l)
so may you answer these previous questions?
GeneralRe: i want ask about this code Pin
Nilesh K.13-Jun-05 21:21
Nilesh K.13-Jun-05 21:21 
GeneralRe: i want ask about this code Pin
kosamoza13-Jun-05 22:14
kosamoza13-Jun-05 22:14 
GeneralRe: i want ask about this code Pin
Weiye Chen13-Jun-05 22:54
Weiye Chen13-Jun-05 22:54 
GeneralRe: i want ask about this code Pin
Stlan13-Jun-05 22:57
Stlan13-Jun-05 22:57 
QuestionAny material available to make simulator for 8085 microprocessor in C, C++ ? Pin
Amarelia13-Jun-05 20:44
Amarelia13-Jun-05 20:44 
AnswerRe: Any material available to make simulator for 8085 microprocessor in C, C++ ? Pin
Nilesh K.13-Jun-05 21:24
Nilesh K.13-Jun-05 21:24 
AnswerRe: Any material available to make simulator for 8085 microprocessor in C, C++ ? Pin
Rick York14-Jun-05 10:20
mveRick York14-Jun-05 10:20 
GeneralMSXML2::IXMLDOMDocument::save a xml doc Pin
Saurabh_Delhi13-Jun-05 17:22
Saurabh_Delhi13-Jun-05 17:22 
GeneralRe: MSXML2::IXMLDOMDocument::save a xml doc Pin
ThatsAlok13-Jun-05 23:32
ThatsAlok13-Jun-05 23:32 
GeneralRe: MSXML2::IXMLDOMDocument::save a xml doc Pin
Saurabh_Delhi14-Jun-05 3:47
Saurabh_Delhi14-Jun-05 3:47 
GeneralRe: MSXML2::IXMLDOMDocument::save a xml doc Pin
ThatsAlok14-Jun-05 18:26
ThatsAlok14-Jun-05 18:26 
GeneralDropdown toolbuttons Pin
laiju13-Jun-05 20:05
laiju13-Jun-05 20:05 
GeneralRe: Dropdown toolbuttons Pin
Iain Clarke, Warrior Programmer14-Jun-05 0:13
Iain Clarke, Warrior Programmer14-Jun-05 0:13 
GeneralRe: Dropdown toolbuttons Pin
laiju13-Jun-05 21:36
laiju13-Jun-05 21:36 
GeneralRe: Dropdown toolbuttons Pin
Iain Clarke, Warrior Programmer14-Jun-05 0:20
Iain Clarke, Warrior Programmer14-Jun-05 0:20 
GeneraltimeSetEvent Pin
medlar13-Jun-05 20:04
medlar13-Jun-05 20:04 
GeneralRe: timeSetEvent Pin
khan++13-Jun-05 18:23
khan++13-Jun-05 18:23 

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.