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

C / C++ / MFC

 
GeneralSpecified the path with Cfiledialog Pin
sdfdsfa21-Oct-03 8:37
sdfdsfa21-Oct-03 8:37 
GeneralRe: Specified the path with Cfiledialog Pin
David Crow21-Oct-03 9:44
David Crow21-Oct-03 9:44 
GeneralRe: Specified the path with Cfiledialog Pin
Anonymous21-Oct-03 18:33
Anonymous21-Oct-03 18:33 
GeneralSerialization Pin
swerajan21-Oct-03 8:25
swerajan21-Oct-03 8:25 
GeneralRe: Serialization Pin
David Crow21-Oct-03 9:43
David Crow21-Oct-03 9:43 
GeneralRe: Serialization Pin
John R. Shaw21-Oct-03 16:15
John R. Shaw21-Oct-03 16:15 
Generaloleacc horror Pin
Mukkie21-Oct-03 8:24
Mukkie21-Oct-03 8:24 
GeneralRe: oleacc horror Pin
PJ Arends21-Oct-03 10:19
professionalPJ Arends21-Oct-03 10:19 
You have to delay the loading of the oleacc.dll file. By doing this, the dll will only get loaded if your app requires it, not automatically when your app starts.

1.) Link to delayimp.lib
#pragma comment (lib, "delayimp.lib")


2.) use the /DELAYLOAD:oleacc.dll linker option
Project
  +-- Properties
        +-- Linker
              +-- Input
                    +-- Delay Loaded DLLs -> oleacc.dll

3.) use the /DELAY:UNLOAD linker option
Project
  +-- Properties
        +-- Linker
              +-- Advanced
                    +-- Delay Loaded DLL -> Support Unload (/DELAY:UNLOAD)


Version 7.0 of Dev Studio







Sonork 100.11743 Chicken Little

"You're obviously a superstar." - Christian Graus about me - 12 Feb '03

Within you lies the power for good - Use it!
GeneralRe: oleacc horror Pin
Mukkie21-Oct-03 11:01
Mukkie21-Oct-03 11:01 
GeneralRe: oleacc horror Pin
igor196021-Oct-03 11:27
igor196021-Oct-03 11:27 
GeneralLNK2001 error Pin
jimNLX21-Oct-03 7:27
jimNLX21-Oct-03 7:27 
GeneralRe: LNK2001 error Pin
Chris Meech21-Oct-03 7:59
Chris Meech21-Oct-03 7:59 
GeneralDisappearing list controls Pin
JT Anderson21-Oct-03 6:14
JT Anderson21-Oct-03 6:14 
GeneralRe: Disappearing list controls Pin
igor196021-Oct-03 8:51
igor196021-Oct-03 8:51 
GeneralRe: Disappearing list controls Pin
JT Anderson21-Oct-03 9:17
JT Anderson21-Oct-03 9:17 
GeneralRe: Disappearing list controls Pin
David Crow21-Oct-03 10:02
David Crow21-Oct-03 10:02 
GeneralRe: Disappearing list controls Pin
JT Anderson21-Oct-03 10:38
JT Anderson21-Oct-03 10:38 
Questionhow to split a bitmap into multiple bitmaps and save them to a folder Pin
Slim Gradey21-Oct-03 5:49
Slim Gradey21-Oct-03 5:49 
AnswerRe: how to split a bitmap into multiple bitmaps and save them to a folder Pin
John R. Shaw21-Oct-03 17:14
John R. Shaw21-Oct-03 17:14 
GeneralCbutton Pin
act_x21-Oct-03 5:30
act_x21-Oct-03 5:30 
GeneralRe: Cbutton Pin
Steve S21-Oct-03 5:41
Steve S21-Oct-03 5:41 
GeneralRe: Cbutton Pin
act_x21-Oct-03 5:48
act_x21-Oct-03 5:48 
GeneralRe: Cbutton Pin
John R. Shaw21-Oct-03 17:28
John R. Shaw21-Oct-03 17:28 
GeneralRe: Cbutton Pin
DaFrawg26-Oct-03 3:09
DaFrawg26-Oct-03 3:09 
QuestionLPTSTR? Pin
badsmonkey21-Oct-03 5:16
badsmonkey21-Oct-03 5:16 

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.