Click here to Skip to main content
15,878,852 members
Home / Discussions / Windows Forms
   

Windows Forms

 
GeneralRe: WinForms NIC Performance Counter Pin
Richard Deeming1-May-18 1:32
mveRichard Deeming1-May-18 1:32 
GeneralRe: WinForms NIC Performance Counter Pin
Member 138058691-May-18 1:33
Member 138058691-May-18 1:33 
Questiontextbox input Pin
User 136751143-Mar-18 13:03
User 136751143-Mar-18 13:03 
AnswerRe: textbox input Pin
Richard MacCutchan3-Mar-18 21:11
mveRichard MacCutchan3-Mar-18 21:11 
AnswerRe: textbox input Pin
User 418025417-Jun-18 3:54
User 418025417-Jun-18 3:54 
QuestionWhat is best Online Decompiler For Exe Code Reverse( C# and delphi) Pin
Member 134632896-Nov-17 21:29
Member 134632896-Nov-17 21:29 
AnswerRe: What is best Online Decompiler For Exe Code Reverse( C# and delphi) Pin
AdrianG00116-Apr-18 4:38
AdrianG00116-Apr-18 4:38 
QuestionWinforms VS 2015 Community with encrypted SQLite Pin
Member 1271965811-Jan-17 3:08
Member 1271965811-Jan-17 3:08 
QuestionAddind hide information to a file of NTFS Pin
Alex Can Work4-Jan-17 18:35
Alex Can Work4-Jan-17 18:35 
AnswerRe: Addind hide information to a file of NTFS Pin
Midi_Mick4-Jan-17 19:27
professionalMidi_Mick4-Jan-17 19:27 
GeneralRe: Addind hide information to a file of NTFS Pin
Richard MacCutchan4-Jan-17 22:02
mveRichard MacCutchan4-Jan-17 22:02 
AnswerRe: Addind hide information to a file of NTFS Pin
Richard MacCutchan4-Jan-17 22:02
mveRichard MacCutchan4-Jan-17 22:02 
QuestionWindows server OnTimedEvent Pin
byka24-Oct-16 5:40
byka24-Oct-16 5:40 
AnswerRe: Windows server OnTimedEvent Pin
Eddy Vluggen24-Oct-16 6:13
professionalEddy Vluggen24-Oct-16 6:13 
GeneralRe: Windows server OnTimedEvent Pin
byka24-Oct-16 6:38
byka24-Oct-16 6:38 
GeneralRe: Windows server OnTimedEvent Pin
Eddy Vluggen24-Oct-16 7:23
professionalEddy Vluggen24-Oct-16 7:23 
GeneralRe: Windows server OnTimedEvent Pin
byka24-Oct-16 7:26
byka24-Oct-16 7:26 
here my updated code. I have replace email with : Throw ex.
Is that what you mean?
I am not sure I am clear on what you have in mind. Could you share maybe the code?
:
VB
Private Sub OnTimedEvent(source As Object, e As ElapsedEventArgs)
     Try

         RetryOnTimeout(source, e)

     Catch ex As Exception
         While _currentRetry < 3
             RetryOnTimeout(source, e)
             _currentRetry = _currentRetry + 1
         End While

         modCommon.SendEmailExceptionToDev("ASH File System Watcher Outgoing: OnTimedEvent Exception", ex)
         Err.Clear()
     End Try

 End Sub
 Private Sub RetryOnTimeout(source As Object, e As ElapsedEventArgs)
     Try

         aTimer.Stop()
         Dim fileName As String = String.Empty

         While queueList.Count > 0
             If _SFTP.Connected = False OrElse _SFTP.SFTPState = Dart.Ssh.ConnectionState.Closed Then
                 _SFTP.Connect()
             End If

             fileName = queueList.Dequeue.ToString
             If Not fileName Is Nothing AndAlso fileName <> String.Empty Then
                 ProcessFile(fileName)
             End If
         End While

         If _SFTP.Connected = True Then
             _SFTP.Disconnect()
         End If

         aTimer.Start()
     Catch ex As Exception
         Throw ex
     End Try
 End Sub

GeneralRe: Windows server OnTimedEvent Pin
Eddy Vluggen24-Oct-16 7:54
professionalEddy Vluggen24-Oct-16 7:54 
GeneralRe: Windows server OnTimedEvent Pin
bogel bogel11-Dec-16 0:27
bogel bogel11-Dec-16 0:27 
GeneralRe: Windows server OnTimedEvent Pin
Eddy Vluggen11-Dec-16 0:32
professionalEddy Vluggen11-Dec-16 0:32 
QuestionHow to secure local database for windows form c# Deploy Pin
salar136928-Jun-16 6:46
salar136928-Jun-16 6:46 
AnswerRe: How to secure local database for windows form c# Deploy Pin
Eddy Vluggen28-Jun-16 7:06
professionalEddy Vluggen28-Jun-16 7:06 
AnswerRe: How to secure local database for windows form c# Deploy Pin
Eric P Schneider28-Jan-19 10:53
Eric P Schneider28-Jan-19 10:53 
QuestionAdd Code Singning Certificate to Project Setup created using Install Shield in Visual Studio 2012. Pin
Jaimesh.241112-May-16 0:49
Jaimesh.241112-May-16 0:49 
Rant[REPOST] Add Code Singning Certificate to Project Setup created using Install Shield in Visual Studio 2012. Pin
Richard Deeming12-May-16 2:04
mveRichard Deeming12-May-16 2:04 

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.