jmarkus
Mechanical
- Jul 11, 2001
- 377
I have defined the following variables
And now I am inquiring about some face properties using:
NX is telling me "Value of type 'Double' cannot be converted to '1-dimensional array of Double'" twice, but I don't know what it is referring to. According to the NXOpen .Net API reference I've defined all the variables with their correct data types.
Or have I?
Can someone help?
Thanks,
Jeff
Code:
dim face_t As tag
dim ftype as integer
dim pnts(4,3) as double
dim vecv(4,3) as double
dim box(6) as double
dim junk2 as double = Nothing
dim junk1 as integer = Nothing
Code:
ufs.modl.askfacedata(face_t, ftype, pnts(jj,0), vecv(jj,0), box, junk2, junk2, junk1)
Or have I?
Can someone help?
Thanks,
Jeff