.dll Value problem

prem_rajani

Member
Joined
Jul 19, 2005
Messages
22
Location
Coimbatore
Programming Experience
3-5
Hi,

I have an application which I compile it as class library, to include it as reference in another application. My problem how to get value from the dll file to referring application. To explain more clearly-

In first application name it app1 I have richtextbox & 2 buttons - submit & reset. This I compile it as dll by debuging it as class library.

In second application name it app2 I call aap1 as a reference. To call the form of app1 the code is as follows:

Imports Application1

Dim frm as Application1.Form1=new Application1.Form1
frm.Show()

Till here its good. But when I click on submit button from app1 then how to pass value in richtextbox to app2 textarea? Any suggestions or ideas would be great.
 
Back
Top