exe to class library

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When you go to show the dialog, are you creating a new instance of it from
within your main application? Or are you just trying to do a Show() or
ShowDialog() on the (noninstantiated) class?

Brendan
 
Hi,
I build a c# win form application and i put a control on the form the
control send event every 1 sec and in the function that catch that event i
do beep(or so...).
i recompile that application to be a class library (dll) and i load it
dynamicly from a nother c# winform application using reflaction and invoke i
callaed the function that play the control and i see that the control send
event to the event function implemented in the dll form dialog how thats
work???

I try to show the dll dialog(win form) and it crash Why???

Thanks!
 
just show!

Brendan Grant said:
When you go to show the dialog, are you creating a new instance of it from
within your main application? Or are you just trying to do a Show() or
ShowDialog() on the (noninstantiated) class?

Brendan
 
Back
Top