Search results for query: *

  1. N

    VB6 to VB.Net Migration

    Are there any tools to migrate an application developed in vb 6 using ADO into VB.Net and ADO.Net. The whole of .VBP has to be converted.
  2. N

    Single Instance of Application

    Thanks, I have used the following code. Private Function CheckInstance() As Boolean CheckInstance = False Dim p() As Process p = Process.GetProcessesByName(Application.ProductName) If p.Length > 1 Then CheckInstance = False Else CheckInstance = True End If Return CheckInstance End...
  3. N

    Single Instance of Application

    Single Instance of Application - Resolved Hi, I have a requirement where I have to check if an instance of my VB.Net application is already running, If not then I need to load the application. Also, when a menu option is clicked, the application has to check if the form is already open, if...
  4. N

    Command line arguments

    Command line arguments - Resolved I have a VB.Net application that reads the command line arguments. When I run the application from the folder that has the exe and dependent files it works well, but when I map this folder to a network drive and try to run the application it throws errors, what...
Back
Top