Jul 9, 2002 #1 V Vax Guest whats a simple, fast way to convert a Size structure to a SizeF structure?
Jul 10, 2002 #2 T TheIrishCoder Guest Would this do it? Dim szf As New SizeF(20, 20) Dim sz As New Size(New Point(szf.Width, szf.Height))
Jul 11, 2002 #3 Divil Well-known member Joined Nov 17, 2002 Messages 2,748 I wouldnt have the overhead of creating a new point structure in there: Code: Dim sz As New Size(20, 20) Dim szf As New SizeF(sz.Width, sz.Height)
I wouldnt have the overhead of creating a new point structure in there: Code: Dim sz As New Size(20, 20) Dim szf As New SizeF(sz.Width, sz.Height)