Another problem for LSet

sups123

Member
Joined
Mar 10, 2006
Messages
14
Programming Experience
1-3
Hello

I have one more problem for this LSet stuff og Vb6
I have the the code for vb6 which i am converting into vb.net. Again Lset is giving problem here

Here is the code of vb6
=================================
Private Type typFloat
f As Single
End Type
Private Type typInt
i(1 To 2) As Integer
End Type

Dim t2F As typFloat
Dim t2I As typInt
Dim dat(8) As Integer

' Convert Floats to 16 Registers
t2F.f = CDbl(MSFlexGrid1.TextMatrix(i + 1, 3))
LSet t2I = t2F '''' this is the problem again
dat(0) = t2I.i(2)
dat(1) = t2I.i(1)

========================================

Please Can anyone tell me how to go about lset in this case in vb.net as soon as possible.

Thanks
sups123
 
Back
Top