Click here to Skip to main content
15,913,610 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How to write to a file at a particular time everyday Pin
Christian Graus28-Jul-05 18:43
protectorChristian Graus28-Jul-05 18:43 
AnswerRe: How to write to a file at a particular time everyday Pin
Dave Kreskowiak29-Jul-05 4:16
mveDave Kreskowiak29-Jul-05 4:16 
Generalurls in a richtextbox Pin
KaptinKrunch28-Jul-05 18:02
KaptinKrunch28-Jul-05 18:02 
GeneralRe: urls in a richtextbox Pin
Dave Kreskowiak29-Jul-05 4:14
mveDave Kreskowiak29-Jul-05 4:14 
GeneralRe: urls in a richtextbox Pin
KaptinKrunch29-Jul-05 13:14
KaptinKrunch29-Jul-05 13:14 
GeneralRe: urls in a richtextbox Pin
Dave Kreskowiak31-Jul-05 19:14
mveDave Kreskowiak31-Jul-05 19:14 
QuestionPreventing User Control Unhandled Exceptions from Bubbling up to the Main Form? Pin
ndurso28-Jul-05 9:38
ndurso28-Jul-05 9:38 
AnswerRe: Preventing User Control Unhandled Exceptions from Bubbling up to the Main Form? Pin
Anonymous28-Jul-05 10:03
Anonymous28-Jul-05 10:03 
It is possible, you just handle your exceptions within the user control. Since you don't want to "specifically catch" the exception. You can use a generic try catch or an empty catch (not the best practice). It also depends if you are going to do anything with the exception.

Try<br />
'some code<br />
Catch<br />
'leave empty<br />
End Try


OR

Try
'some code
Catch ex As Exception
'catch all exceptions
'do something like write to an error log file
End Try

You can try this, but I recommend that you should probably do something with the exception. Otherwise your user won't know what is going on Smile | :)
AnswerRe: Preventing User Control Unhandled Exceptions from Bubbling up to the Main Form? Pin
Briga28-Jul-05 22:06
Briga28-Jul-05 22:06 
GeneralLoading ActiveX in Limitted User Account Pin
MohammadAmiry28-Jul-05 7:26
MohammadAmiry28-Jul-05 7:26 
QuestionBest Aproach When Working with Crystal Reports .Net? Pin
korso_rogan28-Jul-05 5:43
korso_rogan28-Jul-05 5:43 
General&quot;Setup cannot continue.....&quot; &lt;URGENT HELP&gt; Pin
GSKhalsa28-Jul-05 5:32
GSKhalsa28-Jul-05 5:32 
Generalexcel marco Pin
lhahehal28-Jul-05 4:45
lhahehal28-Jul-05 4:45 
GeneralRe: excel marco Pin
rhenerlau28-Jul-05 7:10
rhenerlau28-Jul-05 7:10 
Generalsetup Pin
fatidarya28-Jul-05 4:09
fatidarya28-Jul-05 4:09 
GeneralWord Automation query Pin
Mathew Gorge Whiz28-Jul-05 4:03
Mathew Gorge Whiz28-Jul-05 4:03 
GeneralCloning an Array Pin
directred28-Jul-05 1:20
directred28-Jul-05 1:20 
GeneralCloning an Array ... Added more comments Pin
directred28-Jul-05 1:36
directred28-Jul-05 1:36 
Generalrecording voice Pin
Veera Raghavendra28-Jul-05 1:03
Veera Raghavendra28-Jul-05 1:03 
GeneralUrgent !regarding sqlDataAdapter.Update Method Pin
Madni Abbasi28-Jul-05 0:27
Madni Abbasi28-Jul-05 0:27 
GeneralError in VBScript Pin
Spaz8027-Jul-05 22:38
Spaz8027-Jul-05 22:38 
GeneralParameters In Crystal Report Pin
Hassanur27-Jul-05 21:45
Hassanur27-Jul-05 21:45 
GeneralRe: Parameters In Crystal Report Pin
Madni Abbasi28-Jul-05 0:44
Madni Abbasi28-Jul-05 0:44 
GeneralBoolean datatype Pin
Rami8027-Jul-05 20:17
Rami8027-Jul-05 20:17 
GeneralIcon In ListView Header .Net Pin
lespaul3627-Jul-05 17:26
lespaul3627-Jul-05 17:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.