Aug 21, 2003 #1 C Creator Newcomer Joined Aug 14, 2003 Messages 20 Hi in VB6 we have Private Type Data Data1 as integer ;; ;; ;; End Type How do I convert it to VB .net
Hi in VB6 we have Private Type Data Data1 as integer ;; ;; ;; End Type How do I convert it to VB .net
Aug 21, 2003 #2 A a_jam_sandwich Junior Contributor Joined Dec 10, 2002 Messages 367 Location Uk Types are now sturctures in .net have a look at the vb help files but the syntax is like the following Visual Basic: Private Structure Data Public Data1 as Integer End Structure Andy
Types are now sturctures in .net have a look at the vb help files but the syntax is like the following Visual Basic: Private Structure Data Public Data1 as Integer End Structure Andy
Aug 21, 2003 #3 P PlausiblyDamp Administrator Joined Sep 4, 2002 Messages 6,471 Location Lancashire, UK Structures can now also have methods and implement interfaces - making them a lot more powerful than the VB6 equivalent.
Structures can now also have methods and implement interfaces - making them a lot more powerful than the VB6 equivalent.