Forum: Geeks' Lounge Feb 12th, 2008 |
| Replies: 26 Views: 2,305 Windows is the future, Bill told me. |
Forum: VB.NET Nov 13th, 2007 |
| Replies: 22 Views: 22,604 Hi I would either use the filter options or requery your datasource. |
Forum: VB.NET Nov 7th, 2007 |
| Replies: 22 Views: 22,604 Attach the project I will have a look if you want. |
Forum: VB.NET Nov 7th, 2007 |
| Replies: 22 Views: 22,604 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Call Find(TextBox1.Text)
End Sub |
Forum: VB.NET Nov 7th, 2007 |
| Replies: 22 Views: 22,604 Copy paste code... open form designer drop a button and a textbox on it, double click button then enter...
Call Find(textbox1.text)
Done. |
Forum: VB.NET Nov 6th, 2007 |
| Replies: 3 Views: 7,219 Use SQL...
To backup ...
BACKUP DATABASE test TO DISK = 'c:\test.bak'
To Restore ... |
Forum: VB.NET Nov 6th, 2007 |
| Replies: 22 Views: 22,604 Private Function Find(ByVal StrSearchString As String) As Boolean
DataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect
Dim intcount As Integer = 0
For... |
Forum: VB.NET Nov 5th, 2007 |
| Replies: 22 Views: 22,604 Text in the grid... I think they mean... ? |
Forum: VB.NET Nov 5th, 2007 |
| Replies: 3 Views: 2,600 I would use events for this... |
Forum: VB.NET Nov 5th, 2007 |
| Replies: 4 Views: 1,919 |
Forum: VB.NET Nov 5th, 2007 |
| Replies: 2 Views: 3,354 What you looking to do with the data?
I would read it into an array()? |
Forum: VB.NET Nov 5th, 2007 |
| Replies: 3 Views: 7,219 |
Forum: VB.NET Nov 5th, 2007 |
| Replies: 22 Views: 22,604 You could loop through the rows in the datagridview ? Or maybe re-query the datasource?
Dim intcount As Integer = 0
For Each Row As DataGridViewRow In DataGridView1.Rows
If... |
Forum: VB.NET Nov 2nd, 2007 |
| Replies: 10 Views: 4,096 I have a procedure that does this
Public Sub ShowForm(ByVal FrmSwitch As FrmToShow)
Select Case FrmSwitch
Case Is = FrmToShow.FrmRecommendAssignment
If _FrmRecommendAssignment = 1... |
Forum: VB.NET Nov 2nd, 2007 |
| Replies: 3 Views: 3,405 The timer tick event should call the copy procedure. |