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

Search:

Type: Posts; User: mkbs

Page 1 of 3 1 2 3

Search: Search took 0.07 seconds.

  1. Replies
    11
    Views
    3,651

    Re: MFC ComboBox on Modeless Dialog

    Hi VictorN,
    I don't know if I do much noise about nothing,but I'll try to explain well.

    With DialogBox I can create the owner .h and .cpp and change the declaration of CComboBox into...
  2. Replies
    11
    Views
    3,651

    Re: MFC ComboBox on Modeless Dialog

    I suspect that it was not clear....the dialog was a CDialogBar class not a CDialogBox.
    With CDialogBox I make the same step that you explained, but with CDialogBar ?


    mkbs
  3. Replies
    11
    Views
    3,651

    Re: MFC ComboBox on Modeless Dialog

    Could you explain me how I have to do that ?
    Many Thanks GCDEF

    mkbs
  4. Replies
    11
    Views
    3,651

    Re: MFC ComboBox on Modeless Dialog

    Hi VictorN,
    about your answer :



    I haven't created combo box, because is yet into the dialog named "IDD_TEXT_PROPERTY" and with the command "create" I have created a istance of it, but with...
  5. Replies
    11
    Views
    3,651

    MFC ComboBox on Modeless Dialog

    Hi to all,
    how I can modify a combo box on a modeless dialog ?
    Now I try to explain well....
    I have a dialog box with some combo inside and use the code :

    ...
  6. Replies
    1
    Views
    611

    HTML Help context number

    Hi to all,
    I have a little problem :
    I have create my Help file with HelpMaker and after compiled, HM generate a .h file with context number definition.
    But now....how I can use it on my VisualC...
  7. Replies
    2
    Views
    787

    Re: Question about brush hatch

    I'll try bitmap hatch....

    Many tanks cilu !

    mkbs
  8. Replies
    2
    Views
    787

    Question about brush hatch

    Hi to all,
    is possible to define a different size and a different distance from hatch line.
    into the CBrush Constructs I didn't see this parameter.

    e.g.
    hatch style of the brush : HS_VERTICAL
    ...
  9. Replies
    2
    Views
    621

    Firewall warning !!

    Hi to all,
    I have a strange problem.
    Sometimes when I run my program (built with VC++ 2003) the firewall
    wake up and say...this program try to connect to internet to address 239.255........
    BUT...
  10. Replies
    2
    Views
    699

    Re: set file extension to my application

    Mant Tanks Victor !!!!! :-)

    mkbs
  11. Replies
    2
    Views
    699

    set file extension to my application

    Hi to all,
    how I set on Windows the file extension, so when the user dclik on myproject.xxx
    file, the system open it with my program ?
    I tried to search this on the form but I didn't found...
  12. Replies
    1
    Views
    2,775

    Summary about SortChildrenCB

    Hi to all,
    this is a little summary about SortChildrenCB.
    I met sorting problems with it but with the GURU guys I had resolved them...

    The example on MS help don't work well



    // Sort the...
  13. Replies
    9
    Views
    1,441

    Re: PostMessage between mview and dialog

    Hi zerver,Arjay and Ajay Vijay,
    sometimes the simple thinks are the best !!!

    I have rewrite the code and now works well !!

    I have done like you said.....I have created a method on doc/view...
  14. Replies
    9
    Views
    1,441

    Re: PostMessage between mview and dialog

    Many tanks guys!!

    I have used Sendmessage !!!!

    mkbs :-)
  15. Replies
    9
    Views
    1,441

    Re: PostMessage between mview and dialog

    Hi,
    I try to explain better...

    on Dialog I have put:

    extern CDocApp myApp;

    on a Button I have placed...
    myApp.mview->PostMessage(WM_USER_DELETE,WM_BY_INDEX, 0);
  16. Replies
    9
    Views
    1,441

    Re: PostMessage between mview and dialog

    Hi zerver,
    is the view on Document/View architecture...and
    means that I can't "comunicate" from my Doc/view and my open modal dialog
    e.g. update the dialog form, when finish a procedure...

    mkbs
  17. Replies
    9
    Views
    1,441

    PostMessage between mview and dialog

    Hi guys,
    I needs an help with PostMessage from mview and a modal dialog box.
    From Dialod box to mview I use :

    extern CDocApp myApp;
    ...
    ...
  18. Replies
    7
    Views
    1,203

    Re: Debug Watch Value Problem

    Hi S_M_A and cilu,

    you are RIGHT !!!!!!!!

    I have tried to put a 10 (decimal) and the debug show 0x000000a
    and this is an HEX !!!

    For a while....I have lose my mind.....

    Now I have reset...
  19. Replies
    7
    Views
    1,203

    Re: Debug Watch Value Problem

    Hi SMA
    e.g. the quickWatch show:

    name value Type
    m_x 0x0026c1e0 int

    I think is an address,isn't it ??

    mkbs
  20. Replies
    7
    Views
    1,203

    Debug Watch Value Problem

    Hi to all,
    I don't know why...but now my VC.net 2003 (sp1) show on debug, no more variable value but his address !!
    What I have to do to solve the problem ??

    Tanks.... :-)

    mkbs
  21. Replies
    6
    Views
    959

    Re: Check type of class on a list

    my program is a very simple cad view and the class are: e.g. text,shape,block... not with the same base class.
    I know what the user select and the list is a class selection:
    list
    class shape...
  22. Replies
    6
    Views
    959

    Check type of class on a list

    Hi to all,
    I need to store on a list several different pointer objects
    (not derived or cast)
    e.g.
    obj1 | classA*
    obj2 | classB*
    obj3 | classC*
    obj4 | classA*
    obj5 | classC*
    ...
  23. Replies
    3
    Views
    1,911

    Re: How to use Tab Control in vc++

    on VC++ is not so easy to handle Tabs so is better to see some classes
    for exemple on http://www.codeproject.com/
    Some of them use different dialog them join together or assign into a single...
  24. Thread: thread and Dialog

    by mkbs
    Replies
    3
    Views
    681

    Re: thread and Dialog

    Hi cilu,
    many tank 4 the fast answer,so you means that I have to start my process "inside" the dialog form ,but when the process end, how the thread close the dialog ??
    :-)
    mkbs
  25. Thread: thread and Dialog

    by mkbs
    Replies
    3
    Views
    681

    thread and Dialog

    Hi to all,
    I have a question for you:
    in my project I have a very long process and I have inserted
    a AfxBeginThread thread to monitoring if the user want to stop (eg. with Esc key),then I have...
Results 1 to 25 of 63
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured