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

Search:

Type: Posts; User: mctpursuer

Search: Search took 0.07 seconds.

  1. Examples of using Crystal Report Component in VC++.

    Can you give me some examples of using Crystal Report Component in VC++. Thanks a lot!!!
  2. Using Crystal Report Component in VC program.

    Can you tell me the appropriate occasions of using Crystal Report Component in VC program? And would you please give a sample program?
    Thanks a lot!!!
  3. What is the most simple and easy to implement method to manipulate Database under VC?

    What is the most simple and easy to implement method to manipulate Database under VC++6.0? (ODBC, DAO, ADO?)
    And if I choose to use ADO, does it mean I have to study COM first?
    Thanks!
  4. Thank you, I found it on MSDN 2003

    But I am wondering whether we can use ConvertSidToStringSid in Visual Studio 6.0 just by copy the needed Sddl.h and Advapi32.lib from Visual Studio .NET?
    After "#define _WIN32_WINNT 0x0500" and...
  5. How can I display the SID(Security Identifier)?

    By make a call to LookupAccountName, I can get a SID in buffer, but I don't know the exact structure of SID, so I can not display it properly. Would you please give me some help? Thanks a lot!
  6. How to communicate with other windows inside IIS Filter (ISAPI)

    During write IIS Filter, I want to find and send message to other windows, but I find the ::FindWindow and ::PostMessage seems does work inside IIS Filter codes. I think maybe they work in different...
  7. I need a method to check yahoo mail from vc application.

    I wish you can give me some suggestions. Thanks a lot!!!
  8. "Software is like sex, it's better when it's...

    "Software is like sex, it's better when it's free." - Linus Torvalds

    Does the "father of Linux" really say like this?
  9. Mike, Thank you very much!

    Mike, Thank you very much!
  10. Replies
    6
    Views
    921

    PROCESSENTRY32 + ExtractIconEx also not effective...

    PROCESSENTRY32 + ExtractIconEx also not effective all the time, since one process can open multiple windows at the same time.
    I really want to know how can Task Manager -- taskmgr.exe in windows...
  11. Replies
    6
    Views
    921

    But ::SendMessage(hWnd, WM_GETICON, ...) doesn't...

    But ::SendMessage(hWnd, WM_GETICON, ...) doesn't work with every window. I still wonder how can taskmgr.exe retrieve the correct icons from the open windows.
  12. store and retrieve .bmp using sql server 2000 and vc++ 6.0

    Would you please tell me how to store, retrieve and display .bmp file using sql server 2000 and vc++ 6.0?
    Thanks a lot!!!
  13. I need your suggestions of building a network scan tool.

    Hi, I'd like to build a network scan tool, which can find out active hosts on the network, their IP addresses, TCP ports etc. But I am not sure how to implement the "ping" functionality, should I...
  14. Replies
    6
    Views
    921

    Thank you very much! But I want to grab the...

    Thank you very much! But I want to grab the window's handle on the fly and display it, just like that in taskmgr.exe. I hope you can give me more info and help! Best regards!
  15. Replies
    6
    Views
    921

    Get Icon from other application.

    HICON LoadIcon(
    HINSTANCE hInstance, // handle to application instance
    LPCTSTR lpIconName // icon-name string or icon resource
    // identifier
    );

    Hi, I want to use...
  16. Does that mean it's impossible to retrieve the...

    Does that mean it's impossible to retrieve the window's handle if I just provide you a process id?
    Thank you!
  17. How can I get the window handle from process id?

    By using CreateProcess, I can invoke a new application, and get the process id for the newly created process, but how can I get the handle of the application's main window?
    Thanks!!!
  18. Replies
    7
    Views
    999

    I have tried the method you mentioned, but the...

    I have tried the method you mentioned, but the color remain unchanged. What's the matter?
  19. Replies
    7
    Views
    999

    Why the text color doesn't change?

    switch(message){
    case WM_PAINT:
    hdc = BeginPaint(hwnd, &ps);
    crOld = SetTextColor(hdc, (COLORREF)0x000000FF);
    if(crOld == CLR_INVALID) MessageBox(hwnd, "SetTextColor", "Error", MB_OK);...
Results 1 to 19 of 19





Click Here to Expand Forum to Full Width

Featured