Can we include VLC Player plugin in VB6 form - com

I want to include vlc mediaplayer plugin in vb6 form as a COM component ? I embedded it in .NET 2010. Is it possible to embedded in vb6

Yes, you can. but you must use an old version of VLC Media Player. i'm using 0.8.6 version. You can download it from here.

Related

Using COM libraries in Win10 Core IoT?

I want to create an IoT application in VisualStudio 2015 community and want to add a reference to Windows Portable Device, which is a COM library. But the whole COM tab is missing from the references window. Is there a way to include COM libraries in Windows 10 Core IoT, or is that impossible? If the second, does that mean I would have to write drivers for any USB devices myself?
Windows Core libraries are included. Many legacy libraries have been reworked into those core libraries. I suggest checking the core libraries for the functionality you are looking for. Libraries need to be compatible with the Windows Universal Platform.
You will need to write drivers for non-supported devices.

MPXJ library with VB6 , is it possible?

I'm trying to communicate my application VB6 (et VBA) with MS Project 2007 so I would like to use the MPXJ library. The problem is that I dont know if it's possible to use these .net libraries with my VB6 application. I cant add the .dll directly
How could I do this, ideas? I can't migrate my code to vb.net
thanks
I'm pleased to say that MPXJ can be used via COM. You'll need to download version 4.5.0 from SourceForge. In the lib.net directory you'll find the DLLs and TLBs you'll need. You will need to use regasm to register the assemblies for use with COM. There are some brief notes here on working with MPXJ via COM.
You may find the notes here useful as they discuss the three different flavours of mpxj.dll that are shipped, and MPXJ's dependencies.
I'd be happy to update the documentation on working with MPXJ via COM in the light of your experience!

Creating Portable class library for Xamarin.mac

We are developing a mac application using Xamarin.mac. Since we want the same application to be developed for windows as well, we decided to write all the business logic inside a Portable class library. Is PCL Supported for Xamarin.mac?.
A much easier approach for sharing code between a Windows and a Mac app (talking from first hand painful expirience) is something called "Shared Project". What it will do is it will "Inject" itself into the build process for a specific platform, and as long as the references you use are accessible on both platforms, all will be well.

Using DLL file in VB.Net

I have made a media player using VB.net but if does not support some ile formats such as mkv,rmvb etc.
Is it possible to embed a mkv file dll in a vb.net program to run the media file?
Is it possible to embed a mkv file dll in a vb.net program to run the
media file?
Yes it is possible if the dll is designed to interface with .net.
I would suggest looking at the VLC Api for .net. VLC runs most video formats.

how to build xaml ui in Cocos2d for windows 8 metro application?

we have been use cocos2d for windows 8 build metro game . so we want use xaml control UI in cocos2d ?
is there have soluction or suggestion?
just try one night i have been fix this problem. you can click fllow link:
DirectX and XAML interop (Windows Store apps using C++ and DirectX) (Windows) http://msdn.microsoft.com/en-us/library/windows/apps/hh825871.aspx
With the release of Windows 8, you can use XAML and Direct X together in your Windows Store app. The combination of XAML and DirectX lets you build flexible user interface frameworks that interop with your DirectX-rendered content, and is particularly useful for graphics-intensive apps. We explain the structure of a XAML app that uses DirectX, and identify the important types to use when building your XAML app to work with DirectX.
soluction as fllow link:
http://www.cnblogs.com/chenkai/archive/2012/11/29/2794983.html
by chenkai
Here's a template project in my github:
https://github.com/chanyuenpang/cocos2dxaml