03-26-2013, 08:03 AM
First of all my opinion is that you are trying to make a program way above your beginer level.Stick to "hello world" application until you learn something other than copy/paste
Second using a Try/Catch block without reporting something if an error ocurs is usless because the program ignores the problem but the error remains. Simply add a msgbox at the end of the try/catch block and copy/paste the error here in order to get proper help.
And just in case you have no clue as what i said above here's the code:
[code2=vbnet]Catch ex As Exception
Msgbox(ex.ToSting)
End Try[/code2]
Second using a Try/Catch block without reporting something if an error ocurs is usless because the program ignores the problem but the error remains. Simply add a msgbox at the end of the try/catch block and copy/paste the error here in order to get proper help.
And just in case you have no clue as what i said above here's the code:
[code2=vbnet]Catch ex As Exception
Msgbox(ex.ToSting)
End Try[/code2]
Sssssssssoftware developer...