Click here to Skip to main content
15,893,594 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: can i use InValidateRect() to refresh my desktop Pin
uday__m3-Feb-05 17:36
uday__m3-Feb-05 17:36 
GeneralRe: can i use InValidateRect() to refresh my desktop Pin
uday__m3-Feb-05 17:45
uday__m3-Feb-05 17:45 
GeneralRe: can i use InValidateRect() to refresh my desktop Pin
Ryan Binns1-Feb-05 12:53
Ryan Binns1-Feb-05 12:53 
GeneralRe: can i use InValidateRect() to refresh my desktop Pin
uday__m1-Feb-05 16:23
uday__m1-Feb-05 16:23 
AnswerRe: can i use InValidateRect() to refresh my desktop Pin
sushil sati17-Feb-10 21:08
sushil sati17-Feb-10 21:08 
Generali can not pass CStringArray from dll Pin
vc-programmer-31-Jan-05 18:08
vc-programmer-31-Jan-05 18:08 
GeneralRe: i can not pass CStringArray from dll Pin
Selvam R1-Feb-05 1:38
professionalSelvam R1-Feb-05 1:38 
GeneralRe: i can not pass CStringArray from dll Pin
Blake Miller1-Feb-05 4:51
Blake Miller1-Feb-05 4:51 
--OR-- Pass the CStringArray address instead of a COPY of the entire string array D'Oh! | :doh:

MY_API CStringArray MyName;
MY_API void GetmyName(CStringArray* _myname);

My.cpp
------
MY_API void GetmyName(CStringArray* _myname)
{
for(int i=0;i {
_myname->Add(MyName.GetAt(i));
}
}


typedef void (*EXTERNAL_NAME) (CStringArray* _myname);
EXTERNAL_NAME dll_myname;
----
---
--
--
CStringArray aa;
dll_myname(&aa);

for(int i=0;i {
m_ist.AddString(aa.GetAt(i));
}

GeneralRe:Debug Assertion Failed Pin
vc-programmer-1-Feb-05 17:16
vc-programmer-1-Feb-05 17:16 
GeneralRe:Debug Assertion Failed Pin
Blake Miller3-Feb-05 4:41
Blake Miller3-Feb-05 4:41 
GeneralMonitoring a process Pin
SiddharthAtw31-Jan-05 18:06
SiddharthAtw31-Jan-05 18:06 
GeneralRe: Monitoring a process Pin
rwestgraham31-Jan-05 18:50
rwestgraham31-Jan-05 18:50 
GeneralRe: Monitoring a process Pin
Blake Miller1-Feb-05 4:54
Blake Miller1-Feb-05 4:54 
GeneralAutomation Server Pin
Anonymous31-Jan-05 18:05
Anonymous31-Jan-05 18:05 
GeneralCComboBox Properties Pin
LighthouseJ31-Jan-05 17:17
LighthouseJ31-Jan-05 17:17 
GeneralRe: CComboBox Properties Pin
Ryan Binns31-Jan-05 17:56
Ryan Binns31-Jan-05 17:56 
GeneralRe: CComboBox Properties Pin
LighthouseJ31-Jan-05 18:01
LighthouseJ31-Jan-05 18:01 
QuestionMapViewOfFile returning ERROR_ACCESS_DENIED? Pin
Michael Dunn31-Jan-05 16:09
sitebuilderMichael Dunn31-Jan-05 16:09 
AnswerRe: MapViewOfFile returning ERROR_ACCESS_DENIED? Pin
Ryan Binns31-Jan-05 17:53
Ryan Binns31-Jan-05 17:53 
GeneralRe: MapViewOfFile returning ERROR_ACCESS_DENIED? Pin
Michael Dunn1-Feb-05 6:51
sitebuilderMichael Dunn1-Feb-05 6:51 
GeneralRe: MapViewOfFile returning ERROR_ACCESS_DENIED? Pin
Ryan Binns1-Feb-05 12:47
Ryan Binns1-Feb-05 12:47 
Generalword seperating algorithm Pin
jonavon blakly31-Jan-05 15:51
jonavon blakly31-Jan-05 15:51 
GeneralRe: word seperating algorithm Pin
David Crow31-Jan-05 16:40
David Crow31-Jan-05 16:40 
GeneralRe: word seperating algorithm Pin
jonavon blakly9-Feb-05 15:59
jonavon blakly9-Feb-05 15:59 
GeneralRe: word seperating algorithm Pin
David Crow10-Feb-05 5:28
David Crow10-Feb-05 5:28 

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.