Can I use DataSet, DataGridView and PropertyGrids without resortingto C++/CLI?

G

google

Is it possible to access all of the cool features of the new .net 2.0
& 3.0 with native win32 (C++)? I'd like to use cool components like
DataSet, DataGridView and PropertyGrids without resorting to C++/CLI
and the like...
 
D

David Lowndes

Is it possible to access all of the cool features of the new .net 2.0
& 3.0 with native win32 (C++)?

The fact that they're .Net components means that you've got to have
some managed code involved, so the answer is no.

Dave
 
D

David Wilkinson

Is it possible to access all of the cool features of the new .net 2.0
& 3.0 with native win32 (C++)? I'd like to use cool components like
DataSet, DataGridView and PropertyGrids without resorting to C++/CLI
and the like...

Well, there are CWinFormsControl, CWinFormsDialog and CWinFormsView that can be
used in an MFC application, but of course your app then becomes dependent on the
..NET runtime (and must also use dynamic linking to CRT/MFC).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top