Click here to Skip to main content
15,920,956 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Dialog in a thread Pin
Cedric Moonen21-Aug-03 21:56
Cedric Moonen21-Aug-03 21:56 
GeneralRe: Dialog in a thread Pin
Neville Franks21-Aug-03 23:24
Neville Franks21-Aug-03 23:24 
GeneralRe: Dialog in a thread Pin
Cedric Moonen21-Aug-03 23:32
Cedric Moonen21-Aug-03 23:32 
Questionhow to create a CString with huge lengh? Pin
wangnanjing21-Aug-03 20:53
wangnanjing21-Aug-03 20:53 
AnswerRe: how to create a CString with huge lengh? Pin
Nish Nishant21-Aug-03 21:04
sitebuilderNish Nishant21-Aug-03 21:04 
GeneralRe: how to create a CString with huge lengh? Pin
Manfred Staiger22-Aug-03 1:31
Manfred Staiger22-Aug-03 1:31 
AnswerRe: how to create a CString with huge lengh? Pin
Joey Bloggs21-Aug-03 21:17
Joey Bloggs21-Aug-03 21:17 
AnswerRe: how to create a CString with huge lengh? Pin
Paolo Bardella22-Aug-03 1:54
Paolo Bardella22-Aug-03 1:54 
Since it's quite difficult to write a 2GB query(!), I guess you are writing something like
CString SQLString (a string longer than 2048 chars);
If this is your code, there is not a problem related to CString, but it is a limit of the compiler: in vc6 a string cannot be longer than 2048 characters.

So, you could simply try
CString SQLString;
SQLString="First part of query smaller than 2048";
SQLString+="Second part of query";
and so on...,



Generaldebug mydll.dll works fine, releaseminsize doesn't Pin
suninwater21-Aug-03 20:31
suninwater21-Aug-03 20:31 
GeneralRe: debug mydll.dll works fine, releaseminsize doesn't Pin
Dominik Reichl21-Aug-03 20:42
Dominik Reichl21-Aug-03 20:42 
GeneralRe: debug mydll.dll works fine, releaseminsize doesn't Pin
David Crow22-Aug-03 3:06
David Crow22-Aug-03 3:06 
Generaladodc.cpp reference Pin
Dmitriy Aleksandrovich21-Aug-03 19:43
Dmitriy Aleksandrovich21-Aug-03 19:43 
GeneralRecycle bin API restore all files API Pin
rohit.dhamija21-Aug-03 19:06
rohit.dhamija21-Aug-03 19:06 
GeneralRe: Recycle bin API restore all files API Pin
Dominik Reichl21-Aug-03 20:48
Dominik Reichl21-Aug-03 20:48 
GeneralRe: Recycle bin API restore all files API Pin
rohit.dhamija21-Aug-03 20:55
rohit.dhamija21-Aug-03 20:55 
GeneralRe: Recycle bin API restore all files API Pin
David Crow22-Aug-03 2:58
David Crow22-Aug-03 2:58 
GeneralSimple Problem VC++6 Pin
questaware21-Aug-03 19:01
questaware21-Aug-03 19:01 
GeneralRe: Simple Problem VC++6 Pin
Member 34642221-Aug-03 19:05
Member 34642221-Aug-03 19:05 
GeneralRe: Simple Problem VC++6 Pin
Michael Dunn21-Aug-03 19:45
sitebuilderMichael Dunn21-Aug-03 19:45 
Generalsizeof() problem Pin
IceBerG7121-Aug-03 17:49
IceBerG7121-Aug-03 17:49 
GeneralRe: sizeof() problem Pin
Brad Sokol21-Aug-03 18:06
Brad Sokol21-Aug-03 18:06 
GeneralRe: sizeof() problem Pin
IceBerG7121-Aug-03 18:58
IceBerG7121-Aug-03 18:58 
GeneralNeed some help with CreateProcess() Pin
Flack21-Aug-03 17:22
Flack21-Aug-03 17:22 
GeneralRe: Need some help with CreateProcess() Pin
Brad Sokol21-Aug-03 17:31
Brad Sokol21-Aug-03 17:31 
QuestionNeed I define a function as "extern"? Pin
George221-Aug-03 15:46
George221-Aug-03 15:46 

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.