how to make a table in visual basic.net 2008

merckrene

Member
Joined
Nov 3, 2009
Messages
9
Programming Experience
Beginner
I am using visual basic.net 2008 express I would like to ask on how to make a table in visual basic that looks like the tagged table in the html
 
Generally the html table is used to display tabular data, or to help the layout in webpage since otherwise whitespace is ignored. Forms applications have controls to display tabular data like the DateGridView and ListView, it also doesn't have the problem of layout that webpages have and the forms designer is very helpful in aligning controls exactly, also other layout functionalities exists (Properties window, Layout section). There is however a TableLayoutPanel control that has its uses, it's in Containers section of Toolbox. TableLayoutPanel Control Overview
 
Back
Top