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

Search:

Type: Posts; User: robertpantangco

Page 1 of 6 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    5
    Views
    1,607

    Re: OpenWith Application

    Igor,

    Thanks. Glad we helped each other out! :)

    Robert
  2. Replies
    5
    Views
    1,607

    Re: OpenWith Application

    Igor,

    I'll do the ProcessMonitor to find out exactly what's going on.

    In the meantime, I just found out that Windows does not allow the same executable filename for association with an...
  3. Replies
    5
    Views
    1,607

    OpenWith Application

    Hello,
    I have a weird problem trying to associate an extension with my application.

    I am using visual studio 2008 and a custom document manager derived from CDocManager in order to support...
  4. Re: Writing to HKLM registry in Windows 7

    Read the full thread!
  5. Re: Writing to HKLM registry in Windows 7

    Hello,
    Thanks for the advice. Looks like this could be a simple elegant solution.

    But I can't seem to get it to work. I am getting "Access Denied" messages when trying to set permissions to the...
  6. Re: Writing to HKLM registry in Windows 7

    My application needs to write a single file that can be accessed by all users but modify rights only granted to the network administrator AFTER the software has been installed.

    I can't put the...
  7. Writing to HKLM registry in Windows 7

    When I write to the Windows 7 Registry at HKEY_LOCAL_MACHINE, I get a return code of 5 which is the "access denied" message when I execute RegCreateKeyEx.

    This happens even if the User has...
  8. Replies
    2
    Views
    1,220

    How to show File menu

    Hello,
    I have an MDI application using different menus depending on the current document template in use.

    I need to show the top-level File Menu from the IDR_MAINFRAME window when a command is...
  9. Re: Windows Explorer -Libraries - Documents - New

    Thank you..
  10. Re: Windows Explorer -Libraries - Documents - New

    Hello,
    thanks for the reply.

    I don't really want to disable the shell print and open because they are quite useful.

    I looked at the docmgr.cpp where the RegisterShellFileTypes function is.
    ...
  11. Windows Explorer -Libraries - Documents - New

    Hello,

    I have an application that Opens files with different extensions for viewing purposes only

    I use MFC with Multi-Document template.

    When I go to Windows Explorer in Windows 7 and...
  12. Replies
    0
    Views
    797

    Window Menu - active documents

    Hello,

    I have a strange problem. Whenever I open the first document in my MDI application, it is listed as #2 on the Window menu list of open documents. The next one appears as #3 and so on.
    ...
  13. Replies
    10
    Views
    1,717

    Re: slow down timing between keypresses

    To Marc G,
    LB_FINDSTRING might help.

    I am also thinking of including a "wait" or "sleep" after each OnKeyDown.
  14. Replies
    10
    Views
    1,717

    Re: slow down timing between keypresses

    To Paul,
    When you type in the next letter after the pause, the selection jumps to the first occurence of that letter in the list.

    In essence, you move out of the position you were able to narrow...
  15. Replies
    10
    Views
    1,717

    Re: slow down timing between keypresses

    Paul,
    As Marc said, this is standard Windows behavior which I do not want to change. I just want to slow down the timeout so that those who cannot type fast enough can still select the file they...
  16. Replies
    10
    Views
    1,717

    Re: slow down timing between keypresses

    Paul,

    Let us for example assume your list box is active and contains the following entries (just as if you are in Windows Explorer):

    Advertising.txt
    Building.txt
    Butterfly.txt
    Dairyfarm.txt...
  17. Replies
    10
    Views
    1,717

    slow down timing between keypresses

    Is there anyway to slow down the timing between keypresses in a ListBox ?I am using VC++ 2008?

    I am referring to the autofind feature where a file is selected based on the keys pressed on the...
  18. Replies
    0
    Views
    402

    MDI client window gets minimized

    problem solved; my programming error
  19. Replies
    3
    Views
    931

    UpdateData() default

    Hello,
    I am trying to debug someone else's code which calls UpdateData() without specifying whether the flag BOOL bSaveAndValidate is TRUE or FALSE.

    What is the default value of this flag?

    Is...
  20. Replies
    4
    Views
    851

    Re: RUN_TIME view classes

    Victor,
    Thank you for the tip on CObject::IsKindOf()

    It works great for determining the run-time class of a window.

    Robert
  21. Replies
    4
    Views
    851

    Re: RUN_TIME view classes

    I need sample code to refer to CObject for the enumerated window.
  22. Replies
    4
    Views
    851

    RUN_TIME view classes

    Hello,

    My MDI application consists of multiple runtime view classes. I use MFC.

    For example,
    RUNTIME_CLASS(CView1)
    RUNTIME_CLASS(CView2), etc.

    I am using EnumChildWindows to enumerate all...
  23. Replies
    10
    Views
    3,444

    Re: maximum pdb file size

    To Victor,

    I think we have a classic example of failure to communicate here.

    A simple Yes or No answer would have been sufficient for me as in "itsmeannobodyelse" reply and to whom I have paid...
  24. Replies
    10
    Views
    3,444

    Re: maximum pdb file size

    thanks
  25. Replies
    10
    Views
    3,444

    Re: maximum pdb file size

    Victor,
    It is a little difficult to describe the crash.

    Can I just go back to the original question without any reference to the application or Visual Studio crashing?

    Simply,
    "Is there a...
Results 1 to 25 of 133
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured