Click here to Skip to main content
15,903,385 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Closing a dialog box Pin
Dhiraj kumar Saini17-Nov-08 1:31
Dhiraj kumar Saini17-Nov-08 1:31 
AnswerRe: Closing a dialog box Pin
CPallini17-Nov-08 1:36
mveCPallini17-Nov-08 1:36 
GeneralRe: Closing a dialog box Pin
Dhiraj kumar Saini17-Nov-08 1:45
Dhiraj kumar Saini17-Nov-08 1:45 
AnswerRe: Closing a dialog box Pin
Hamid_RT17-Nov-08 2:53
Hamid_RT17-Nov-08 2:53 
AnswerRe: Closing a dialog box Pin
David Crow17-Nov-08 3:22
David Crow17-Nov-08 3:22 
Questionlaod avi file Pin
Aabid16-Nov-08 23:03
Aabid16-Nov-08 23:03 
AnswerRe: laod avi file Pin
Hamid_RT17-Nov-08 2:52
Hamid_RT17-Nov-08 2:52 
Questionexport to excel Pin
hellogany16-Nov-08 22:54
hellogany16-Nov-08 22:54 
hi i m usng the below code for writing data to excel from vc++

but the saved file is not in good format.

can anyone suggest a gud one?

UpdateData(TRUE);
ofstream o;
char ch[101];
o.open("D:\\tdy1",ios::app);
int s, s1;
s = m_edit1.GetLength();
strcpy(ch,"\n");
o.write(ch,2);
strcpy(ch,m_edit1);
o.write(ch,s);
strcpy(ch,"\t");
o.write(ch,2);
s1 = m_edit2.GetLength();
strcpy(ch,m_edit2);
o.write(ch,s1);
o.close();

AnswerRe: export to excel Pin
Garth J Lancaster16-Nov-08 23:29
professionalGarth J Lancaster16-Nov-08 23:29 
GeneralRe: export to excel Pin
hellogany16-Nov-08 23:40
hellogany16-Nov-08 23:40 
GeneralRe: export to excel [modified] Pin
Garth J Lancaster17-Nov-08 0:08
professionalGarth J Lancaster17-Nov-08 0:08 
JokeRe: export to excel Pin
CPallini17-Nov-08 0:40
mveCPallini17-Nov-08 0:40 
GeneralRe: export to excel Pin
Garth J Lancaster17-Nov-08 0:46
professionalGarth J Lancaster17-Nov-08 0:46 
GeneralRe: export to excel Pin
CPallini17-Nov-08 7:47
mveCPallini17-Nov-08 7:47 
GeneralRe: export to excel Pin
hellogany17-Nov-08 17:33
hellogany17-Nov-08 17:33 
QuestionERROR when accessing data from multiple tables in oracle to SDI Application with database support Pin
Divya Lalwani16-Nov-08 22:10
Divya Lalwani16-Nov-08 22:10 
QuestionRe: ERROR when accessing data from multiple tables in oracle to SDI Application with database support Pin
David Crow17-Nov-08 3:25
David Crow17-Nov-08 3:25 
Questioni need to RelayEvent,but cannot override PreTranslateMessage.... Pin
kaviniswell16-Nov-08 21:03
kaviniswell16-Nov-08 21:03 
AnswerRe: i need to RelayEvent,but cannot override PreTranslateMessage.... Pin
dupenf116-Nov-08 21:19
dupenf116-Nov-08 21:19 
GeneralRe: i need to RelayEvent,but cannot override PreTranslateMessage.... Pin
kaviniswell16-Nov-08 21:47
kaviniswell16-Nov-08 21:47 
GeneralRe: i need to RelayEvent,but cannot override PreTranslateMessage.... Pin
Roger Allen17-Nov-08 12:21
Roger Allen17-Nov-08 12:21 
GeneralRe: i need to RelayEvent,but cannot override PreTranslateMessage.... Pin
kaviniswell18-Nov-08 22:41
kaviniswell18-Nov-08 22:41 
GeneralRe: i need to RelayEvent,but cannot override PreTranslateMessage.... Pin
dupenf118-Nov-08 14:25
dupenf118-Nov-08 14:25 
GeneralRe: i need to RelayEvent,but cannot override PreTranslateMessage.... Pin
kaviniswell18-Nov-08 22:35
kaviniswell18-Nov-08 22:35 
GeneralRe: i need to RelayEvent,but cannot override PreTranslateMessage.... Pin
dupenf118-Nov-08 22:43
dupenf118-Nov-08 22:43 

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.