Results 1 to 24 of 24

Thread: Classic VB/WMI - How Do I Run a Process On a Remote System?

  1. #1

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Arrow Classic VB/WMI - How Do I Run a Process On a Remote System?

    Using VB and WMI you can run a process on any remote system on your network. The only requirements are that you have WMI on your system and you have Administrative prividgles on the remote system too.

    When you run this you will get a return value of 0 for success and a process id which you can verify by logging into the remote system and looking in the task manager process' list.

    VB Code:
    1. Option Explicit
    2. 'Copyright © 2005 by RobDog888 (VB/Office Guru™). All Rights reserved.
    3. '
    4. 'Distribution: You can freely use this code in your own
    5. '              applications provided that this copyright
    6. '              is left unchanged, but you may not reproduce
    7. '              or publish this code on any web site, online
    8. '              service, or distribute as source on any
    9. '              media without express permission.
    10. '
    11. Private Sub Command1_Click()
    12.  
    13.     On Error Resume Next
    14.    
    15.     Dim oProcess As Object
    16.     Dim lProcessID As Long
    17.     Dim lRet As Long
    18.    
    19.     Set oProcess = GetObject("winmgmts:{impersonationLevel=impersonate}!\\MyServer\root\cimv2:Win32_Process")
    20.     'Or
    21.     'Set oProcess = GetObject("winmgmts:{impersonationLevel=impersonate}!\\MyServer.MyDomain.com\root\cimv2:Win32_Process")    
    22.     lRet = oProcess.Create("Notepad", Null, Null, lProcessID)
    23.     MsgBox "Method returned result: " & lRet & vbNewLine & "Id of new process: " & lProcessID, vbOKOnly + vbInformation
    24.  
    25. End Sub
    Gangsta Yoda™ ®
    Attached Files Attached Files
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  2. #2
    Junior Member
    Join Date
    Nov 2005
    Posts
    29

    Re: How Do I Run a Process On a Remote System?

    Dear
    Whether i should pass any values to the procedure given.
    if not how does this connet to the server i need.
    i tried with this code. iget 0.
    can u briefly give me the solution.
    my problem is to run the vb file exe in the remote server
    from my system using vb code

    regards
    Nagarjuna

    Private Sub Command1_Click()

    On Error Resume Next

    Dim oProcess As Object
    Dim lProcessID As Long
    Dim lRet As Long

    Set oProcess = GetObject("winmgmts:{impersonationLevel=impersonate}!\\MyServer\root\cimv2:Win32_Process")
    'Or
    'Set oProcess = GetObject("winmgmts:{impersonationLevel=impersonate}!\\MyServer.MyDomain.com\root\cimv2:Win32_Proces s")
    lRet = oProcess.Create("Notepad", Null, Null, lProcessID)
    MsgBox "Method returned result: " & lRet & vbNewLine & "Id of new process: " & lProcessID, vbOKOnly + vbInformation

    End Sub[/Highlight]

  3. #3

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    You need Administrator permissions on the remote system and no parameters needed to pass.

    Change the "MyServer" part to the name of the remote system.
    If its returning null then its not executing because of a few different reasons like no permissions, bad computer name, bad file path, etc.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  4. #4
    Frenzied Member thegreatone's Avatar
    Join Date
    Aug 2003
    Location
    Oslo, Norway. Mhz:4800 x12
    Posts
    1,333

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    RD, is there any way to use this to close down applications as well?

    Also, is there a way to make the application visible?
    Zeegnahtuer?

  5. #5

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    I believe there is but I cant test it out as my system died and I'm on my server which doesnt have any form of VB on it. I'll post back when its reloaded or post here to remind me.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  6. #6
    Frenzied Member thegreatone's Avatar
    Join Date
    Aug 2003
    Location
    Oslo, Norway. Mhz:4800 x12
    Posts
    1,333

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    Quote Originally Posted by RobDog888
    I believe there is but I cant test it out as my system died and I'm on my server which doesnt have any form of VB on it. I'll post back when its reloaded or post here to remind me.
    Ah, ok, what is this method called? I can look it up myself hopefully

    Good luck with the PC.
    Zeegnahtuer?

  7. #7

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    I think its like this...
    VB Code:
    1. For each oProcess in GetObject("winmgmts:{impersonationLevel=impersonate}!//MyServer").ExecQuery("select * from Win32_Process where Name='notepad.exe'")
    2.     oProcess.Terminate
    3.     MsgBox Process.Name & " Terminated"
    4. Next
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  8. #8
    Frenzied Member thegreatone's Avatar
    Join Date
    Aug 2003
    Location
    Oslo, Norway. Mhz:4800 x12
    Posts
    1,333

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    Quote Originally Posted by RobDog888
    I think its like this...
    VB Code:
    1. For each oProcess in GetObject("winmgmts:{impersonationLevel=impersonate}!//MyServer").ExecQuery("select * from Win32_Process where Name='notepad.exe'")
    2.     oProcess.Terminate
    3.     MsgBox Process.Name & " Terminated"
    4. Next
    Ack... all that time it was Terminate. I've tried exit, remove, delete, kill... the list is endless. When i'm back to my machine with a compiler i'll check it out. thanks RD
    Zeegnahtuer?

  9. #9

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    Np, but I couldnt test it out right now.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  10. #10
    Frenzied Member thegreatone's Avatar
    Join Date
    Aug 2003
    Location
    Oslo, Norway. Mhz:4800 x12
    Posts
    1,333

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    Quote Originally Posted by RobDog888
    Np, but I couldnt test it out right now.
    Still looking for a way to make them visible to the other user on the PC though.
    Zeegnahtuer?

  11. #11

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    What type of process/app are you running? Maybe have to write another one to active the window. Then start one process and then start the other process that activates it?
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  12. #12
    Frenzied Member thegreatone's Avatar
    Join Date
    Aug 2003
    Location
    Oslo, Norway. Mhz:4800 x12
    Posts
    1,333

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    Quote Originally Posted by RobDog888
    What type of process/app are you running? Maybe have to write another one to active the window. Then start one process and then start the other process that activates it?
    I was trying to open Word actually, but in the end it will be a range of different programs, so i was hoping there was built in support actually.
    Zeegnahtuer?

  13. #13
    Frenzied Member thegreatone's Avatar
    Join Date
    Aug 2003
    Location
    Oslo, Norway. Mhz:4800 x12
    Posts
    1,333

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    Quote Originally Posted by thegreatone
    I was trying to open Word actually, but in the end it will be a range of different programs, so i was hoping there was built in support actually.
    Sorry to bump, but is there a way of oepning them and making them show remotely?
    Zeegnahtuer?

  14. #14

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    Sorry, been real busy lately and havent been posting. I have my system up but no apps installed yet so over the weekend I should be able to try some things.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  15. #15
    Frenzied Member thegreatone's Avatar
    Join Date
    Aug 2003
    Location
    Oslo, Norway. Mhz:4800 x12
    Posts
    1,333

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    Quote Originally Posted by RobDog888
    Sorry, been real busy lately and havent been posting. I have my system up but no apps installed yet so over the weekend I should be able to try some things.
    Thankyou RD. Looking forward to seeing what you manage to come up with (if its possible)
    Zeegnahtuer?

  16. #16
    Fanatic Member
    Join Date
    Aug 2005
    Location
    South Africa
    Posts
    760

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    Wow, that code looks pretty useful.
    Thanks!
    If I helped you out, please consider adding to my reputation!

    -- "The faulty interface lies between the chair and the keyboard" --

    VB6 Programs By Me:
    ** Dictionary, Thesaurus & Rhyme-Generator In One ** WMP Recent Files List Editor ** Pretty Impressive Clock ** Extract Firefox History **

  17. #17
    Hyperactive Member csKanna's Avatar
    Join Date
    Dec 2005
    Location
    Tech-Tips-Now.com
    Posts
    339

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    Quote Originally Posted by RobDog888
    [color=navy]Using VB and WMI you can run a process on any remote system on your network. The only requirements are that you have WMI on your system and you have Administrative prividgles on the remote system too.
    How do I know whether WMI is installed in my system?

    If not installed how/from where can install it?

    Is it free for personal/commercial use?

    Thanks in advance.

  18. #18

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    I believe WMI comes with Windows...

    Quote Originally Posted by MS
    WMI is preinstalled in Windows Vista, Windows Server "Longhorn", Windows Server 2003, Windows XP, Windows Me, and Windows 2000.
    Heres the best page for all about WMI including the WMI SDK link and redistributable link for older systems.

    http://msdn.microsoft.com/library/de...start_page.asp
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  19. #19
    New Member
    Join Date
    Oct 2006
    Posts
    6

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    i don't understand this line


    \\MyServer.MyDomain.com\root\cimv2:Win32_Process

    for example myservers name is comp2 and the file that i want to run is Project1.exe and it is located on the shareddocs folder

    can i do this changes now
    \\comp2\shareddocs:Project1.exe

    is that right

  20. #20

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    No, you need to create the process class object first before executing a process.

    VB Code:
    1. Set oProcess = GetObject("winmgmts:{impersonationLevel=impersonate}!\\comp2\root\cimv2:Win32_Process")
    2.  
    3. 'Try...
    4. lRet = oProcess.Create("\\comp2\shareddocs\Project1.exe", Null, Null, lProcessID)
    I cant test it out right now as my server is down so my network is essentially a workgroup. Let me know it this works for you.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  21. #21
    New Member
    Join Date
    Oct 2006
    Posts
    6

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    nope it didn't work still getting the null results...:S

    and please can someone explain me what does this code do?

    Set oProcess = GetObject("winmgmts:{impersonationLevel=impersonate}!\\comp2\root\cimv2:Win32_Process")
    Last edited by Tr00p3rX; Oct 18th, 2006 at 02:30 PM.

  22. #22

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    It gets a Win32_Process class object from which you can invoke the .Create function. Do you have Admin permissions?
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  23. #23
    Addicted Member WilliamRobinson's Avatar
    Join Date
    Feb 2005
    Posts
    219

    Angry Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    Hey Guys,
    Cant seem to get this working:
    Code:
        On Error Resume Next
        
        Dim oProcess As Object
        Dim lProcessID As Long
        Dim lRet As Long
        
        Set oProcess = GetObject("winmgmts:{impersonationLevel=impersonate}!\\the_machine\root\cimv2:Win32_Process")
        lRet = oProcess.Create("c:\share\1.zip", Null, Null, lProcessID)
      
        MsgBox "Method returned result: " & lRet & vbNewLine & "Id of new process: " & lProcessID, vbOKOnly + vbInformation
    If i just put in the file path "cmd" or "notepad" it work great but as soon as i change the path so somewhere outside the system32 dir it fails
    Nothing is Impossible you say?......Try slamming a revolving door!

  24. #24

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Classic VB/WMI - How Do I Run a Process On a Remote System?

    The app needs to be located on the remote system and you also need admin permissions.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width