Click here to Skip to main content
16,020,822 members

Comments by joseph k (Top 21 by date)

joseph k 19-Jan-12 3:18am View    
Its just complicated when it comes to a user interface that used to manage such kind of data. (add, edit , delete)
joseph k 3-Jun-11 2:46am View    
This worked! Thanks , it was null
joseph k 2-Jun-11 9:00am View    
SOLVED
I just used :
If dsStreets.Tables("tbl_streets").Rows.Count > 0 Then
to get the number of rows on the dataset
joseph k 1-Jun-11 1:57am View    
yes , that is true. I dont want to get rid of the first mapping because it is required when the form loads. My problem is Not the mapping, My problem is , how do i refresh the data grid without compromising the mappings. This is after i do a search and mapping details change and i need the data grid to reflect the new search results
joseph k 31-May-11 9:27am View    
I would like to refresh this at this point:
<pre> DGVCompanies.DataSource = Nothing
DGVCompanies.DataSource = dsCompanies.Tables("companies").DefaultView
Me.DGVCompanies.Refresh()</pre>