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

Search:

Type: Posts; User: vatsa

Search: Search took 0.06 seconds.

  1. Replies
    3
    Views
    7,151

    Re: win registry function help

    Please go through the below link:
    http://stackoverflow.com/questions/34065/how-to-read-a-value-from-the-windows-registry

    cheers!!!
    vatsa
    www.objectiveprogramming.com
  2. Replies
    3
    Views
    703

    Re: detect application launch & file change

    Detecting application, you can do via named objects like mutex and all.
    Regarding file notification, please go through below link:...
  3. Replies
    3
    Views
    3,529

    Re: Need help in running a SLR parser program.

    are you able to run this prog or still looking for help

    cheers!!!
    Vatsa
    www.objectiveprogramming.com
  4. Thread: creating trigger

    by vatsa
    Replies
    1
    Views
    1,287

    Re: creating trigger

    write a update trigger on People table.
    apart from other syntaxes:
    insert into rich (name,houses) values (update.name,update,houses) where update.houses>10

    Let me know if it works for you.
    ...
  5. Replies
    6
    Views
    1,022

    Re: Iterating through vectors

    If you just want to print first n elements,just iterate from first to 3 using iterator.

    regards,
    Vatsa

    www.objectiveprogramming.com
  6. Replies
    6
    Views
    1,144

    Re: Converting integers into floats

    static_cast we generally use for this. Well there can be multiple choice to do this as suggested in earlier posts


    regards,
    Vatsa
    www.objectiveprogramming.com
  7. Thread: C+

    by vatsa
    Replies
    8
    Views
    1,742

    Re: C+

    Any book for C++ beginners can provide you such kind of glossary or visit the below link

    http://msdn.microsoft.com/en-us/library/3bstk3k5.aspx


    regards,
    vatsa
    www.objectiveprogramming.com
  8. Replies
    2
    Views
    1,417

    Re: Why such code sometimes don't work

    doesn't work means what?

    do you mean to say, sometimes it stuck in deadlock?


    regards,
    Vatsa
    www.objectiveprogramming.com
  9. Re: C++: I can't properly get the processing time for this program. Please help. cloc

    Sorry, I am replying without checking code. I would suggest use the systime to have the clock value of the system. In the end print the differences of start time and end time.

    regards,
    Vatsa...
  10. Replies
    0
    Views
    2,847

    Estimation for migration project

    I don't know whether it is right forum to asked this question. Can any of you tell me what could be the estimation to migrate a project from VC++ 6.0 to VC++ 9.0?

    There are around 135 classes and...
  11. Replies
    0
    Views
    599

    Calling a window service.

    Hi,

    Can someone please tell me how to call a window service created in VC++ 9.0 in VC++ 6.0 COM dll.

    I am designing this service as a database operation service. It will contain all database...
  12. Re: How do you start another process from a Window Service?

    It is not a reply, a question instead. In above discussion we are calling application from window service. can someone suggest me how to call window service from an application and use the methods...
  13. Replies
    1
    Views
    749

    Calling a COM dll from another COM dll

    Hi,

    Please suggest how to call a COM dll from another COM dll in VC++ 6.0?

    I have a requirement in which I have to call a COM dll built in VC++ 9.0 in another COM dll which is VC++ 6.0.
  14. Replies
    0
    Views
    552

    Calling a COM dll from another COM dll

    Hi,

    Please suggest how to call a COM dll from another COM dll in VC++ 6.0?

    I have a requirement in which I have to call a COM dll built in VC++ 9.0 in another COM dll which is VC++ 6.0.
  15. Thread: VC++ with AS/400

    by vatsa
    Replies
    4
    Views
    941

    Re: VC++ with AS/400

    Thanks
  16. Replies
    1
    Views
    816

    Microsoft Platform SDK

    Hi ,

    Do i need to Microsoft Platform SDK with Microsoft visual studio 6.0?

    If yes,Please provide me link.
  17. Replies
    3
    Views
    937

    Getting compilation error in VC++

    Hi All,

    I am using IBM client access toolkit with VC++ and i am getting error in the "cwb.h" file.

    typedef ULONG_PTR cwb_Handle;
    typedef cwb_Handle cwbSV_ErrHandle;

    in these lines i am...
  18. Thread: VC++ with AS/400

    by vatsa
    Replies
    4
    Views
    941

    Re: VC++ with AS/400

    the first two lines after header files.

    typedef ULONG_PTR cwb_Handle;
    typedef cwb_Handle cwbSV_ErrHandle;

    the error is undeclared indentifier cwb_Handle.

    While i have included all header...
  19. Thread: VC++ with AS/400

    by vatsa
    Replies
    4
    Views
    941

    VC++ with AS/400

    I am using IBM Client Access with Visual studio 6.0 (VC++) but when I try to compile the code I am getting compilation error in the following code:



    #include <basetsd.h>
    typedef ULONG_PTR...
Results 1 to 19 of 19





Click Here to Expand Forum to Full Width

Featured