Click here to Skip to main content
15,921,941 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionTokenizer ... Pin
devvvy2-Aug-07 20:34
devvvy2-Aug-07 20:34 
AnswerRe: Tokenizer ... Pin
Hans Dietrich2-Aug-07 21:09
mentorHans Dietrich2-Aug-07 21:09 
GeneralRe: Tokenizer ... Pin
devvvy3-Aug-07 18:04
devvvy3-Aug-07 18:04 
AnswerRe: Tokenizer ... Pin
Haroon Sarwar2-Aug-07 21:53
Haroon Sarwar2-Aug-07 21:53 
QuestionHow to Convert Excel sheet file to .cvs format using VC++ Pin
SnaKeBeD2-Aug-07 20:15
SnaKeBeD2-Aug-07 20:15 
AnswerRe: How to Convert Excel sheet file to .cvs format using VC++ Pin
Hamid_RT2-Aug-07 21:02
Hamid_RT2-Aug-07 21:02 
AnswerRe: How to Convert Excel sheet file to .cvs format using VC++ Pin
Anurag Gandhi2-Aug-07 21:08
professionalAnurag Gandhi2-Aug-07 21:08 
AnswerRe: How to Convert Excel sheet file to .cvs format using VC++ Pin
David Crow3-Aug-07 3:48
David Crow3-Aug-07 3:48 
Using Excel Automation, do something like:

_Application    app;
Workbooks       books;
_Workbook       book;
 
if (app.CreateDispatch("Excel.Application") == TRUE)
{ 
    books = app.GetWorkbooks();
 
    book = books.Open("c:\\book1.xls", ...);
 
    book.SaveAs(COleVariant("c:\\book1.cvs"), ...);
 
    app.Quit();
}



"A good athlete is the result of a good and worthy opponent." - David Crow

"To have a respect for ourselves guides our morals; to have deference for others governs our manners." - Laurence Sterne


QuestionHow to extract taskbar button icon Pin
FlyingBear2-Aug-07 19:23
FlyingBear2-Aug-07 19:23 
AnswerRe: How to extract taskbar button icon Pin
Naveen2-Aug-07 20:09
Naveen2-Aug-07 20:09 
GeneralRe: How to extract taskbar button icon Pin
FlyingBear2-Aug-07 23:21
FlyingBear2-Aug-07 23:21 
Questionhelp me Pin
philiptabraham2-Aug-07 19:04
philiptabraham2-Aug-07 19:04 
AnswerRe: help me Pin
Anurag Gandhi2-Aug-07 19:23
professionalAnurag Gandhi2-Aug-07 19:23 
GeneralRe: help me Pin
philiptabraham2-Aug-07 19:36
philiptabraham2-Aug-07 19:36 
GeneralRe: help me Pin
philiptabraham2-Aug-07 19:51
philiptabraham2-Aug-07 19:51 
GeneralRe: help me Pin
Anurag Gandhi2-Aug-07 21:02
professionalAnurag Gandhi2-Aug-07 21:02 
AnswerRe: help me Pin
Hamid_RT2-Aug-07 20:56
Hamid_RT2-Aug-07 20:56 
QuestionVector inside a structure Pin
vinodkoul2-Aug-07 18:46
vinodkoul2-Aug-07 18:46 
AnswerRe: Vector inside a structure Pin
Stephen Hewitt2-Aug-07 19:14
Stephen Hewitt2-Aug-07 19:14 
AnswerRe: Vector inside a structure Pin
cp98762-Aug-07 19:15
cp98762-Aug-07 19:15 
GeneralRe: Vector inside a structure Pin
vinodkoul2-Aug-07 20:12
vinodkoul2-Aug-07 20:12 
QuestionRe: Vector inside a structure Pin
vinodkoul2-Aug-07 20:43
vinodkoul2-Aug-07 20:43 
AnswerRe: Vector inside a structure Pin
cp98762-Aug-07 20:54
cp98762-Aug-07 20:54 
QuestionPrint value of key pressed...? Pin
deostroll2-Aug-07 18:22
deostroll2-Aug-07 18:22 
AnswerRe: Print value of key pressed...? Pin
bob169722-Aug-07 18:43
bob169722-Aug-07 18: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.