View Single Post

  #2 (permalink)  
Old 10-10-2005
Wilfried Wilfried is offline
Senior Member
Black Belt
 
Join Date: Nov 2004
Posts: 2,123
Hi,

You dont have to convert it, you have to typecast it. eg in delphi:
Point := TPoint(theThing);
in c:
Point := (TPoint)theThing;
etc..
Reply With Quote