T
The Mad Ape
VB.NET InputPanel AutoScrolling Late Binding Problem
I am upgrading a VB.Net 2008 Compact Framework project from Windows
Mobile 5 to Windows Mobile 6.
This code worked in WM 5:
If InputPanel1.Enabled = False Then
For Each tbPge In tabCollect.TabPages
tbPge.AutoScroll = False 'error fires on this line see
details below
Next
tabCollect.Height = 268
tabCollect.Width = 240
End If
When I use the same code in WM 6 I get an error message as follows:
The targeted version of the .NET Compact Framework does not support
latebinding.
Why is this happening and how do I fix it?
Thanks
TMA
I am upgrading a VB.Net 2008 Compact Framework project from Windows
Mobile 5 to Windows Mobile 6.
This code worked in WM 5:
If InputPanel1.Enabled = False Then
For Each tbPge In tabCollect.TabPages
tbPge.AutoScroll = False 'error fires on this line see
details below
Next
tabCollect.Height = 268
tabCollect.Width = 240
End If
When I use the same code in WM 6 I get an error message as follows:
The targeted version of the .NET Compact Framework does not support
latebinding.
Why is this happening and how do I fix it?
Thanks
TMA