Option Compare Database
Option Explicit



Private Declare PtrSafe Function CloseHandle Lib "kernel32" ( _
        ByVal hObject As Long) As Long

Private Declare PtrSafe Function CreateToolhelpSnapshot Lib "kernel32" Alias "CreateToolhelp32Snapshot" ( _
        ByVal lFlgas As Long, _
        ByVal lProcessID As Long) As Long
      
Private Declare PtrSafe Function ProcessFirst Lib "kernel32" Alias "Process32First" ( _
        ByVal hSnapshot As Long, _
        ByRef uProcess As PROCESSENTRY32) As Long

Private Declare PtrSafe Function ProcessNext Lib "kernel32" Alias "Process32Next" ( _
        ByVal hSnapshot As Long, _
        ByRef uProcess As PROCESSENTRY32) As Long
        
Private Declare PtrSafe Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As LongPtr)



Private Type PROCESSENTRY32
   dwSize As Long
   cntUsage As Long
   th32ProcessID As Long
   th32DefaultHeapID As Long
   th32ModuleID As Long
   cntThreads As Long
   th32ParentProcessID As Long
   pcPriClassBase As Long
   dwFlags As Long
   szexeFile As String * 260
End Type



Public bRunning As Boolean



Public Function Prozessstart()

   bRunning = True
   
   Call ProzessSteuerung

End Function



Private Function ProzessSteuerung()

   Dim oExcel As Excel.Application
   Dim oExcelmappe As Excel.workbook
   Dim fso As New FileSystemObject
   Dim fsoFolder As Folder
   Dim fsoAllFiles As Files
   Dim fsoFile As File
   Dim sDatei As String
   Dim sPfad As String
   Dim sSQL As String
   Dim iVerschoben As Integer
   Dim iNichtVerschoben As Integer
   Dim iGestartet As Integer
   Dim iWartend As Integer
   Dim bErfassung As Boolean
   Dim dToday As Date
   Dim dNext As Date
   
   Do While bRunning = True
   
      If CheckApplication("excel.exe") = True Then
   
         Forms!Monitor!L_Status.Caption = "Excel läuft"
         PerformanceWait (500)
   
      Else
      
         Forms!Monitor!L_Status.Caption = "Excel läuft NICHT"
         PerformanceWait (500)
      
      End If
      
   Loop

End Function



Private Function CheckApplication(sApp As String) As Boolean

   Dim udt32Current As PROCESSENTRY32
   Dim lngHandle As Long
   Dim lngReturn As Long
   Dim bResult As Boolean
     
   bResult = False
   lngHandle = CreateToolhelpSnapshot(2&, 0&)
     
   If lngHandle <> 0 Then
       
      udt32Current.dwSize = Len(udt32Current)
      lngReturn = ProcessFirst(lngHandle, udt32Current)
         
      Do While Not (lngReturn = 0)
          
         If InStr(1, udt32Current.szexeFile, sApp, vbTextCompare) > 0 Then
            'MsgBox udt32Current.szexeFile, vbOKOnly
            bResult = True
            Exit Do
         End If
            
         lngReturn = ProcessNext(lngHandle, udt32Current)
       
      Loop
       
      Call CloseHandle(lngHandle)
     
    End If
    
    CheckApplication = bResult

End Function



Public Function PerformanceWait(Optional iMilliSec As Long)

   Dim i As Long
   Dim iRetry As Long
   
   If iMilliSec = 0 Then
      
      Sleep (100)
   
   Else
   
      iRetry = iMilliSec / 100
      
      For i = 0 To iRetry
         
         Sleep (100)
         DoEvents
      
      Next i
         
   End If

End Function
 

Visual basic (VB.net) Online Compiler

Write, Run & Share VB.net code online using OneCompiler's VB.net online compiler for free. It's one of the robust, feature-rich online compilers for VB.net language, running on the latest version 16. Getting started with the OneCompiler's VB.net compiler is simple and pretty fast. The editor shows sample boilerplate code when you choose language as VB.net. OneCompiler also has reference programs, where you can look for the sample code to get started with.

Read input from STDIN in VB.net

OneCompiler's VB.net online editor supports stdin and users can give inputs to programs using the STDIN textbox under the I/O tab. Following is a sample VB.net program which takes name as input and prints hello message with your name.

Public Module Program
	Public Sub Main(args() As string)
	 Dim name as String = Console.ReadLine()    ' Reading input from STDIN
   Console.WriteLine("Hello " & name)           ' Writing output to STDOUT
	End Sub
End Module

About VB.net

Visual Basic is a event driven programming language by Microsoft, first released in the year 1991.

Key Features

  • Beginner's friendly language.
  • Simple and object oriented programming language.
  • User friendly language and easy to develop GUI based applications.

Syntax help

Variables

Variable is a name given to the storage area in order to identify them in our programs.

Simple syntax of Variable declaration is as follows

Dim variableName [ As [ New ] dataType ] [ = initializer ]

Variable initialization

variableName = value

Conditional Statements

1. If

If condition-expression Then 
    'code
End If

2. If-else

If(conditional-expression)Then
   'code if the conditional-expression is true 
Else
  'code if the conditional-expression is false 
End If

3. If-else-if ladder

If(conditional-expression)Then
   'code if the above conditional-expression is true 
Else If(conditional-expression) Then
        'code if the above conditional-expression is true 
    Else
        'code if the above conditional-expression is false 
End If

4. Nested-If

If(conditional-expression)Then
   'code if the above conditional-expression is true
   If(conditional-expression)Then
         'code if the above conditional-expression is true 
   End If
End If

5. Select Case

Select [ Case ] expression
   [ Case expressionlist
      'code ]
   [ Case Else
      'code ]
End Select

Loops

1. For..Next

For counter [ As datatype ] = begin To end [ Step step ]
   'code
   [ Continue For ]
   'code
   [ Exit For ]
   'code
Next [ counter ]

2. For..Each

For Each element [ As datatype ] In group
   'code
   [ Continue For ]
   'code
   [ Exit For ]
   'code
Next [ element ]

3. While

While conditional-expression
   'Code 
   [ Continue While ]
   'Code
   [ Exit While ]
   'Code
End While

4. Do-while

Do { While | Until } conditional-expression
   'Code
   [ Continue Do ]
   'Code
   [ Exit Do ]
   'Code
Loop
Do
   'Code
   [ Continue Do ]
   'Code
   [ Exit Do ]
   'Code
Loop { While | Until } conditional-expression

Procedures

Procedure is a sub-routine which contains set of statements. Usually Procedures are written when multiple calls are required to same set of statements which increases re-usuability and modularity.

Procedures are of two types.

1. Functions

Functions return a value when they are called.

[accessModifiers] Function functionName [(parameterList)] As returnType
   'code
End Function

2. Sub-Procedures

Sub-procedures are similar to functions but they don't return any value.

Sub ProcedureName (parameterList)
'Code
End Sub