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

Search:

Type: Posts; User: muthuis

Page 1 of 7 1 2 3 4

Search: Search took 0.12 seconds.

  1. Replies
    5
    Views
    7,708

    Try doing a strData.Getcount() and check if it...

    Try doing a strData.Getcount() and check if it returns 0. It might probably have space characters.

    Just check out to make sure..
  2. Thread: time

    by muthuis
    Replies
    2
    Views
    556

    Try using this.. _strdate( dateStr);...

    Try using this..

    _strdate( dateStr);
    printf( "The current date is %s \n", dateStr);
    _strtime( timeStr );
    printf( "The current time is %s \n", timeStr);
  3. Replies
    4
    Views
    913

    The following may be useful. In case you...

    The following may be useful.

    In case you encounter errors..

    You might want to close all the waiting threads
    Set the service status to service stop pending
    do any other cleanup
    then return
  4. Thread: Tool tips

    by muthuis
    Replies
    5
    Views
    716

    Your code works for me.. Can u say what is the...

    Your code works for me..

    Can u say what is the exact problem?? Does the application hang??
  5. Extern variables would work fine. A other way...

    Extern variables would work fine.

    A other way could be some thing like this.

    Create a member variable for the data inside your child dialog class
    add a member function with a parameter of...
  6. Thread: Tool tips

    by muthuis
    Replies
    5
    Views
    716

    Can u post the code here? Then only some one will...

    Can u post the code here? Then only some one will be able to find what is wrong with the code..

    If you need a simple explanation with source code check this url ctooltipctrl.
  7. Replies
    3
    Views
    1,247

    1. Do you have the header file?? 2....

    1. Do you have the header file??




    2. Did u try Project Settings --> Link --> Object/Library modules -->yourdll.dll?
  8. Replies
    2
    Views
    624

    I agree with CPUWizard completely. Though it...

    I agree with CPUWizard completely. Though it comes closer, there are lots of draw backs.


    Though activex fills the void in Microsoft tools, it is widely accepted every one
    Applets have the...
  9. Replies
    11
    Views
    1,281

    Your modeless dialog code does not seem to have...

    Your modeless dialog code does not seem to have any problem. Are there any other dependencies to this code?
  10. Replies
    2
    Views
    1,018

    Check if you have called WSAStartup()...

    Check if you have called

    WSAStartup() function. This is required before calling any socket function.
  11. Replies
    9
    Views
    1,449

    try this one...

    try this one


    Muthu
  12. Thread: Cfile::Read

    by muthuis
    Replies
    3
    Views
    661

    I am not sure if I have understood u correctly....

    I am not sure if I have understood u correctly. But still, why don't you try reading into a buffer first and then try doing what u want??
  13. Replies
    4
    Views
    853

    Codeguru has a lot of articles on sockets. If you...

    Codeguru has a lot of articles on sockets. If you want some some more, check out this linkSocket Programming
  14. This error occurs because mfc library is not...

    This error occurs because mfc library is not linked in ur program.

    Do the following
    1. Press ALT + F7
    2. Go to General tab
    3. Select the use mfc as shared library

    You can checkout the...
  15. Thread: Resource IDS

    by muthuis
    Replies
    3
    Views
    587

    Other option is you can even open the script1.rc...

    Other option is you can even open the script1.rc file in text mode(notepad) and edit the resources there itself.
  16. Replies
    11
    Views
    2,428

    U can probably take a look at this MSDN sample. ...

    U can probably take a look at this MSDN sample.


    void CMyAsyncSocket::OnReceive(int nErrorCode) // CMyAsyncSocket is
    // derived from CAsyncSocket
    {
    static int i=0;

    i++;
  17. Replies
    2
    Views
    708

    Hi Tomesco, Try using the PR_DISPLAY_NAME tag....

    Hi Tomesco,
    Try using the PR_DISPLAY_NAME tag.

    I am not sure if you should use GerHierarchyTable. I think U'll be better off using HrFindGlobalAddress..

    Thanks
  18. This is possible. I've implemented this in win32...

    This is possible. I've implemented this in win32 dll though.

    My program keeps some 5-6 dlls loaded and reads some configuration details from an XML file. This configuration is read when the dll is...
  19. Replies
    7
    Views
    1,009

    The following linke might be useful. ...

    The following linke might be useful.
    http://www.codersource.net/win32_dlls.html

    check this out.
  20. There is an article abt loading the dlls...

    There is an article abt loading the dlls dynamically. Check this out, if u find it useful.
    http://www.codersource.net/win32_dlls.html

    Thanks
    Muthu
  21. Replies
    30
    Views
    4,955

    Check this link ...

    Check this link

    http://www.codersource.net/win32_registryoperations.html


    Muthu
  22. Replies
    6
    Views
    3,698

    std::string trim

    Is there any function which can trim a std::string? ltrim or rtrim or both?
  23. Replies
    3
    Views
    634

    No CDO does not help in this. I have to set a...

    No CDO does not help in this. I have to set a property called age limit on a public folder. I've also tried MAPI. but no use.
  24. Replies
    3
    Views
    634

    Exchange server

    I am trying in vain for quite sometime to find out, how to set the properties of Exchange public folders(thru a program). Is there anybody who can throw some light on this?

    Muthu
  25. Replies
    1
    Views
    669

    Anybody can help on the above MAPI/ MS-Exchange...

    Anybody can help on the above MAPI/ MS-Exchange stuff?
Results 1 to 25 of 158
Page 1 of 7 1 2 3 4





Click Here to Expand Forum to Full Width

Featured