
April 11th, 2002, 07:36 AM
|
|
Contributing User
|
|
Join Date: Dec 2002
Posts: 14,575
  
Time spent in forums: < 1 sec
Reputation Power: 22
|
|
|
Windows form control in a web page
<i><b>Originally posted by : Vanesa (vgonji@yahoo.es)</b></i><br />Hello,<br />I'm trying to make a Windows Form User control that i want to use in a web page.<br />I write the control with only a property but after I compile the control and add to my web page, I couldn't see the property i have add before.<br /><br />Code of my property:<br /><br /> Public Property comPort() As Integer<br /> Get<br /> Return AxNETComm1.CommPort<br /> End Get<br /> Set(ByVal Value As Integer)<br /> AxNETComm1.CommPort() = Value<br /> End Set<br /> End Property<br /><br />AxNET is an object to acces to serial port (something <br />similar to MScomm in visual basic).<br /><br />What I'm doing wrong?<br /><br />Thanks,<br /><br />Vanesa<br />.<br /><br />
|