Click here to Skip to main content
15,903,388 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: icons of task manager?? Pin
Michael Dunn17-Feb-04 20:15
sitebuilderMichael Dunn17-Feb-04 20:15 
GeneralCD drive name Pin
aguess17-Feb-04 15:13
aguess17-Feb-04 15:13 
GeneralRe: CD drive name Pin
Michael Dunn17-Feb-04 20:20
sitebuilderMichael Dunn17-Feb-04 20:20 
GeneralDelete File Pin
psyclope17-Feb-04 14:52
psyclope17-Feb-04 14:52 
GeneralRe: Delete File Pin
Jeremy Falcon17-Feb-04 14:55
professionalJeremy Falcon17-Feb-04 14:55 
GeneralRe: Delete File Pin
bryce17-Feb-04 16:55
bryce17-Feb-04 16:55 
GeneralUnable to excute the service application on WIndowsXP basically built on Windows2000 Pin
Anonymous17-Feb-04 14:30
Anonymous17-Feb-04 14:30 
GeneralRe: Unable to excute the service application on WIndowsXP basically built on Windows2000 Pin
Mike Dimmick18-Feb-04 1:51
Mike Dimmick18-Feb-04 1:51 
It's possible that Windows XP has a lower tolerance for services that are slow to start. You should call RegisterServiceCtrlHandler as soon as possible in your ServiceMain, and give an accurate idea of how long it's going to take to start up using SetServiceStatus, in the dwWaitHint parameter. If this time is about to expire and you've not finished starting up yet, increment dwCheckPoint and call SetServiceStatus again. Be sure to call SetServiceStatus with dwCurrentState set to SERVICE_RUNNING once you're actually started.

The LIB file is a red herring. If it's a static library, all referenced code and data contained within it has been included in your executable. If it's an import library, you need to ensure that the DLL containing the imported functions can be found. It's preferable to place it in the same folder as the executable.

Use depends.exe from the Platform SDK to discover which DLLs an executable uses.
GeneralARRRRRRUUUGGHHH date parsing is driving me crazy.... Pin
(Steven Hicks)n+117-Feb-04 13:57
(Steven Hicks)n+117-Feb-04 13:57 
GeneralRe: ARRRRRRUUUGGHHH date parsing is driving me crazy.... Pin
Robert A. T. Káldy18-Feb-04 0:21
Robert A. T. Káldy18-Feb-04 0:21 
GeneralRe: ARRRRRRUUUGGHHH date parsing is driving me crazy.... Pin
Robert A. T. Káldy18-Feb-04 1:06
Robert A. T. Káldy18-Feb-04 1:06 
GeneralRe: ARRRRRRUUUGGHHH date parsing is driving me crazy.... Pin
(Steven Hicks)n+118-Feb-04 3:22
(Steven Hicks)n+118-Feb-04 3:22 
GeneralMultiple Radio Button Pin
merlin37117-Feb-04 13:00
merlin37117-Feb-04 13:00 
GeneralRe: Multiple Radio Button Pin
Jeremy Falcon17-Feb-04 14:48
professionalJeremy Falcon17-Feb-04 14:48 
GeneralRe: Multiple Radio Button Pin
merlin37117-Feb-04 23:53
merlin37117-Feb-04 23:53 
GeneralRe: Multiple Radio Button Pin
Jeremy Falcon18-Feb-04 3:23
professionalJeremy Falcon18-Feb-04 3:23 
GeneralMovable button Pin
junkan123417-Feb-04 11:48
junkan123417-Feb-04 11:48 
GeneralRe: Movable button Pin
Robert A. T. Káldy18-Feb-04 0:26
Robert A. T. Káldy18-Feb-04 0:26 
GeneralActiveX control Pin
Anonymous17-Feb-04 11:10
Anonymous17-Feb-04 11:10 
GeneralBasic Serial I/O in VC++ Pin
JoeMass17-Feb-04 11:03
JoeMass17-Feb-04 11:03 
GeneralRe: Basic Serial I/O in VC++ Pin
Anonymous17-Feb-04 13:34
Anonymous17-Feb-04 13:34 
GeneralRe: Basic Serial I/O in VC++ Pin
r i s h a b h s17-Feb-04 22:19
r i s h a b h s17-Feb-04 22:19 
GeneralRe: Basic Serial I/O in VC++ Pin
jhorstkamp18-Feb-04 3:12
jhorstkamp18-Feb-04 3:12 
GeneralRe: Defining functions in other files Pin
satcat17-Feb-04 10:22
satcat17-Feb-04 10:22 
GeneralRe: Defining functions in other files Pin
Michael Gunlock17-Feb-04 19:16
Michael Gunlock17-Feb-04 19: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.