Forum: VB.NET Apr 11th, 2009 |
| Replies: 2 Views: 1,327 It worked with me..
'...
for each m_row as System.Windows.Forms.DataGridViewRow in me.DataGridView1.Rows
if m_row.Cells("Column1").Value=true then
... |
Forum: VB.NET Apr 7th, 2009 |
| Replies: 2 Views: 348 First choices..That'll makes your live easier.. |
Forum: VB.NET Feb 15th, 2009 |
| Replies: 3 Views: 647 type "plot", "PLOT", "plot blah", "plot blah blah", "PLOT BLAH", "PLOT BLAH BLAH"..good luck.. |
Forum: VB.NET Jan 2nd, 2009 |
| Replies: 2 Views: 347 |
Forum: VB.NET Jan 1st, 2009 |
| Replies: 5 Views: 1,986 dim x as integer
dim y as integer
dim str as string
private sub ON_BUTTON_CLICK(...sender as OBJECT,... e as MOUSE_EVENT_ARGS)
x = e.X
y = e.Y
str = ListView1.GetItemAt(x, y).Text... |
Forum: VB.NET Dec 22nd, 2008 |
| Replies: 1 Views: 898 Link1 (http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_23940335.html)
Link2 (http://www.bigresource.com/VB-convert-vb6-project-to-vb-net-project-WMzZOUUZuw.html) |
Forum: VB.NET Dec 20th, 2008 |
| Replies: 2 Views: 374 HINT : :)
Dim sel_row_index As Integer
Dim sel_col_index As Integer
Private Sub DataGridView1_CellClick(ByVal sender As System.Object, ByVal e As... |