Yes, .NET V1 has no multimedia support.
(AFAIK it got no priority for a generic V1 framework)
You have to use PInvoke like MCI
http://www.mentalis.org/soft/class.qpx?id=1
(or to mmsystem, directmusic)
or use the "Managed Extensions for C++"
and write wrapper classes:
http://msdn.microsoft.com/vstudio/techinfo/articles/upgrade/managedex...
section 'Managed C++' :
http://www.gotdotnet.com/team/cplusplus/
check on your VS.NET install path:
...\VC7\managedextensionsspec.doc
...\VC7\migration_guide.doc
--
NETMaster (Thomas Scheidegger)
http://www.cetus-links.org/oo_csharp.html
Quote:
> The only .NET MIDI libraries seem to belong to C++ with the mmsystem.h
> header file. Is there a similar equivalent available in C#. Might i
> have to produce a C++ wrapper for this file to use it with C# or is
> there something obvious i have missed.
> I don't have endless experience with any of the C variants so i might
> in the end use Java to produce my application. I like the .NET
> development environment and think this would be 'nicer' to use to
> produce a Windows Application.