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

Search:

Type: Posts; User: fblaha

Page 1 of 80 1 2 3 4

Search: Search took 0.49 seconds.

  1. HTML screensaver not working if user is not logged in

    I created simple screensaver using CHTMView class reading HTML file stored locally. Everything is fine with IE 6,7,8, 9 and 10 when user is logged in. If I set screen screensaver globally (ie....
  2. Replies
    1
    Views
    3,082

    LoadLibrary and FreeLibrary in DLL

    I have a small problem with LoadLibrary and FreeLibrary in my DLL. For compatibility reason with all WIN OS versions I'm not linking neccessary libraries, but I load them on very begining in...
  3. Another link

    Hi.
    I don't know, why MS removed links from MSDN. Here is the link to J.Richter article in MSJ named 'Custom Performance Monitoring for Your Windows NT Applications':
    ...
  4. Thread: Monitor info

    by fblaha
    Replies
    0
    Views
    612

    Monitor info

    I wasn't here for ~1 year and I need some help. What I need is information about current physicaly conected monitor to PC ( at least monitor model and manufacturer). Not from registry or some API...
  5. Thread: E-mail

    by fblaha
    Replies
    8
    Views
    1,654

    Re: E-mail

    Thanks a lot for your help.
  6. Thread: E-mail

    by fblaha
    Replies
    8
    Views
    1,654

    Re: E-mail

    Thanks,
    but I can't find in given example information how to read message. I know how to send message, attach file.... I need only read messages in Inbox folder. Some simple solution.

    Frank
  7. Thread: E-mail

    by fblaha
    Replies
    8
    Views
    1,654

    E-mail

    I need to read all messages in Inbox ( or Sent Items folder )in OUTLOOK. Is anybody who was working on the same problem before?

    I found a lot of examples, but there seems to me very complicated (...
  8. Replies
    9
    Views
    1,403

    Re: MAPI and openning the address book

    Unspecified error(E-FAIL) means NOTHING.

    Take a look to Task Manager if Mapisp32(MAPI spooler) process is running on your machine? Otherwise you can't open MAPI session. And take a look to MSDN...
  9. Replies
    9
    Views
    1,403

    Re: MAPI and openning the address book

    What is the hResult error code?

    I use in my program MAPI initialization like in the piece of code bellow. Is better to use pointers to function and get address using GetProcAddress()to avoid...
  10. Replies
    2
    Views
    945

    Re: Can I still use Dos interrupt???

    You can't call interrupts from WIN32 directly. INT is privilege instruction ( like direct I/O access using in,out instruction....etc) To simulate an interrupt under 9x take a look to VMMcall and VDD...
  11. Re: Urgent !! How many Drives present in a system

    To get information about logical drives you can use this piece of code.




    void GetDriveInfo()
    {
    char *szInfo,szName[80];
    char szCurrentDrive[MAX_PATH];
    UINT ...
  12. Thread: SDK downloads?

    by fblaha
    Replies
    1
    Views
    872

    Re: SDK downloads?

    You can downolad SDK here:

    http://www.microsoft.com/msdownload/platformsdk/psdkwebinst.asp
  13. Replies
    3
    Views
    781

    Re: CArray arguments

    The second parameter is used in some member functions like :CArray::Add or CArray::SetAt.

    It specifies the type used to reference objects stored in the array. This is the reason....
  14. Replies
    1
    Views
    597

    Re: Redestribution of MFC application

    Take a look here:

    http://msdn.microsoft.com/library/techart/redistribvc6.htm

    http://msdn.microsoft.com/library/devprods/vs6/visualc/vcmfc/_mfcnotes_tn033.htm
  15. Replies
    5
    Views
    671

    Re: Help a beginer understand COM

    Take a look to tutorial on MSDN :

    http://msdn.microsoft.com/workshop/components/com/tutorial/lessons.asp

    or on CODEPROJECT site:

    http://www.codeproject.com/atl/com_atl.asp

    Good luck
  16. Replies
    4
    Views
    1,083

    Re: open Excel sheet via VC++

    Take a look here:

    http://support.microsoft.com/support/kb/articles/Q186/1/22.ASP
  17. Thread: bitfield sizing

    by fblaha
    Replies
    2
    Views
    690

    Re: bitfield sizing

    Try:


    // REGISTER WORD LAYOUTS
    // Host To IF Register
    typedef struct { // Mode
    unsigned short reset_if : 1; // All
    unsigned short service_request : 1; // RT
    unsigned short subsystem_flag :...
  18. Replies
    1
    Views
    685

    Re: Port UNIX Applications to Windows

    Check these links:

    http://praun.home.cern.ch/praun/public/UNIX-to-NT/overview.html

    http://msdn.microsoft.com/library/devprods/vs6/visualc/vccore/_core_port_from_unix_to_win32.htm
  19. Re: How to get Low Level system details programatically ?

    1) Take a look to WMI. There is Win32_BIOS class and you can get some useful information. But it works on WIN2000 only.

    2) SMBIOS ( or DMI ) compliant machine.
    In this case all informations are...
  20. Replies
    1
    Views
    590

    Re: file extensions and icons

    Just change in HKEY_CLASSES_ROOT registry key location of the new icon assigned to "your" file extension.

    Take a look to shell extension:
    ...
  21. Replies
    1
    Views
    699

    Re: Help: Domain Name

    Take a look here:
    http://www.microsoft.com/technet/win95/reskit/part7/rk33_reg.asp

    In part named 'SYSTEM.INI Settings in the Registry' you can find required information.
  22. Replies
    1
    Views
    5,177

    Re: fatal error LNK1136: invalid or corrupt file

    Try this :

    /* Prevent inclusion of winsock.h in windows.h */
    #ifndef _WINSOCKAPI_
    #define _WINSOCKAPI_
    #endif
    #include <windows.h>

    and link ws2_32.lib. No winsock.lib. This library...
  23. Replies
    2
    Views
    615

    Re: link between excel and visual c++

    Take a look here:

    http://support.microsoft.com/support/kb/articles/Q186/1/22.ASP
  24. Replies
    1
    Views
    690

    Re: Scripting in VC++ app

    Take a look to this article and related links.

    http://support.microsoft.com/support/kb/articles/q221/9/92.asp

    I use in my app code based on this example wirhout any problems. It supports VB and...
  25. Replies
    6
    Views
    1,033

    Re: How can i use the Serial port in vc++?

    Take a look here:

    http://msdn.microsoft.com/library/techart/msdn_serial.htm

    For parallel port you can use the same method.
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured