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

Search:

Type: Posts; User: NasterMain

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    3,704

    Re: DLL modeless dialog & QT big big problem

    Sorry for answering so late but I had some more problems.

    I solved this way: I created a thread in the main QT application and loaded the mfc library with the main window as modal.

    Modeless...
  2. Replies
    10
    Views
    3,704

    Re: DLL modeless dialog & QT big big problem

    Can you better explain what does this mean please?
  3. Replies
    10
    Views
    3,704

    Re: DLL modeless dialog & QT big big problem

    I think you can't help me without knowing QTs, however QT is a developer framework to design GUIs. It is cross-platform so you can have the same gui-feel on every os.
  4. Replies
    10
    Views
    3,704

    DLL modeless dialog & QT big big problem

    Hi all,

    My application uses QT to render its interface but I recently encountered a big problem: my application loads a modeless dialog from an external mfc dll; because of mfc architecture...
  5. Hide or prevent the use of the popup menu on the title bar

    Hi guys, does someone know how to hide or prevent the use of the popup menu that come up when the user click a dialog title icon?

    I am searching for a way to do that, for better understanding my...
  6. [??] Controls overwhelm child with wndTopMost

    Hi gurus,

    Simple problem (simple to explain.. don't know how to solve :P):
    two child windows inside a parent, one normal, one with wndTopMost set

    When I pass the mouse over the normal child's...
  7. Re: Calling cdialog function from a subclassed control

    Thanks so much to everyone, problem solved.

    This inclusion system is called: "Forward Declarations" and lets two classes perform a "reciprocal inclusion"

    Notice that the pointer to...
  8. Re: Calling cdialog function from a subclassed control

    Here are the two include files:

    -------------------------------- TabClass.h-------------------------

    #pragma once

    // CTabClass

    class CPropListBoxDlg; <- THIS SHOULD TELL THE COMPILER A...
  9. Re: Calling cdialog function from a subclassed control

    I searched a little and I found I am trying to include B.h into A.h and A.h into B.h and this is not possible, this mechanism seems to be called "Header Guard"

    Using the #define symbols should...
  10. Re: Calling cdialog function from a subclassed control

    No success, same errors :(
  11. Re: Calling cdialog function from a subclassed control

    the .h file of the control subclassed from CTabCtrl
    And the error of IDD_MY_DIALOG undefined (that is NOT true, if i remove that include the compiling process goes okay) from the .h file of...
  12. Re: Calling cdialog function from a subclassed control

    Here's an example of what I am trying to do:

    #include "MyDialog.h" <- only including this causes me to have a LOT of weird errors
    #pragma once

    // CTabClass

    class CTabClass : public CTabCtrl...
  13. [SOLVED] Calling cdialog function from a subclassed control

    I am not very pratical with classes interaction and I would like to know why if I declare a CDialog member variable into my subclassed control's class, visual studio gives weird errors like error...
  14. Re: (suggestion) The best way to create a properties list

    Thanks very much Marc, I think i've found a solution :D
  15. (suggestion) The best way to create a properties list

    I have not an error this time, but I need a suggestion

    I need to create a properties list, each with a combo box or an edit box besides its description label, as the form properties in visual...
  16. Replies
    5
    Views
    8,727

    Re: Adding a CWnd child window

    You're both right, the CWnd value of pParent was right, but pParent->m_hWnd was null (i was calling the child creation before the parent was created) and there was the WS_DLGFRAME style

    Thanks...
  17. Replies
    5
    Views
    8,727

    Re: Adding a CWnd child window

    uh?

    First member is extended style, and pParent->m_hWnd is a valid handle to parent
  18. Replies
    5
    Views
    8,727

    [Solved]Adding a CWnd child window

    Hi all

    I am a newbie with CWnd classes and I would like to know how I can implement a little child window inside another one using the CWnd class (I don't want the resource template)

    I created...
  19. Re: Strange - ON_BN_CLICKED Event gets caught in loop

    You dismiss the modal dialog and the execution continues.. right..

    but CheckRadioButton sends a BM_SETCHECK for the item you want to be checked, right?

    So every time you call it you are...
  20. Re: CStatic-Derived class won't paint background

    Thanks! :D
  21. CStatic-Derived class won't paint background

    Last post wasn't clear enough.

    I need to paint the background of a CStatic control created dynamically this way:

    -----------Code Snippet:------------------

    CUnknownCtrl* pUnknown;
    ...
  22. Thread: installer

    by NasterMain
    Replies
    2
    Views
    633

    Re: installer

    Maybe you cannot debug it because it is packed?

    An Exe-packer (like upx, execryptor or similar) is usually used to reduce exe's size and to prevent it from disassembling

    If you wanna continue...
  23. Subclassed Dynamical control won't show

    Here we are again with my stupid questions.. but I searched google, I searched this forum and could not find a solution.

    I usually am able to use controls subclassing, but this time I can't get it...
  24. Replies
    8
    Views
    1,156

    Re: Getting mad showing a template!

    That's the font height. Not the average height. And i need the avg width too. And I need then to call a MapDialogRect to size a rect properly.
  25. Replies
    8
    Views
    1,156

    Re: Getting mad showing a template!

    I didn't post the solution because imho is an horrible solution and sincerely I think someone more skilled could do better.

    But if someone wanna get it work without care of the method, you're...
Results 1 to 25 of 53
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured