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

Search:

Type: Posts; User: Ray88

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,028

    Re: Print to File - FileName

    Thanks for your reply. But I have done too much formatting and other things using the "Generic / Text only" print option. Too many classes already in place, It will be a big change for me to...
  2. Replies
    5
    Views
    1,028

    Re: Print to File - FileName

    I have the same need. Does anybody know? Thanks.

    -Richard
  3. Replies
    2
    Views
    572

    Did you try to delete the .ncb and .opt files? ...

    Did you try to delete the .ncb and .opt files?


    -Ray
  4. Replies
    2
    Views
    603

    I think you may have other BeginWaitCursor()...

    I think you may have other BeginWaitCursor() still going on. To test it add another EndWaitCursor, see if it resolve the issue.

    Regards,

    Ray
  5. Thread: help ?

    by Ray88
    Replies
    4
    Views
    680

    Take a look at the following link for the...

    Take a look at the following link for the hierarchy chart

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html/_mfc_hierarchy_chart.asp


    -Ray
  6. Any Ideas? Thanks.

    Any Ideas? Thanks.
  7. Replies
    3
    Views
    1,064

    Try to make pFont a data member or global...

    Try to make pFont a data member or global variable. The pFont in your case will go out of scope, that might be your problem.

    -Ray
  8. Replies
    4
    Views
    692

    Most of the times it is because of the .ncb and...

    Most of the times it is because of the .ncb and .opt file, I would close the workspace, delete both. When you open the workspace again, Visual Studio will create new .ncb and .opt file for you....
  9. Replies
    10
    Views
    7,174

    What do you mean when you say "it was the same...

    What do you mean when you say "it was the same when I debugged it in Visual C++(6.0) environment". If The access Violation happened in debug mode, you can pinpoint exactly what goes wrong. If it...
  10. Thread: Radio Buttons...

    by Ray88
    Replies
    2
    Views
    637

    You may need rebuild you classWizard by delete...

    You may need rebuild you classWizard by delete the *.clw file, then when prompt rebuilt it.

    Normally, you should have a member variable mapped to the radio button control. However I think for each...
  11. You can very easily reproduce this by use MFC...

    You can very easily reproduce this by use MFC AppWizard to create either a MDI or SDI app, chose CFormView as base class. Then place a Edit box on the form. Build it on NT, then run it both on NT...
  12. Thanks for the reply. But it is not the screen...

    Thanks for the reply.

    But it is not the screen Resolution (I am using the same screen resolution); It is not the font either.

    Any other ideas?

    Thanks,

    Ray
  13. NT, 2000, XP GUI different from each other for the same Exe

    This is very annoying problem for me. I build a MDI app on NT, when I run it on 2000 and XP, the GUI is different in size. For example, I have a edit box which occupied almost the whole screen on...
  14. Replies
    3
    Views
    4,106

    Using MFC, at design time you can just uncheck...

    Using MFC, at design time you can just uncheck the "Tab Stop" check box
  15. Replies
    4
    Views
    7,109

    Here is some info from MSDN: STARTUPINFO...

    Here is some info from MSDN:

    STARTUPINFO si;
    PROCESS_INFORMATION pi;

    ZeroMemory( &si, sizeof(si) );
    si.cb = sizeof(si);
    ZeroMemory( &pi, sizeof(pi) );

    // Start the...
  16. Replies
    9
    Views
    1,473

    Are you sure mpeg_dlg is properly initiated? If...

    Are you sure mpeg_dlg is properly initiated? If not, that is your problem.

    -Ray
  17. Replies
    9
    Views
    1,129

    OK. Go with mwilliamson's solution

    OK. Go with mwilliamson's solution
  18. Replies
    9
    Views
    1,129

    I think one way to do it is that convert the...

    I think one way to do it is that convert the number to string then apply a mask to it.

    Or convert the number to char[], then manually add "," to the needed position.

    For example, if you have...
  19. Replies
    6
    Views
    844

    I do not understand what is the issue here. You...

    I do not understand what is the issue here. You pass two int, you calculate, if the result not in INT_MIN and INT_MAX return FALSE, otherwise return TRUE and populate that result reference.

    It...
  20. Replies
    5
    Views
    756

    Try COleDateTime

    Try COleDateTime
  21. Thread: CTime problem

    by Ray88
    Replies
    2
    Views
    657

    CTime is fine. You must modified the CTime...

    CTime is fine. You must modified the CTime somehow.

    -Ray
  22. Replies
    4
    Views
    1,121

    For Dialog there are some extra work, try the...

    For Dialog there are some extra work, try the following:
    How to display tooltips for a toolbar in a dialog
    This article was contributed by Randy More.

    It is relatively easy to place a toolbar...
  23. Replies
    3
    Views
    522

    The default behavior is that use TAB to tab...

    The default behavior is that use TAB to tab through the controls, use SPACE to click the focused control, use ENTER to click the "Default Button".

    -Ray
  24. Thread: HTML View

    by Ray88
    Replies
    1
    Views
    571

    You can use CHtmlView -Ray

    You can use CHtmlView

    -Ray
  25. Replies
    4
    Views
    879

    I would guess you only get this from release...

    I would guess you only get this from release version. You can turn debug on for the release version, then debug to see where it occurs.

    There are a lot post on this forum talking about how to turn...
Results 1 to 25 of 27
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured