├── .gitignore ├── AUTHORS.txt ├── CobraWinLDTP.Wix ├── CobraWinLDTP.Wix.csproj └── CobraWinLDTP.wxs ├── CobraWinLDTP.sln ├── CobraWinLDTP ├── AUTHORS.txt ├── CobraWinLDTP.csproj ├── CobraWinLDTP.csproj.user ├── CobraWinLDTP.wxs ├── CookComputing.XmlRpcV2.dll ├── FAQ.txt ├── Interop.UIAutomationClient.dll ├── LdtpdService.cs ├── License.rtf ├── License.txt ├── Properties │ └── AssemblyInfo.cs ├── README.txt ├── UIAComWrapper.dll ├── WUIATestLibrary.dll ├── app.config ├── ldtp │ ├── Java │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── .DS_Store │ │ └── src │ │ │ └── com │ │ │ └── cobra │ │ │ └── ldtp │ │ │ ├── Callback.java │ │ │ ├── CallbackTest.java │ │ │ ├── Ldtp.java │ │ │ ├── LdtpExecutionError.java │ │ │ └── PollEvents.java │ ├── Perl │ │ ├── LDTP.pm │ │ ├── LDTP │ │ │ ├── Role │ │ │ │ └── RPCHandler.pm │ │ │ ├── Service.pm │ │ │ └── Window.pm │ │ └── README │ ├── __init__.py │ ├── client.py │ ├── client_exception.py │ ├── ldtp.rb │ ├── log.py │ ├── makefile │ └── state.py ├── ldtputils │ └── __init__.py └── ooldtp │ ├── __init__.py │ ├── client_exception.py │ ├── log.py │ └── state.py ├── Example ├── C# │ ├── TestLdtpClient │ │ ├── TestLdtpClient.sln │ │ ├── TestLdtpClient.suo │ │ └── TestLdtpClient │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── TestLdtpClient.csproj │ │ │ └── app.config │ └── TestLdtpClientNotepadPlus │ │ ├── TestLdtpClient.sln │ │ └── TestLdtpClient │ │ ├── Example1.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── TestLdtpClient.csproj │ │ └── app.config ├── Java │ ├── CallbackTest.java │ └── LdtpTest.java ├── Perl │ ├── startup.pl │ └── window.pl ├── PowerShell │ └── CobraWinLDTPSample.ps1 ├── Python │ ├── LinuxDesktopFileSelection.py │ ├── WindowsDesktopFileSelection.py │ ├── test.py │ └── windowstrayicon.py ├── Ruby │ └── test.rb └── VB.NET │ └── TestLdtpClient_by_VB │ ├── README │ ├── TestLdtpClient_by_VB.sln │ ├── TestLdtpClient_by_VB.suo │ └── TestLdtpClient_by_VB │ ├── Module1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ └── TestLdtpClient_by_VB.vbproj ├── Ldtp ├── Ldtp.cs ├── Ldtp.csproj ├── LdtpExecutionError.cs └── Properties │ └── AssemblyInfo.cs ├── Ldtpd ├── Combobox.cs ├── Common.cs ├── CommonStruct.cs ├── Core.cs ├── Generic.cs ├── Image.cs ├── InternalTreeWalker.cs ├── Keyboard.cs ├── Ldtpd.csproj ├── Menu.cs ├── Mouse.cs ├── ProcessStats.cs ├── Properties │ └── AssemblyInfo.cs ├── Screenshot.cs ├── Scrollbar.cs ├── Tab.cs ├── Text.cs ├── Tree.cs ├── Utils.cs ├── Value.cs └── WindowList.cs ├── README.md ├── SetEnvironmentVariable ├── EnvironmentSettings.cs ├── Properties │ └── AssemblyInfo.cs ├── SetEnvironmentVariable.csproj └── app.config └── appveyor.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CobraWinLDTP.Wix/CobraWinLDTP.Wix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP.Wix/CobraWinLDTP.Wix.csproj -------------------------------------------------------------------------------- /CobraWinLDTP.Wix/CobraWinLDTP.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP.Wix/CobraWinLDTP.wxs -------------------------------------------------------------------------------- /CobraWinLDTP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP.sln -------------------------------------------------------------------------------- /CobraWinLDTP/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/AUTHORS.txt -------------------------------------------------------------------------------- /CobraWinLDTP/CobraWinLDTP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/CobraWinLDTP.csproj -------------------------------------------------------------------------------- /CobraWinLDTP/CobraWinLDTP.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/CobraWinLDTP.csproj.user -------------------------------------------------------------------------------- /CobraWinLDTP/CobraWinLDTP.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/CobraWinLDTP.wxs -------------------------------------------------------------------------------- /CobraWinLDTP/CookComputing.XmlRpcV2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/CookComputing.XmlRpcV2.dll -------------------------------------------------------------------------------- /CobraWinLDTP/FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/FAQ.txt -------------------------------------------------------------------------------- /CobraWinLDTP/Interop.UIAutomationClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/Interop.UIAutomationClient.dll -------------------------------------------------------------------------------- /CobraWinLDTP/LdtpdService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/LdtpdService.cs -------------------------------------------------------------------------------- /CobraWinLDTP/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/License.rtf -------------------------------------------------------------------------------- /CobraWinLDTP/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/License.txt -------------------------------------------------------------------------------- /CobraWinLDTP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CobraWinLDTP/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/README.txt -------------------------------------------------------------------------------- /CobraWinLDTP/UIAComWrapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/UIAComWrapper.dll -------------------------------------------------------------------------------- /CobraWinLDTP/WUIATestLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/WUIATestLibrary.dll -------------------------------------------------------------------------------- /CobraWinLDTP/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/app.config -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/Java/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/Java/.classpath -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/Java/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/Java/.project -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/Java/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/Java/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/Java/bin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/Java/bin/.DS_Store -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/Java/src/com/cobra/ldtp/Callback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/Java/src/com/cobra/ldtp/Callback.java -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/Java/src/com/cobra/ldtp/CallbackTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/Java/src/com/cobra/ldtp/CallbackTest.java -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/Java/src/com/cobra/ldtp/Ldtp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/Java/src/com/cobra/ldtp/Ldtp.java -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/Java/src/com/cobra/ldtp/LdtpExecutionError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/Java/src/com/cobra/ldtp/LdtpExecutionError.java -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/Java/src/com/cobra/ldtp/PollEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/Java/src/com/cobra/ldtp/PollEvents.java -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/Perl/LDTP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/Perl/LDTP.pm -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/Perl/LDTP/Role/RPCHandler.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/Perl/LDTP/Role/RPCHandler.pm -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/Perl/LDTP/Service.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/Perl/LDTP/Service.pm -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/Perl/LDTP/Window.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/Perl/LDTP/Window.pm -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/Perl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/Perl/README -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/__init__.py -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/client.py -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/client_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/client_exception.py -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/ldtp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/ldtp.rb -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/log.py -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/makefile -------------------------------------------------------------------------------- /CobraWinLDTP/ldtp/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtp/state.py -------------------------------------------------------------------------------- /CobraWinLDTP/ldtputils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ldtputils/__init__.py -------------------------------------------------------------------------------- /CobraWinLDTP/ooldtp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ooldtp/__init__.py -------------------------------------------------------------------------------- /CobraWinLDTP/ooldtp/client_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ooldtp/client_exception.py -------------------------------------------------------------------------------- /CobraWinLDTP/ooldtp/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ooldtp/log.py -------------------------------------------------------------------------------- /CobraWinLDTP/ooldtp/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/CobraWinLDTP/ooldtp/state.py -------------------------------------------------------------------------------- /Example/C#/TestLdtpClient/TestLdtpClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/C#/TestLdtpClient/TestLdtpClient.sln -------------------------------------------------------------------------------- /Example/C#/TestLdtpClient/TestLdtpClient.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/C#/TestLdtpClient/TestLdtpClient.suo -------------------------------------------------------------------------------- /Example/C#/TestLdtpClient/TestLdtpClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/C#/TestLdtpClient/TestLdtpClient/Program.cs -------------------------------------------------------------------------------- /Example/C#/TestLdtpClient/TestLdtpClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/C#/TestLdtpClient/TestLdtpClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Example/C#/TestLdtpClient/TestLdtpClient/TestLdtpClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/C#/TestLdtpClient/TestLdtpClient/TestLdtpClient.csproj -------------------------------------------------------------------------------- /Example/C#/TestLdtpClient/TestLdtpClient/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/C#/TestLdtpClient/TestLdtpClient/app.config -------------------------------------------------------------------------------- /Example/C#/TestLdtpClientNotepadPlus/TestLdtpClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/C#/TestLdtpClientNotepadPlus/TestLdtpClient.sln -------------------------------------------------------------------------------- /Example/C#/TestLdtpClientNotepadPlus/TestLdtpClient/Example1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/C#/TestLdtpClientNotepadPlus/TestLdtpClient/Example1.cs -------------------------------------------------------------------------------- /Example/C#/TestLdtpClientNotepadPlus/TestLdtpClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/C#/TestLdtpClientNotepadPlus/TestLdtpClient/Program.cs -------------------------------------------------------------------------------- /Example/C#/TestLdtpClientNotepadPlus/TestLdtpClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/C#/TestLdtpClientNotepadPlus/TestLdtpClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Example/C#/TestLdtpClientNotepadPlus/TestLdtpClient/TestLdtpClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/C#/TestLdtpClientNotepadPlus/TestLdtpClient/TestLdtpClient.csproj -------------------------------------------------------------------------------- /Example/C#/TestLdtpClientNotepadPlus/TestLdtpClient/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/C#/TestLdtpClientNotepadPlus/TestLdtpClient/app.config -------------------------------------------------------------------------------- /Example/Java/CallbackTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/Java/CallbackTest.java -------------------------------------------------------------------------------- /Example/Java/LdtpTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/Java/LdtpTest.java -------------------------------------------------------------------------------- /Example/Perl/startup.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/Perl/startup.pl -------------------------------------------------------------------------------- /Example/Perl/window.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/Perl/window.pl -------------------------------------------------------------------------------- /Example/PowerShell/CobraWinLDTPSample.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/PowerShell/CobraWinLDTPSample.ps1 -------------------------------------------------------------------------------- /Example/Python/LinuxDesktopFileSelection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/Python/LinuxDesktopFileSelection.py -------------------------------------------------------------------------------- /Example/Python/WindowsDesktopFileSelection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/Python/WindowsDesktopFileSelection.py -------------------------------------------------------------------------------- /Example/Python/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/Python/test.py -------------------------------------------------------------------------------- /Example/Python/windowstrayicon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/Python/windowstrayicon.py -------------------------------------------------------------------------------- /Example/Ruby/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/Ruby/test.rb -------------------------------------------------------------------------------- /Example/VB.NET/TestLdtpClient_by_VB/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/VB.NET/TestLdtpClient_by_VB/README -------------------------------------------------------------------------------- /Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB.sln -------------------------------------------------------------------------------- /Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB.suo -------------------------------------------------------------------------------- /Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB/Module1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB/Module1.vb -------------------------------------------------------------------------------- /Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB/My Project/Application.myapp -------------------------------------------------------------------------------- /Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB/My Project/Resources.resx -------------------------------------------------------------------------------- /Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB/My Project/Settings.settings -------------------------------------------------------------------------------- /Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB/TestLdtpClient_by_VB.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Example/VB.NET/TestLdtpClient_by_VB/TestLdtpClient_by_VB/TestLdtpClient_by_VB.vbproj -------------------------------------------------------------------------------- /Ldtp/Ldtp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtp/Ldtp.cs -------------------------------------------------------------------------------- /Ldtp/Ldtp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtp/Ldtp.csproj -------------------------------------------------------------------------------- /Ldtp/LdtpExecutionError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtp/LdtpExecutionError.cs -------------------------------------------------------------------------------- /Ldtp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Ldtpd/Combobox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/Combobox.cs -------------------------------------------------------------------------------- /Ldtpd/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/Common.cs -------------------------------------------------------------------------------- /Ldtpd/CommonStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/CommonStruct.cs -------------------------------------------------------------------------------- /Ldtpd/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/Core.cs -------------------------------------------------------------------------------- /Ldtpd/Generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/Generic.cs -------------------------------------------------------------------------------- /Ldtpd/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/Image.cs -------------------------------------------------------------------------------- /Ldtpd/InternalTreeWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/InternalTreeWalker.cs -------------------------------------------------------------------------------- /Ldtpd/Keyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/Keyboard.cs -------------------------------------------------------------------------------- /Ldtpd/Ldtpd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/Ldtpd.csproj -------------------------------------------------------------------------------- /Ldtpd/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/Menu.cs -------------------------------------------------------------------------------- /Ldtpd/Mouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/Mouse.cs -------------------------------------------------------------------------------- /Ldtpd/ProcessStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/ProcessStats.cs -------------------------------------------------------------------------------- /Ldtpd/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Ldtpd/Screenshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/Screenshot.cs -------------------------------------------------------------------------------- /Ldtpd/Scrollbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/Scrollbar.cs -------------------------------------------------------------------------------- /Ldtpd/Tab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/Tab.cs -------------------------------------------------------------------------------- /Ldtpd/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/Text.cs -------------------------------------------------------------------------------- /Ldtpd/Tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/Tree.cs -------------------------------------------------------------------------------- /Ldtpd/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/Utils.cs -------------------------------------------------------------------------------- /Ldtpd/Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/Value.cs -------------------------------------------------------------------------------- /Ldtpd/WindowList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/Ldtpd/WindowList.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/README.md -------------------------------------------------------------------------------- /SetEnvironmentVariable/EnvironmentSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/SetEnvironmentVariable/EnvironmentSettings.cs -------------------------------------------------------------------------------- /SetEnvironmentVariable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/SetEnvironmentVariable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SetEnvironmentVariable/SetEnvironmentVariable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/SetEnvironmentVariable/SetEnvironmentVariable.csproj -------------------------------------------------------------------------------- /SetEnvironmentVariable/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/SetEnvironmentVariable/app.config -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldtp/cobra/HEAD/appveyor.yml --------------------------------------------------------------------------------