Search:

Type: Posts; User: BobS0327

Page 1 of 20 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    6
    Views
    1,723

    @Anddos, You're email request for assistance has...

    @Anddos, You're email request for assistance has been acknowledged. Respond appropriately.
  2. DeleteDirectory...

    DeleteDirectory
  3. Replies
    3
    Views
    1,833

    Windows Media Player SDK...

    Windows Media Player SDK
  4. Replies
    10
    Views
    8,769

    First of all, you have to initialize winsock in...

    First of all, you have to initialize winsock in your client and server app...


    WSADATA wsaData;
    WORD wVersionRequested = MAKEWORD(1,1);
    int nRet;

    // Init WinSock
    nRet =...
  5. Intel example...

    Intel example
  6. Replies
    2
    Views
    2,821

    q is a WqlEventQuery Class...

    q is a WqlEventQuery Class

    Try changing this:


    q.Condition = @"TargetInstance ISA 'Win32_LogicalDisk' and TargetInstance.DriveType = 2"

    to this:
  7. Link with Winmm.lib

    Link with Winmm.lib
  8. Replies
    1
    Views
    1,382

    The ITaskSettings...

    The ITaskSettings interface has a StartWhenAvailable property that can address your issue.
  9. Thread: Help with F#

    by BobS0327
    Replies
    3
    Views
    1,386

    Download free Visual Studio 2010 Beta 2...

    Download free Visual Studio 2010 Beta 2 with F#.
  10. Thread: Help with F#

    by BobS0327
    Replies
    3
    Views
    1,386

    Download the Microsift Visual Studio 2008 Shell...

    Download the Microsift Visual Studio 2008 Shell. Then install the latest F# Community Technology preview from Microsoft F# Developer Center.
  11. Replies
    16
    Views
    16,726

    [EDIT] The reason you're receiving this incorrect...

    [EDIT] The reason you're receiving this incorrect parameter message is probably because you're using a very old compiler or your compiler is misconfigured. I'm using Visual Studio 2008 and I do NOT...
  12. Replies
    16
    Views
    16,726

    This may be a much simpler approach for XP and...

    This may be a much simpler approach for XP and up...


    #include <windows.h>
    #include <stdio.h>
    #include <tchar.h>

    int main(void)
    {
    typedef BOOL (WINAPI *LPFNIUA)(void);
  13. Replies
    16
    Views
    16,726

    It means that you are using a incorrect input...

    It means that you are using a incorrect input parameter. That is, TokenElevationType is the incorrect input parameter. After you determine the correct parameter, you'll have to call...
  14. Replies
    1
    Views
    2,784

    IMHO, WinBGI is a little dated. For starters,...

    IMHO, WinBGI is a little dated. For starters, you may want to take a look at this Win32 tutorial. It'll help you learn how to create "lean and mean" Win32 apps.
  15. Replies
    8
    Views
    3,150

    A solution has been submitted to your Win32...

    A solution has been submitted to your Win32 newsgroup post concerning this issue.
  16. Replies
    16
    Views
    16,726

    This is all you need for the above code: ...

    This is all you need for the above code:


    typedef enum _TOKEN_ELEVATION_TYPE {
    TokenElevationTypeDefault = 1,
    TokenElevationTypeFull,
    TokenElevationTypeLimited,
    }...
  17. Replies
    16
    Views
    16,726

    They're defined in ntifs.h which is found in the...

    They're defined in ntifs.h which is found in the Windows DDK version 6001.18001.
  18. Replies
    1
    Views
    7,121

    Error 24 is a ERROR_BAD_LENGTH. It usually means...

    Error 24 is a ERROR_BAD_LENGTH. It usually means that the call to GetPerformanceInfo cannot properly return all the information. Have you cleared and then initialized the structure prior to calling...
  19. Replies
    11
    Views
    7,234

    @TAZIN If you're still struggling with this...

    @TAZIN
    If you're still struggling with this issue, I would suggest you post in the Win32 newsgroups. To quote Alex31, this has been discussed many times in the newsgroups. But anyway, a solution...
  20. Replies
    5
    Views
    4,825

    @tmpexpert, First let me say that I'm a...

    @tmpexpert,

    First let me say that I'm a hardware challenged code jockey. With that said, how would I determine that an XP box is tpm capable other than opening up the box and inspecting the...
  21. Replies
    3
    Views
    2,785

    Actually, 2 obvious bugs in 59 lines of code.

    Actually, 2 obvious bugs in 59 lines of code.
  22. Replies
    3
    Views
    2,785

    #pragma comment(lib, "advapi32.lib") #include...

    #pragma comment(lib, "advapi32.lib")
    #include <windows.h>
    #include <stdio.h>

    VOID DumpBuffer(const unsigned char* pBuffer, size_t sz)
    {
    for (size_t i = 0; i < sz; ++i)
    ...
  23. #pragma comment(lib, "user32.lib") #include...

    #pragma comment(lib, "user32.lib")
    #include <iostream>
    #include <windows.h>
    using namespace std;

    int main(void)
    {
    int cx = GetSystemMetrics(SM_CXSCREEN);
    /*int cy =...
  24. Replies
    5
    Views
    4,825

    I wasn't aware that MS provided TPM services on...

    I wasn't aware that MS provided TPM services on XP. Is it possible that you're confusing the Encrypting File Services found on both XP and Vista with TPM? Vista provides an additional layer of...
  25. Replies
    7
    Views
    7,622

    GetWindowRect and SystemParameters info only give...

    GetWindowRect and SystemParameters info only give the dimensions of the primary display. If you wish to center the window on the secondary display or possibly split the window up between the primary...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4