Hello everyone,
How do I access a property from another thread in VB'05? Thanks
public class frmblah
inherits system.windows. forms.form
private mCount as integer
private property Count as integer
get
return mCount
end get
set (value as integer)
mCount = value
end set
end property
private sub updatecount
if me.InvokeRequir ed then
'
'???????
'
else
me.count += 1
end if
end sub
end class
How do I access a property from another thread in VB'05? Thanks
public class frmblah
inherits system.windows. forms.form
private mCount as integer
private property Count as integer
get
return mCount
end get
set (value as integer)
mCount = value
end set
end property
private sub updatecount
if me.InvokeRequir ed then
'
'???????
'
else
me.count += 1
end if
end sub
end class
Comment