Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Run form from a class library (DLL)

Status
Not open for further replies.

ndevriendt

Programmer
Jan 8, 2002
74
0
0
BE
Hello,


Is it possible to call a form, from a class in a class library project (DLL).

I have a dll that reads barcode scannings. These dll is running in a windows service. On some circumstances I need to ask some extra data, and I want to show a form that asks additional data.

Is this possible ?

Thanks for your time and answer

Devriendt Nico
 
Can you post your solution for the benefit of others who may encounter the same problem?

Thanks

carl
MCSD, MCTS:MOSS
 
public class Class1
{

public void Hello()
{
Form1 objForm1 = new Form1();

objForm1.ShowDialog();
;
}


}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top