Click here to Skip to main content
16,007,126 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Check existance of directory Pin
Brian Shifrin31-Jul-03 4:03
Brian Shifrin31-Jul-03 4:03 
GeneralRe: Check existance of directory Pin
valikac31-Jul-03 6:10
valikac31-Jul-03 6:10 
GeneralRe: Check existance of directory Pin
Joel Lucsy31-Jul-03 7:31
Joel Lucsy31-Jul-03 7:31 
GeneralRe: Check existance of directory Pin
Toni7831-Jul-03 18:55
Toni7831-Jul-03 18:55 
GeneralRe: Check existance of directory Pin
HPSI31-Jul-03 20:14
HPSI31-Jul-03 20:14 
QuestionUnder what circumstances does IE run in explorer.exe process? Pin
Tommy Svensson31-Jul-03 3:57
Tommy Svensson31-Jul-03 3:57 
AnswerRe: Under what circumstances does IE run in explorer.exe process? Pin
Mike Dimmick31-Jul-03 4:56
Mike Dimmick31-Jul-03 4:56 
GeneralRe: Under what circumstances does IE run in explorer.exe process? Pin
Tommy Svensson31-Jul-03 5:04
Tommy Svensson31-Jul-03 5:04 
Thx Mike!

My problem is this:

I have a BHO which is only supposed to load and run in
Internet Explorer; the BHO is a web tool. It has a heavy init phase which is
very annoying having to wait for if it's loaded in explorer.exe (that is in folders and such frequently used objects), the way it is now.

Is there a way to know under what circumstances IE is run under the explorer.exe process so that I can skip the heavy loading in these cases...? Because when I had this piece of code

if (dwReason == DLL_PROCESS_ATTACH)
{
TCHAR pszLoader[MAX_PATH];
GetModuleFileName(NULL, pszLoader, MAX_PATH);
_tcslwr(pszLoader);
if (_tcsstr(pszLoader, _T("explorer.exe")))
return FALSE;
}

my BHO did not load at all in IE on some machines... which ones with what spec I don't know. Removing the code (the _tcsstr part) makes the whole BHO dependent on open folders and explorer views...

For example, before uninstalling my app (the BHO) I need to shut down every folder (eplorer.exe) unless I want to reboot after the uninstall.

Any idead on what do to?

/Tommy
Generaldialog in top left of screen Pin
si_6931-Jul-03 3:43
si_6931-Jul-03 3:43 
GeneralRe: dialog in top left of screen Pin
si_6931-Jul-03 3:45
si_6931-Jul-03 3:45 
GeneralRe: dialog in top left of screen Pin
User 665831-Jul-03 4:01
User 665831-Jul-03 4:01 
GeneralRe: dialog in top left of screen Pin
si_6931-Jul-03 5:19
si_6931-Jul-03 5:19 
Generaldrag 'n drop CBitmap Pin
selena31-Jul-03 3:29
selena31-Jul-03 3:29 
GeneralComponent oriented application Pin
Jerome Conus31-Jul-03 3:25
Jerome Conus31-Jul-03 3:25 
GeneralRe: Component oriented application Pin
armentage31-Jul-03 4:00
armentage31-Jul-03 4:00 
GeneralRe: Component oriented application Pin
Jim Crafton31-Jul-03 8:06
Jim Crafton31-Jul-03 8:06 
GeneralMFC Tree View Pin
rahulmsaxena31-Jul-03 3:24
rahulmsaxena31-Jul-03 3:24 
GeneralRe: MFC Tree View Pin
Tim Ranker31-Jul-03 3:39
Tim Ranker31-Jul-03 3:39 
GeneralRe: MFC Tree View Pin
rahulmsaxena31-Jul-03 3:51
rahulmsaxena31-Jul-03 3:51 
GeneralRe: MFC Tree View Pin
Tim Ranker31-Jul-03 4:54
Tim Ranker31-Jul-03 4:54 
GeneralRe: MFC Tree View Pin
rahulmsaxena31-Jul-03 9:20
rahulmsaxena31-Jul-03 9:20 
GeneralRe: MFC Tree View Pin
Tim Ranker31-Jul-03 10:16
Tim Ranker31-Jul-03 10:16 
GeneralHowto: get a Two's Complement Checksum Pin
DudleyDoorite31-Jul-03 2:43
DudleyDoorite31-Jul-03 2:43 
GeneralRe: Howto: get a Two's Complement Checksum Pin
Ryan Binns31-Jul-03 3:19
Ryan Binns31-Jul-03 3:19 
GeneralRe: Howto: get a Two's Complement Checksum Pin
Tim Ranker31-Jul-03 3:31
Tim Ranker31-Jul-03 3:31 

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.