Advertisement
Advertisement
| 02.15.2008 at 02:25PM PST, ID: 23167505 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: |
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
' Iterate through a collection
For Each row As DataGridViewRow In DataGridView1.SelectedRows
moved.Add(row.Cells("IdOsoba"))
DataGridView1.Rows.Remove(row)
DataGridView2.Rows.Add(row)
Next
End Sub
|
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 02.15.2008 at 02:56PM PST, ID: 20906805 |
| 02.15.2008 at 03:32PM PST, ID: 20907006 |
| 02.15.2008 at 03:37PM PST, ID: 20907028 |
| 02.15.2008 at 03:38PM PST, ID: 20907033 |
| 02.15.2008 at 03:41PM PST, ID: 20907053 |
| 02.15.2008 at 03:42PM PST, ID: 20907061 |
| 02.15.2008 at 03:43PM PST, ID: 20907066 |
| 02.15.2008 at 03:48PM PST, ID: 20907097 |
| 02.16.2008 at 02:31AM PST, ID: 20909095 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: |
Private Sub ComboBox2_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox2.SelectedIndexChanged
DataGridView2.Rows.Clear()
For Each row As DataRow In Ds_SzkolaSrednia_Osoby_sel1TableAdapter.GetData(ComboBox2.SelectedValue).Rows
DataGridView2.Rows.Add(row.ItemArray)
Next
End Sub
' Iterate through a collection and move rows
For Each row As DataGridViewRow In DataGridView1.SelectedRows
moved.Add(row.Cells("IdOsoba").Value)
Dim a As DataGridViewRow = New DataGridViewRow()
a.CreateCells(DataGridView2)
a.Cells(0).Value = row.Cells(0).Value
a.Cells(1).Value = row.Cells(1).Value
a.Cells(2).Value = row.Cells(2).Value
DataGridView2.Rows.Add(a)
DataGridView1.Rows.Remove(row)
changed = True
Next
|