Click here to Skip to main content
15,922,696 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How to add event handler to call another Dialog Pin
Richard MacCutchan18-Mar-12 2:22
mveRichard MacCutchan18-Mar-12 2:22 
AnswerRe: How to add event handler to call another Dialog Pin
Albert Holguin16-Mar-12 18:19
professionalAlbert Holguin16-Mar-12 18:19 
QuestionMicrosoft authenticode certificate Pin
john563215-Mar-12 22:53
john563215-Mar-12 22:53 
AnswerRe: Microsoft authenticode certificate Pin
Code-o-mat16-Mar-12 0:24
Code-o-mat16-Mar-12 0:24 
QuestionDriver Installation Issue Pin
rupeshkp72815-Mar-12 21:42
rupeshkp72815-Mar-12 21:42 
AnswerRe: Driver Installation Issue Pin
Erudite_Eric15-Mar-12 21:50
Erudite_Eric15-Mar-12 21:50 
GeneralRe: Driver Installation Issue Pin
rupeshkp72815-Mar-12 21:57
rupeshkp72815-Mar-12 21:57 
GeneralRe: Driver Installation Issue Pin
Erudite_Eric16-Mar-12 10:12
Erudite_Eric16-Mar-12 10:12 
Dont apologise. I have been on to Maunder for a while to create a kernel forum. Smile | :)

First, eliminate the warnings. Tfhis is the kernel here, we accept nothing but 100% perfection. Smile | :) (And seriously, I mean that. It is either 100% or it is crap. Nothing in betweem.)

So, ewhen the inf checks out OK and rins you need to check the services key to make sure the driver is there. If not, the inf failed in some way. Look at setupapi.log file, it will tell you about inf based installs.

If the services entry is there, we need to look at signing, turn off driver signing checking, else the system wont load it.

Slight aside here, drivier signing checking on 64 Vista+. Originally you couldnt load unsigned drivers, then the driver dev world got pissed of with MS, and they changed it, but you have to be booted in debug mode (last I heard, but it is possible they changed it on later OSs. Check on google).

It coule be your driver is loading, but failing driver entry. So, after it loads (supposedly), do a sc query <driver service="" name=""> and see if it says running.

If not, it is time to hook up windbg and set a breakpiont on your driver driverentry. bp <drivername>!driverentry

Load it, and it should break. (set the symbols up.) Then you can see if it is failing in driverentry. If it suceeds driverentry, your driver IS running.

If your service entry is there, but driverentry isnt getting hit, then you need to make sure it is compiled properly, it needs a check sum, so make sure you use the ddk build utility.

Yep, its PITA, but thats why I get paid so damn much! Smile | :)
==============================

Nothing to say.

QuestionQuestion about smart pointers in C++ Pin
supermoore102515-Mar-12 19:52
supermoore102515-Mar-12 19:52 
AnswerRe: Question about smart pointers in C++ Pin
_AnsHUMAN_ 15-Mar-12 20:25
_AnsHUMAN_ 15-Mar-12 20:25 
AnswerRe: Question about smart pointers in C++ Pin
Erudite_Eric15-Mar-12 22:07
Erudite_Eric15-Mar-12 22:07 
Questionc++, easy way to format filesize from Large Integer to KB, MB, GB Pin
jkirkerx15-Mar-12 10:55
professionaljkirkerx15-Mar-12 10:55 
AnswerRe: c++, easy way to format filesize from Large Integer to KB, MB, GB Pin
enhzflep15-Mar-12 14:49
enhzflep15-Mar-12 14:49 
GeneralRe: c++, easy way to format filesize from Large Integer to KB, MB, GB Pin
Chuck O'Toole16-Mar-12 14:48
Chuck O'Toole16-Mar-12 14:48 
GeneralRe: c++, easy way to format filesize from Large Integer to KB, MB, GB Pin
enhzflep16-Mar-12 17:25
enhzflep16-Mar-12 17:25 
GeneralRe: c++, easy way to format filesize from Large Integer to KB, MB, GB Pin
jkirkerx18-Mar-12 17:06
professionaljkirkerx18-Mar-12 17:06 
AnswerRe: c++, easy way to format filesize from Large Integer to KB, MB, GB Pin
jschell16-Mar-12 11:39
jschell16-Mar-12 11:39 
QuestionDialog based on JPG advise Pin
Codling202015-Mar-12 6:32
Codling202015-Mar-12 6:32 
AnswerRe: Dialog based on JPG advise Pin
Richard MacCutchan15-Mar-12 6:59
mveRichard MacCutchan15-Mar-12 6:59 
AnswerRe: Dialog based on JPG advise Pin
_AnsHUMAN_ 15-Mar-12 18:36
_AnsHUMAN_ 15-Mar-12 18:36 
Questionneed small c++ projects with documentation Pin
johan david15-Mar-12 4:21
johan david15-Mar-12 4:21 
AnswerRe: need small c++ projects with documentation Pin
CPallini15-Mar-12 4:28
mveCPallini15-Mar-12 4:28 
GeneralReturn c_str() from function Pin
elelont215-Mar-12 3:44
elelont215-Mar-12 3:44 
GeneralRe: Return c_str() from function Pin
Erudite_Eric15-Mar-12 3:55
Erudite_Eric15-Mar-12 3:55 
GeneralRe: Return c_str() from function Pin
enhzflep15-Mar-12 3:59
enhzflep15-Mar-12 3:59 

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.