i tried to customize the column name because the column name in my datagridview comes directly from the table column name, which is kindda odd. i browse throught this forum and other forums on howto's but i get this wierd error.
Dim dgTS As New DataGridTableStyle
Dim ColStyle As New DataGridTextBoxColumn
ColStyle.MappingName = "empID"
ColStyle.HeaderText = "Employee ID"
dgTS.GridColumnStyles.Add(ColStyle)
DataGridView1.TableStyles.Add(dgTS) 'error here, green underline
tablestyles is not a member of system.windows.form.datadridview
do i have to add additinal reference to my project?
please help..