I'm not sure, i would assume so. but then you would expect a
horizontal scrollbar would you not?
I had some trouble replicating this in a new application but using the
designer code from my existing code i can replicate, this might help:
'
'dgv3
'
Me.dgv3.AllowUserToAddRows = False
Me.dgv3.AllowUserToDeleteRows = False
Me.dgv3.AllowUserToResizeColumns = False
Me.dgv3.AllowUserToResizeRows = False
Me.dgv3.BackgroundColor = System.Drawing.Color.White
Me.dgv3.BorderStyle = System.Windows.Forms.BorderStyle.None
Me.dgv3.CellBorderStyle =
System.Windows.Forms.DataGridViewCellBorderStyle.None
Me.dgv3.ColumnHeadersHeightSizeMode =
System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
Me.dgv3.Columns.AddRange(New
System.Windows.Forms.DataGridViewColumn()
{Me.DataGridViewTextBoxColumn2})
Me.dgv3.Dock = System.Windows.Forms.DockStyle.Fill
Me.dgv3.GridColor = System.Drawing.Color.White
Me.dgv3.Location = New System.Drawing.Point(0, 0)
Me.dgv3.Name = "dgv3"
Me.dgv3.ReadOnly = True
Me.dgv3.RowHeadersVisible = False
DataGridViewCellStyle1.BackColor = System.Drawing.Color.White
DataGridViewCellStyle1.ForeColor = System.Drawing.Color.Black
DataGridViewCellStyle1.SelectionBackColor =
System.Drawing.Color.WhiteSmoke
DataGridViewCellStyle1.SelectionForeColor =
System.Drawing.Color.Black
Me.dgv3.RowsDefaultCellStyle = DataGridViewCellStyle1
Me.dgv3.RowTemplate.Height = 18
Me.dgv3.SelectionMode =
System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect
Me.dgv3.Size = New System.Drawing.Size(462, 266)
Me.dgv3.TabIndex = 4
'
'DataGridViewTextBoxColumn2
'
Me.DataGridViewTextBoxColumn2.HeaderText = "JobsText"
Me.DataGridViewTextBoxColumn2.Name =
"DataGridViewTextBoxColumn2"
Me.DataGridViewTextBoxColumn2.ReadOnly = True
Me.DataGridViewTextBoxColumn2.Resizable =
System.Windows.Forms.DataGridViewTriState.[True]
Me.DataGridViewTextBoxColumn2.SortMode =
System.Windows.Forms.DataGridViewColumnSortMode.NotSortable
Me.DataGridViewTextBoxColumn2.Width = 125