Click here to Skip to main content
15,915,019 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Using msxml in a visual c++ project Pin
led mike18-Jul-08 7:13
led mike18-Jul-08 7:13 
GeneralRe: Using msxml in a visual c++ project Pin
rocktx18-Jul-08 7:30
rocktx18-Jul-08 7:30 
QuestionExtended MAPI access to calendars Pin
twsmyth18-Jul-08 6:21
twsmyth18-Jul-08 6:21 
Questionwrite images in pgm format from picturebox (windows forms c++) Pin
william cplus18-Jul-08 4:56
william cplus18-Jul-08 4:56 
QuestionCo-ordinates of a button Pin
bhanu_850918-Jul-08 3:31
bhanu_850918-Jul-08 3:31 
AnswerRe: Co-ordinates of a button Pin
Alan Balkany18-Jul-08 3:54
Alan Balkany18-Jul-08 3:54 
GeneralRe: Co-ordinates of a button [modified] Pin
bhanu_850918-Jul-08 4:20
bhanu_850918-Jul-08 4:20 
GeneralRe: Co-ordinates of a button Pin
Alan Balkany18-Jul-08 4:32
Alan Balkany18-Jul-08 4:32 
GeneralRe: Co-ordinates of a button Pin
bhanu_850918-Jul-08 5:23
bhanu_850918-Jul-08 5:23 
GeneralRe: Co-ordinates of a button Pin
Alan Balkany18-Jul-08 5:42
Alan Balkany18-Jul-08 5:42 
QuestionRe: Co-ordinates of a button [modified] Pin
bhanu_850921-Jul-08 2:21
bhanu_850921-Jul-08 2:21 
AnswerRe: Co-ordinates of a button Pin
Alan Balkany21-Jul-08 4:41
Alan Balkany21-Jul-08 4:41 
GeneralRe: Co-ordinates of a button Pin
bhanu_850923-Jul-08 2:55
bhanu_850923-Jul-08 2:55 
GeneralRe: Co-ordinates of a button Pin
Alan Balkany23-Jul-08 8:08
Alan Balkany23-Jul-08 8:08 
AnswerRe: Co-ordinates of a button Pin
David Crow18-Jul-08 10:06
David Crow18-Jul-08 10:06 
AnswerRe: Co-ordinates of a button Pin
Stephen Hewitt20-Jul-08 13:44
Stephen Hewitt20-Jul-08 13:44 
Questionerror C2026: string too big, trailing characters truncated Pin
Rahul Vaishnav18-Jul-08 2:41
Rahul Vaishnav18-Jul-08 2:41 
AnswerRe: error C2026: string too big, trailing characters truncated Pin
CPallini18-Jul-08 3:06
mveCPallini18-Jul-08 3:06 
GeneralRe: error C2026: string too big, trailing characters truncated Pin
Rahul Vaishnav18-Jul-08 4:03
Rahul Vaishnav18-Jul-08 4:03 
AnswerRe: error C2026: string too big, trailing characters truncated Pin
KarstenK18-Jul-08 3:06
mveKarstenK18-Jul-08 3:06 
AnswerRe: error C2026: string too big, trailing characters truncated Pin
David Crow18-Jul-08 10:09
David Crow18-Jul-08 10:09 
Instead of doing something like:

str = "very long SQL stored procedure string";
try this instead:

str = "very long "
str += "SQL stored ";
str += "procedure string";
Strings can be as long as you have enough memory for. The compiler is simply complaining about your string literals.

"Love people and use things, not love things and use people." - Unknown

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


Questionproblem in writting urdu on Richedit control Pin
preeti sharma18-Jul-08 1:48
preeti sharma18-Jul-08 1:48 
AnswerRe: problem in writting urdu on Richedit control Pin
_AnsHUMAN_ 18-Jul-08 2:17
_AnsHUMAN_ 18-Jul-08 2:17 
GeneralRe: problem in writting urdu on Richedit control Pin
preeti sharma20-Jul-08 20:21
preeti sharma20-Jul-08 20:21 
QuestionParsing the include-structure of a cpp-project Pin
Tomerland18-Jul-08 1:37
Tomerland18-Jul-08 1:37 

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.