|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Error in implementing interface PropertyScheduledInfo' must implement 'Property AddrLine1() As String' for interface 'ICASSBatch'. Implementing property must have matching 'ReadOnly'/'WriteOnly' specifiers. The interface: Public Interface ICASSBatch Property AddrLine1() As String Property BarCode() As String Property City() As String Property State() As String Property Zip5() As String ... End Interface The class implementing the interface: Public Class ScheduledInfo Implements ICASSBatch ... Public Property AddrLine1() As String Get Return _addrLine1 End Get Set(ByVal Value As String) _addrLine1 = Value End Set End Property I don't understand the error message. Can anyone help? TIA Lars
Show quote
Hide quote
"larzeb" <larzeb@community.nospam> schrieb: Replace the line above with 'Public Property AddrLine1() As String > ScheduledInfo' must implement 'Property AddrLine1() As String' for > interface 'ICASSBatch'. Implementing property must have matching > 'ReadOnly'/'WriteOnly' specifiers. > > The interface: > Public Interface ICASSBatch > Property AddrLine1() As String > Property BarCode() As String > Property City() As String > Property State() As String > Property Zip5() As String > ... > End Interface > > The class implementing the interface: > Public Class ScheduledInfo > Implements ICASSBatch > > ... > Public Property AddrLine1() As String Implements ICASSBatch.AddrLine1'. -- M S Herfried K. Wagner M V P <URL:http://dotnet.mvps.org/> V B <URL:http://classicvb.org/petition/> In addition to the other responses, if you put the cursor on the end of
the Implements line and press Enter, VS (2003 at least) will automatically create the method and property stubs.
vb.net windows deployment
Datagrid cell change event? Where to find event. Inheritance Question in VB.NET Please: Sign the Petition in order to Save VB6 code... VB.NET http spying Databindings Question Problems with the Masked Edit Control Assign deployment version number to a variable RowFilter and DataColumn Named as Number customised datagrid |
|||||||||||||||||||||||