Click here to Skip to main content
15,890,527 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How do I see my C++ app? Pin
Gary R. Wheeler27-May-06 4:10
Gary R. Wheeler27-May-06 4:10 
QuestionNeed Help in Setting a Check-box control Pin
Blakiston26-May-06 10:21
Blakiston26-May-06 10:21 
AnswerRe: Need Help in Setting a Check-box control Pin
Michael Dunn26-May-06 10:52
sitebuilderMichael Dunn26-May-06 10:52 
QuestionHow to view my C++ application Pin
Angalo26-May-06 10:13
Angalo26-May-06 10:13 
AnswerRe: How to view my C++ application [modified] Pin
anwer_skk26-May-06 15:34
anwer_skk26-May-06 15:34 
AnswerRe: How to view my C++ application Pin
Hamid_RT26-May-06 18:37
Hamid_RT26-May-06 18:37 
QuestionC++ SQL Help Pin
Dreamspeeder26-May-06 10:04
Dreamspeeder26-May-06 10:04 
AnswerRe: C++ SQL Help Pin
PJ Arends26-May-06 10:20
professionalPJ Arends26-May-06 10:20 
You have to build the command string, using std::ostringstream is the easiest way to do this.

Dreamspeeder wrote:
pRst->Open("SELECT * FROM [Video] WHERE [Video].[PROD_Title] = 'Vertigo';", strCnn, adOpenStatic, adLockReadOnly, adCmdText);

std::ostringstream SQLCommand;
SQLCommand << "SELECT * FROM [Video] WHERE [Video].PROD_Title = '" << sMovie << "';" << std::ends;
pRst->Open(SQLCommand.str().c_str(), strCnn, ...



You may be right
I may be crazy
-- Billy Joel --


Within you lies the power for good - Use it!
Questionneed help to looking some Tutorials of thread develop in C++ with out MFC... Pin
Yanshof26-May-06 9:03
Yanshof26-May-06 9:03 
AnswerRe: need help to looking some Tutorials of thread develop in C++ with out MFC... Pin
led mike26-May-06 9:11
led mike26-May-06 9:11 
AnswerRe: need help to looking some Tutorials of thread develop in C++ with out MFC... Pin
Hamid_RT26-May-06 18:41
Hamid_RT26-May-06 18:41 
QuestionHow to save position of selected item in CTreeCtrl [modified] Pin
AnTri26-May-06 6:15
AnTri26-May-06 6:15 
AnswerRe: How to save position of selected item in CTreeCtrl [modified] Pin
valikac26-May-06 6:33
valikac26-May-06 6:33 
AnswerRe: How to save position of selected item in CTreeCtrl Pin
led mike26-May-06 9:05
led mike26-May-06 9:05 
Questionthe header file of threads Pin
noumanzaidi26-May-06 3:25
noumanzaidi26-May-06 3:25 
AnswerRe: the header file of threads Pin
Sarath C26-May-06 3:36
Sarath C26-May-06 3:36 
GeneralRe: the header file of threads Pin
David Crow26-May-06 3:52
David Crow26-May-06 3:52 
AnswerRe: the header file of threads Pin
Sarath C26-May-06 3:37
Sarath C26-May-06 3:37 
AnswerRe: the header file of threads Pin
Chris Losinger26-May-06 3:38
professionalChris Losinger26-May-06 3:38 
AnswerRe: the header file of threads Pin
Sarath C26-May-06 3:41
Sarath C26-May-06 3:41 
Questionado in vc++ Pin
GANsJob26-May-06 2:24
GANsJob26-May-06 2:24 
QuestionRe: ado in vc++ Pin
David Crow26-May-06 2:35
David Crow26-May-06 2:35 
AnswerRe: ado in vc++ Pin
GANsJob26-May-06 2:45
GANsJob26-May-06 2:45 
GeneralRe: ado in vc++ Pin
David Crow26-May-06 3:13
David Crow26-May-06 3:13 
AnswerRe: ado in vc++ Pin
Milton Karimbekallil26-May-06 2:39
Milton Karimbekallil26-May-06 2:39 

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.