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

Search:

Type: Posts; User: jluisrey

Search: Search took 0.09 seconds.

  1. Thread: VC10 vs VC6

    by jluisrey
    Replies
    2
    Views
    68,772

    VC10 vs VC6

    Hello Friends,

    Ok, I hope this version will help with and improved classwizard, with the vc6, I just need a couple of seconds to add a new event handler or dialog variable to me project, with...
  2. Avoid hang of the component manager with com+ console messages

    Hello Friends,

    I've a problem with some com+ components developed in vc++, and running on w2003 sp2, the problems is simple, when an error happend in the component (yes it can happend on best...
  3. Replies
    0
    Views
    712

    ATL HTML CONTROL BUG

    I had created an HTML control with new atl object, but it doesn't work, the problem is when I press any of the buttoms it thow an exception "object doesn't support this propierty or method"

    Thank...
  4. Replies
    7
    Views
    1,252

    Re: File Size with fstream

    Use


    m_file.seekg(0, ios_base::end);
    long nEnd = m_file.tellg();
  5. Replies
    0
    Views
    606

    Adding trusted sites to IE

    I have done a program that adds a trusted site to the IE registry entries, but I have two problems:

    1, I can't delete the entry in the IE options dialog.
    2, I can't add IP sites, the IE use the...
  6. Replies
    2
    Views
    737

    Re: How to delete a locked file

    The problem exactly is delete a file in a server when some clients may have it open.

    Thank you
  7. Replies
    2
    Views
    737

    How to delete a locked file

    Does anybody know how to delete a locked file in Windows NT ?

    Thank you
  8. The best way to RPC and Distributed programing

    I wan't to know if anyone with experience in this kind of implementations, may give me some sugestion for the election of the best implementation with VC++ (ATL, RawRPC, DCOM, Custom CORBA...
  9. Replies
    2
    Views
    491

    How to create a DC for drawing dibs

    (first, sorry for my poor English)
    I need to do a driver that allow's to make draw operations on a bitmap with any color planes through a DC. This Is, a Memory grafics interface,
    Any idea????...
Results 1 to 9 of 9





Click Here to Expand Forum to Full Width

Featured