CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2011
    Posts
    3

    Arrow help with Visual c++ Gui

    i have created a windows form using visual c++ and wants to open a choose a file using a button(named open) on the form and i already have a c++ code that reads and calculates some mathematical terms now i want to use my c++ existing code for reading and doing the rest calculations can anybody tell how to integrate them..


    here is what it looks like

    private: System::Void openToolStripMenuItem_Click(System::Object^ sender, System::EventArgs^ e) {

    OpenFileDialog ^ openFileDialog1 = gcnew OpenFileDialog();
    }



    now i want my c++ code to do the reading part.. how to do it..??

  2. #2
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: help with Visual c++ Gui

    "windows form" problems are discussed in the "Managed C++/CLI" forum.
    This forum is for native visual C++
    Victor Nijegorodov

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured