Click here to Skip to main content
15,902,114 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Unable to send AT commands to the COM3 port. plz help. Pin
SandipG 29-Aug-08 9:19
SandipG 29-Aug-08 9:19 
GeneralRe: Unable to send AT commands to the COM3 port. plz help. Pin
AprNgp29-Aug-08 9:25
AprNgp29-Aug-08 9:25 
GeneralRe: Unable to send AT commands to the COM3 port. plz help. Pin
AprNgp29-Aug-08 9:28
AprNgp29-Aug-08 9:28 
GeneralRe: Unable to send AT commands to the COM3 port. plz help. Pin
AprNgp31-Aug-08 8:54
AprNgp31-Aug-08 8:54 
GeneralRe: Unable to send AT commands to the COM3 port. plz help. Pin
Vaclav_29-Aug-08 8:50
Vaclav_29-Aug-08 8:50 
GeneralRe: Unable to send AT commands to the COM3 port. plz help. Pin
AprNgp29-Aug-08 8:56
AprNgp29-Aug-08 8:56 
GeneralRe: Unable to send AT commands to the COM3 port. plz help. Pin
AprNgp29-Aug-08 9:06
AprNgp29-Aug-08 9:06 
QuestionCString as variable arguments Pin
Royce Fickling29-Aug-08 5:31
Royce Fickling29-Aug-08 5:31 
I have a function that uses a variable argument list, but the va_arg macro always throws an exception. Why can't I use CString objects as my arguments? What am I doing wrong? My code is below.

void COdb::WriteAttribute( CStdioFile& fileOutput, 
			        const CString& strTagName,
			        const CString& strAttribute, 
			        const CString& strValue, ... )
{
	va_list vl;
	va_start( vl, strValue );

	CString strBuffer;
	strBuffer.Format( "  <%s %s=\"%s\"/>", 
				strTagName, strAttribute, strValue );

	CString strOpAttr = va_arg( vl, CString );
}

QuestionRe: CString as variable arguments Pin
David Crow29-Aug-08 7:42
David Crow29-Aug-08 7:42 
AnswerRe: CString as variable arguments [modified] Pin
Mark Salsbery29-Aug-08 7:47
Mark Salsbery29-Aug-08 7:47 
GeneralRe: CString as variable arguments Pin
Royce Fickling29-Aug-08 8:56
Royce Fickling29-Aug-08 8:56 
GeneralRe: CString as variable arguments Pin
Mark Salsbery29-Aug-08 9:06
Mark Salsbery29-Aug-08 9:06 
QuestionNumber of words and characters of a string. Pin
CodingLover29-Aug-08 4:37
CodingLover29-Aug-08 4:37 
GeneralRe: Number of words and characters of a string. Pin
led mike29-Aug-08 4:39
led mike29-Aug-08 4:39 
NewsRe: Number of words and characters of a string. Pin
CodingLover29-Aug-08 4:40
CodingLover29-Aug-08 4:40 
QuestionRe: Number of words and characters of a string. Pin
CodingLover29-Aug-08 6:20
CodingLover29-Aug-08 6:20 
AnswerRe: Number of words and characters of a string. Pin
led mike29-Aug-08 6:52
led mike29-Aug-08 6:52 
AnswerRe: Number of words and characters of a string. Pin
Nemanja Trifunovic29-Aug-08 9:23
Nemanja Trifunovic29-Aug-08 9:23 
Questionhow to extract frames from video with .dat format..?? Pin
suresh zende29-Aug-08 4:35
suresh zende29-Aug-08 4:35 
AnswerRe: how to extract frames from video with .dat format..?? Pin
Mark Salsbery29-Aug-08 8:36
Mark Salsbery29-Aug-08 8:36 
GeneralRe: how to extract frames from video with .dat format..?? Pin
suresh zende30-Aug-08 4:12
suresh zende30-Aug-08 4:12 
GeneralRe: how to extract frames from video with .dat format..?? Pin
Mark Salsbery30-Aug-08 5:49
Mark Salsbery30-Aug-08 5:49 
GeneralRe: how to extract frames from video with .dat format..?(we hv to take snapshots) Pin
suresh zende30-Aug-08 6:37
suresh zende30-Aug-08 6:37 
GeneralRe: how to extract frames from video with .dat format..?(we hv to take snapshots) Pin
Mark Salsbery30-Aug-08 7:09
Mark Salsbery30-Aug-08 7:09 
QuestionCreate function is not working in release mode but working in debug mode Pin
lavate malllik29-Aug-08 3:01
lavate malllik29-Aug-08 3:01 

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.