Click here to Skip to main content
15,919,749 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: write to txt files Pin
David Crow25-Jan-07 3:04
David Crow25-Jan-07 3:04 
AnswerRe: write to txt files Pin
Hamid_RT25-Jan-07 19:55
Hamid_RT25-Jan-07 19:55 
QuestionMFC Crystal Reports Lotus Notes Pin
tilistor24-Jan-07 22:02
tilistor24-Jan-07 22:02 
Questionwrite txt Pin
ng4kau124-Jan-07 22:00
ng4kau124-Jan-07 22:00 
AnswerRe: write txt Pin
baerten24-Jan-07 22:17
baerten24-Jan-07 22:17 
AnswerRe: write txt Pin
Hamid_RT25-Jan-07 19:55
Hamid_RT25-Jan-07 19:55 
QuestionHow to use LoadString() function in .dll Pin
Atul2324-Jan-07 21:56
Atul2324-Jan-07 21:56 
AnswerRe: How to use LoadString() function in .dll Pin
prasad_som24-Jan-07 22:06
prasad_som24-Jan-07 22:06 
Considering your previous posts, I think you are trying to load this string from resource dll. In this case you need to set resource handle of application with loaded resource dll.
Example in MSDN should give your clear idea,
BOOL CMyApp::InitInstance()
{
  //Default Appwizard code.
  HINSTANCE hRes = NULL;
  hRes= LoadLibrary("ResourceD.dll");
  if(hRes)
    AfxSetResourceHandle(hRes);
  //Rest of wizard code
  return CWinApp::InitInstance();
}




QuestionRe: How to use LoadString() function in .dll Pin
David Crow25-Jan-07 3:08
David Crow25-Jan-07 3:08 
QuestionDVD Video Pin
yudhisthira24-Jan-07 21:51
yudhisthira24-Jan-07 21:51 
QuestionCreateWindow Pin
Waldermort24-Jan-07 21:45
Waldermort24-Jan-07 21:45 
AnswerRe: CreateWindow Pin
PJ Arends24-Jan-07 23:42
professionalPJ Arends24-Jan-07 23:42 
GeneralRe: CreateWindow Pin
Waldermort25-Jan-07 18:26
Waldermort25-Jan-07 18:26 
QuestionHow to Insert a CButton into a CListControl ? [modified] Pin
erajsri24-Jan-07 21:21
erajsri24-Jan-07 21:21 
AnswerRe: How to Insert a CButton into a CListControl ? Pin
prasad_som24-Jan-07 21:37
prasad_som24-Jan-07 21:37 
AnswerRe: How to Insert a CButton into a CListControl ? Pin
Hamid_RT25-Jan-07 19:45
Hamid_RT25-Jan-07 19:45 
QuestionFriend function Pin
arun kumar kk24-Jan-07 19:42
arun kumar kk24-Jan-07 19:42 
AnswerRe: Friend function Pin
Stephen Hewitt24-Jan-07 19:53
Stephen Hewitt24-Jan-07 19:53 
AnswerRe: Friend function Pin
Hamid_RT25-Jan-07 19:45
Hamid_RT25-Jan-07 19:45 
QuestionTRACE in vc++ Pin
deeps_cute24-Jan-07 19:14
deeps_cute24-Jan-07 19:14 
AnswerRe: TRACE in vc++ Pin
Waldermort24-Jan-07 21:26
Waldermort24-Jan-07 21:26 
QuestionVC++ [modified] Pin
deeps_cute24-Jan-07 18:56
deeps_cute24-Jan-07 18:56 
QuestionRe: VC++ Pin
prasad_som24-Jan-07 19:08
prasad_som24-Jan-07 19:08 
Questionin vc++ Pin
deeps_cute24-Jan-07 17:38
deeps_cute24-Jan-07 17:38 
AnswerRe: in vc++ Pin
prasad_som24-Jan-07 17:53
prasad_som24-Jan-07 17:53 

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.