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

Search:

Type: Posts; User: clodagho

Page 1 of 9 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    8
    Views
    738

    Re: Importing resources?

    Thank you.
    That's odd why they made it so awkward!
  2. Replies
    8
    Views
    738

    Re: Importing resources?

    Yes that's it!
  3. Replies
    8
    Views
    738

    Re: Importing resources?

    That makes sense.
    I wish you could copy & paste resources between projects though.
    It's still messy!
  4. Replies
    8
    Views
    738

    Importing resources?

    Hi All,

    Is there a straightforward way in .NET Studio to import a dialog from another .vcproj?

    Or is it easier to just create the dialog again?

    Thanks.
  5. Re: Converting from VC 6.0 - problems calling CWnd::OnInitDialog / UpdateData

    You're right Viggy, I had added a component to the dialog resource.
    If I delete that it runs again. :confused:
    I had added the resource correctly so don't know how it caused an exception!
  6. Converting from VC 6.0 - problems calling CWnd::OnInitDialog / UpdateData

    Hi All,

    I have an App which used to work fine in VC+++ 6.0.
    I have ported it to .NET visual studio and I am testing it all now.
    I have an exception being triggered by this



    BOOL...
  7. Replies
    3
    Views
    923

    CComboBox crash :(

    Hi All,

    I have a CPropertyPage with 2 CComboBoxs on it.
    The contents of which are defined in the 'data' properties member in Resources.

    However when I load the Page and try to perform any...
  8. Replies
    2
    Views
    691

    Re: CComboBox - set member text

    thank you I thought there would be a one line way.
  9. Replies
    2
    Views
    691

    CComboBox - set member text

    Hi All,

    I have a combobox and I want to change the string of one of it's entries at run rime.
    What is the bext way to do that?

    Thank you.
  10. Replies
    0
    Views
    554

    Distributing a C++ .NET Project

    Hi All,

    I have a VC++ project that I want to be able to burn to CD and install on any PC with Win XP regardless of whether they have the .NET Framework or not.

    I have created a deployment...
  11. Replies
    2
    Views
    964

    Memory overflow - how to fix?

    Hi All,

    I have a C++ app I have recently ported from VC 6.0 to VC .NET. I was getting an error Run time check failure stack around variable bValid (bool) is corrupted

    I have figured out that...
  12. Re: Run-Time Check Failure #2 - Stack around the variable 'cz' was corrupted.

    I am in the exact same situation (start to womder if it was worth my while porting to .NET)

    Is there a way to see what is around the variable on the stack?
    The variable it is complaining about is...
  13. Replies
    1
    Views
    718

    Re: Distributing a C++ .NET Project

    Anyone?
  14. Replies
    1
    Views
    718

    Distributing a C++ .NET Project

    Hi All,

    I have a VC++ project that I want to be able to burn to CD and install on any PC with Win XP regardless of whether they have the .NET Framework or not.

    I have created a deployment...
  15. Replies
    12
    Views
    1,635

    Re: Run Time Environment

    MFC71U.dll isn't even on the machine I built the app on! :confused:
    If I installed the app on the deployment machine using InstallSheield would the MFC dlls be installed?
  16. Replies
    12
    Views
    1,635

    Re: Run Time Environment

    On the machine I just want to be able to run the code on I installed .NET Framework 1.1 and Service Pack 1. On my machine with the full .NET studio I built my project and copied the .exe to my...
  17. Replies
    12
    Views
    1,635

    Re: Run Time Environment

    Another question where do I get the InstallSheild for .NET?
    I presume this will package up all the neccessary dlls?
  18. Replies
    12
    Views
    1,635

    Re: Run Time Environment

    Is this .NET framework available free like Java so it would not need a license for every machine my code is installed on.

    What if I used the dependancy walker and copied all the dlls to the...
  19. Replies
    12
    Views
    1,635

    Re: Run Time Environment

    I am building a .NET .exe - I want to be able to run and install this software on all other machines without intsalling >NET components?

    I don't understand what you been by managed code?
  20. Replies
    12
    Views
    1,635

    Run Time Environment

    Hi All,

    I have recently ported from VC++6.0 to VC++7.1 .NET.
    I have both development machines and deployment machines.
    What do I need to have on a PC to just run .NEt executables?
    Are there...
  21. Replies
    5
    Views
    3,904

    Re: How to shift VC6.0 projects to VC7.1???

    I have the same problem, does anyone know the solution?
    There is not an explicit include statement that I can remove.
    It tries to link automatically.
  22. Replies
    12
    Views
    5,918

    Re: Modeless Property Sheet causing crash

    Ok I fixed the create so that the extended style is the 3rd param.


    if(m_pHwSetupSheet->Create(this, WS_SYSMENU | WS_POPUP | WS_CAPTION | DS_MODALFRAME | DS_CONTEXTHELP | WS_VISIBLE, ...
  23. Replies
    12
    Views
    5,918

    Re: Modeless Property Sheet causing crash

    void
    CStrainInterfaceView::OnHardwareSetup()
    {
    CStrainInterfaceDoc* pDoc = GetDocument();

    if(m_pHwSetupSheet != NULL)
    {
    m_pHwSetupSheet->DestroyWindow();
    delete m_pHwSetupSheet;...
  24. Replies
    12
    Views
    5,918

    Re: Modeless Property Sheet causing crash

    I thought people suggested it was not a good way to make a property sheet modeless. I was just saying it is the MS way.

    When is WM_ACTIVATE called?
    Can I override this in someway?
  25. Replies
    12
    Views
    5,918

    Re: Modeless Property Sheet causing crash

    BTW This is a Microsoft fix http://support.microsoft.com/kb/q146916/
    How do I know what message == 6 means above?
Results 1 to 25 of 209
Page 1 of 9 1 2 3 4





Click Here to Expand Forum to Full Width

Featured