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

Search:

Type: Posts; User: carl666

Page 1 of 5 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    2,160

    Re: Directly write to network printer

    See MSDN code sample to write raw data to printer .
  2. Replies
    8
    Views
    1,737

    Re: Can't get time off of the hiberfil.sys

    It won't help : hiberfil.sys is not updated when Windows hibernates...
  3. Replies
    32
    Views
    11,643

    Re: VC++ Database Connection

    And you didn' find that on MSDN ?!!!
    There are dozens of complete samples in MSDN (ODBC, ADO, etc) to connect to a database !!
  4. Re: How do I programmatically change Windows Themes in XP?

    Very bad 'article'...
    The registry don't absolutely need to be updated.
  5. Replies
    4
    Views
    1,562

    Re: How can I do Screen Recording ?

    Use journal hooks, see MSDN samples
  6. Thread: learn MFC

    by carl666
    Replies
    3
    Views
    865

    Re: learn MFC

    Posting your own site is rather stupid...
    (And it's complete BS)

    Read Prosise to learn MFC.
  7. Replies
    5
    Views
    9,868

    Re: how to get parent process information

    No.
    By programming.
    You enumerate the handles and close the one you want from the matching PID
  8. Re: To personalize the Menu of Heading and Menus to Appearance

    See the MSDN samples about owner-draw menus. C and C++ samples
  9. Re: Need Source Code / Article for understanding Hooks and How to Implement them

    Everything is in MSDN : complete article with the sample C application (main form + DLL) with all the hooks !
  10. Replies
    1
    Views
    581

    Re: Writing a windows service

    See MSDN services samples (SDK and doc)
  11. Re: How to get hdc and pixel from window with sendmessage?

    Because this article is wrong.
    You must use a hook (among others methods..) to get it from minimized windows..
  12. Replies
    6
    Views
    1,720

    Re: How to modify the width of a context menu ?

    Just get the window menu HWND and change its width
  13. Replies
    5
    Views
    1,298

    Re: Video Encoder in windows

    Just use MM apis. 15 minutes to do it (or 2 by copying SDK samples..)
  14. Thread: UI programming

    by carl666
    Replies
    3
    Views
    1,035

    Re: UI programming

    It's done with basic User, Shell and GDI apis.
    Nothing special (even 10 years old samples in MSDN CDs...)
  15. Replies
    6
    Views
    1,272

    Re: Hook a program? Possible?

    Read MSDN and Petzold about kbd input, and you'll do it yourself in 2 minutes, as it's a basic task...
  16. Replies
    6
    Views
    2,171

    Re: Is there pop3/smtp library for vs c++?

    You don't need any library.
    Everything is included inside win32 api (COM and Net)
  17. Replies
    2
    Views
    896

    Re: Detecting a usb key plugin

    It's a FAQ . You can ask on Win32 grp)
    for official code (used in Explorer source code...)
  18. Replies
    4
    Views
    3,477

    Re: Are any windows overlapping my window?

    Yes, it's a classic one (see on google groups, Win32 overlapping, same one than on 16-bits)
  19. Replies
    3
    Views
    9,294

    Re: RichEdit based Win32 example

    There are plenty of samples in MSDN...
  20. Replies
    14
    Views
    3,473

    Re: SendMessage to Excel

    SendMessage works perfectly by attaching the remote thread
  21. Replies
    2
    Views
    793

    Re: Disable DEL Key

    LL hook, see MSDN code (90's)
  22. Re: How can get occupied by CPU and Memory usage by my application?

    Type on 'Search' on MSDN or Google Groups : 0.35 seconds to find the C code...
  23. Replies
    3
    Views
    844

    Re: Making a toolbar

    ???
    You should start at least once the Win32 wizard...
  24. Thread: Win32 network

    by carl666
    Replies
    2
    Views
    959

    Re: Win32 network

    It's of course Init...
  25. Replies
    7
    Views
    1,862

    Re: Controls, problem with TAB key

    It's a FAQ on Win32 ng (since 1995...)
Results 1 to 25 of 122
Page 1 of 5 1 2 3 4





Click Here to Expand Forum to Full Width

Featured