|
-
Dec 14th, 2002, 03:14 AM
#1
Thread Starter
New Member
propertychanged error
Public Property Scrollbars() As GridScrollbars
Get
Scrollbars = fgGrid.ScrollBars
End Get
Set(ByVal Value As GridScrollbars)
fgGrid.ScrollBars = Value
PropertyChanged("Scrollbars")
End Set
End Property
This is converted code from vb6 to vb.Net. As vb.Net does not support this does anyone knows how to replace this or how to handle this method.
the VB 6.0 code is as follows.
Public Property Let Scrollbars(ByVal sNewValue As GridScrollbars)
fgGrid.Scrollbars = sNewValue
PropertyChanged "Scrollbars"
End Property
Public Property Get Scrollbars() As GridScrollbars
Scrollbars = fgGrid.Scrollbars
End Property
Please reply at the earliest.
Thanks in advance.
Sort
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|