richtextbox in vb class

  • Thread starter Thread starter Jmanwaring
  • Start date Start date
J

Jmanwaring

I am trying to create a vb class and compile it to a dll
so I can use it in an asp.net application. When I compile
(vbc /t:library /r:system.windows.forms myrtb.vb) I get
errors that I need to include other assemblies. When I
try to add those assemblies I get an error sayin they were
not found. Is there another - easier way to get
richtextbox into an ASP.NET app?
 
* "Jmanwaring said:
I am trying to create a vb class and compile it to a dll
so I can use it in an asp.net application. When I compile
(vbc /t:library /r:system.windows.forms myrtb.vb) I get
errors that I need to include other assemblies.

Reference "System.Windows.Forms.dll". You can specify the places where
the referenced components are located by adding "/libpath" to the
compiler call. More information on that: Type "vbc.exe" to see all
supported command line parameters or have a look in the documentation
on "vbc.exe".
 
Are you trying to use a Windows control RTB in your app? That's not going
to work. There are many Third party RTB's out there though for ASP.NET.

Web and Winforms are two totally different libraries
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top