Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

static library in c# library control

0 views
Skip to first unread message

newest newbie

unread,
Apr 11, 2005, 3:59:03 PM4/11/05
to
I'm new to using c#, but what I'm trying to do is create a library control
containing a form which in turn contains a Windows application that I have
defined in another library.

I'm able to do it if my application which I put in the form is a c++ dll
like so:

[DllImport ("C:\\MyApp.dll")]
private extern static void RunMyApp(IntPtr handle);

private void InitializeComponent()
{
this.Name = "MyControl";
this.Size = new System.Drawing.Size(480, 640);
RunMyApp( this.Handle);

}

However, my requirements now dictate that the application I want to put in
this form is contained in a static c++ library. I have not been able to
import the static library into the control. This is literally the only
function that I need to call from my static library application. Is there a
way to do this?


Dmytro Lapshyn [MVP]

unread,
Apr 12, 2005, 2:04:44 AM4/12/05
to
Hi,

To the best of my knowledge, you cannot use static C++ libraries from C#
code. What you can do however is to conjure up a very simple C++ dll
exporting just one function, and within that function you will call whatever
you need from the C++ static library. Then, use the resultant DLL from your
C# code through the regular DllImport attribute.

--
Sincerely,
Dmytro Lapshyn [Visual Developer - Visual C# MVP]


"newest newbie" <newest...@discussions.microsoft.com> wrote in message
news:F8B9533C-8FE0-4E93...@microsoft.com...

newest newbie

unread,
Apr 12, 2005, 12:29:03 PM4/12/05
to
Thanks for the response :)

However, the reason I need to use a static library is because my end result
is a web application and if I were to use a .dll then the web application
expects the .dll on the users machine....

I'm now looking into an ActiveX control.

If anyone knows another way around it, then please let me know!

Dmytro Lapshyn [MVP]

unread,
Apr 13, 2005, 6:24:48 AM4/13/05
to
On the user machine? Why? If the DLL is used only on the server side, there
is absolutely no need to have it on the client.

--
Sincerely,
Dmytro Lapshyn [Visual Developer - Visual C# MVP]


"newest newbie" <newest...@discussions.microsoft.com> wrote in message

news:5C260C44-75D8-4C88...@microsoft.com...

newest newbie

unread,
Apr 13, 2005, 12:25:03 PM4/13/05
to
> On the user machine? Why? If the DLL is used only on the server side, there
> is absolutely no need to have it on the client.


When I use a dll in the way I first mentioned in a control library form and
then place that control in a web application, the control looks for the dll
on the clients machine. I'm not experienced with this topic, is there a way
to specify that the dll is on the server?

Thanks for your help

Dmytro Lapshyn [MVP]

unread,
Apr 13, 2005, 1:22:51 PM4/13/05
to
Ah, in this scenario - yes, the DLL is required on the client :-(
Therefore, I'd either write the whole control in C++ (by using ATL for
example), or I would have to rewrite the static library in managed code.

BTW: managed Windows Forms controls require IE 6 and .NET Framework on the
client side.
BTW2: The control *might* automatically download necessary DLLs, but I am
not sure which permissions are required for it to do so. What I do remember
is that the DLL must be on the same server and most likely in the same
virtual folder. See no-touch deployment docs in MSDN for more information.

--
Sincerely,
Dmytro Lapshyn [Visual Developer - Visual C# MVP]


"newest newbie" <newest...@discussions.microsoft.com> wrote in message

news:EF126B85-0FFE-4A07...@microsoft.com...

newest newbie

unread,
Apr 13, 2005, 5:05:08 PM4/13/05
to
Thanks again - I've started looking into no-touch deployment. That looks
like an option, but I'm not sure yet.

I have also started to make the control in C++, but I'm getting nasty
linker errors.

I've also started trying to put the application in an ActiveX control, but
I'm getting runtime problems from a graphics library I'm using.

Nothing's easy I guess :P

Thank you very much either way!

0 new messages