How To create fixed column formatting

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear Colleagues

I am trying to create a field with a fixed column format.

In VB6 I would:

Dim Field1 as string * 2
Dim Field2 as string * 4
Dim Field3 as string * 2

for a field with fixed column, 8 chars in width.

How do I do this in VB.NET 2003??
 
Do you not have online help with your version?

VBFixedString(15)> Public FirstName As String

Tom
 
Tomb

Yes, I searched the help and didn't find the answer. Anyway, thanks for
your post.
 
Back
Top