CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: lilrangerabn

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    2,092

    IOCTLs in a windows Service

    Ok, so I've built a driver that works completely. I have a win32 CLR CPP control application that is able to communicate with the driver and now trying to get the communication between my CPP...
  2. Replies
    4
    Views
    1,576

    Re: error with device driver handle

    This is resolved. Driver was missing handling for IRP_MJ_CLEANUP/CLOSE which are called by CloseHandle.
  3. Replies
    4
    Views
    1,576

    Re: error with device driver handle

    Same results... I'm guessing it is a driver side error...
  4. Replies
    4
    Views
    1,576

    error with device driver handle

    I have a device driver, that does great and wonderful (at least I'm proud of it)
    things. It sets up a symbolic handle via:

    // Setup our name and symbolic link.
    RtlInitUnicodeString...
  5. Replies
    2
    Views
    2,065

    Re: reading REG_SZ has extra spaces...

    thanks again Alex.
  6. Replies
    3
    Views
    2,082

    Re: convert System::String ^ to const BYTE

    Thanks Alex.
  7. Replies
    2
    Views
    2,065

    reading REG_SZ has extra spaces...

    I have a method where I am reading a REG_SZ from a registry key. I know that the value of buff is exactly what is in the REG_SZ key, however when converting it to a System::String it gets extra...
  8. Replies
    3
    Views
    2,082

    convert System::String ^ to const BYTE

    I'm performing a simple operation and my brain is not helping me out (overly fried).

    I have:

    String ^ myString = Console::ReadLine();

    I need to convert myString to a const BYTE *lpdata.
  9. convert System::String ^ to const BYTE

    I'm performing a simple operation and my brain is not helping me out (overly fried).

    I have:

    String ^ myString = Console::ReadLine();

    I need to convert myString to a const BYTE *lpdata.
  10. Re: Simple windows service does not run under XP

    Correction, I grabbed the wrong binary... it works with the release version.
  11. Re: Simple windows service does not run under XP

    The dependencies missing are: IESHIMS.DLL and WER.DLL.

    I have seen several posts regarding this issue, some where resolved by ensuring IE8 was installed, which it is. Others by ensuring a release...
  12. Re: Simple windows service does not run under XP

    Furthermore after running Dependency Walker on my service, it says it can't find ieshims.dll and wer.dll. How do I get VS2008 to make this service complete with everything it needs to run on the VM?
  13. Simple windows service does not run under XP

    So I am trying to build a service for XP SP3 in VS2008, using the C++ Windows Service template.
    The VS2008 is sitting on a Vista machine, but I have an XP machine running in VmWare for testing.
    ...
Results 1 to 13 of 13





Click Here to Expand Forum to Full Width

Featured