• After more than 30 years running websites and forums I am retiring.

    I have made many friends through the years. I will cherish my time getting to know you. I wish you all the best. This was not an easy decision to make. The cost to keep the communities running has gotten to the point where it's just too expensive. Security certificates, hosting cost, software renewals and everything else has increased threefold. While costs are up ad revenue is down. It's no longer viable to keep things running.

    All sites will be turned off on Thursday 30 November 2023. If you are interested in acquiring any of the websites I own you can Email Schwarz Network.

Project error

ambika

Newcomer
Joined
Jun 10, 2011
i got this type of error when i was run my vb.net application System.Data.DataRowView in grid view. tell the error in my project
 

snarfblam

Ultimate Contributor
Joined
Jun 10, 2003
Location
USA
ambika, sorry, but you've given us virtually nothing to go on. Is this a run-time error? An error in the designer, or elsewhere in the IDE? It might help if you explain the exact steps that lead up to the error, when specifically the error occurs, and what message, if any, it gives you, as well as details.
 

medsont

Newcomer
Joined
Jun 18, 2011
i got this type of error when i was run my vb.net application System.Data.DataRowView in grid view. tell the error in my project

please catch the exact Exception with Try....Catch block and post it here


Try
'your codes here
Catch ex As Exception
MessageBox.Show(ex.ToString, "Error")
End Try
 
Top Bottom