├── .gitattributes ├── .gitignore ├── frmMain.frm ├── proxy_exe.vbp └── proxy_exe.vbw /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear in the root of a volume 35 | .DocumentRevisions-V100 36 | .fseventsd 37 | .Spotlight-V100 38 | .TemporaryItems 39 | .Trashes 40 | .VolumeIcon.icns 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | -------------------------------------------------------------------------------- /frmMain.frm: -------------------------------------------------------------------------------- 1 | VERSION 5.00 2 | Begin VB.Form frmMain 3 | Caption = "proxy_exe" 4 | ClientHeight = 3180 5 | ClientLeft = 60 6 | ClientTop = 360 7 | ClientWidth = 4680 8 | LinkTopic = "Form1" 9 | ScaleHeight = 3180 10 | ScaleWidth = 4680 11 | StartUpPosition = 3 'Windows Default 12 | Visible = 0 'False 13 | End 14 | Attribute VB_Name = "frmMain" 15 | Attribute VB_GlobalNameSpace = False 16 | Attribute VB_Creatable = False 17 | Attribute VB_PredeclaredId = True 18 | Attribute VB_Exposed = False 19 | Option Explicit 20 | 21 | Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long 22 | 23 | Private Sub Form_Load() 24 | Dim sExecute As String 25 | Dim sOutput As String 26 | Dim lMetaCodeCount As Long 27 | Dim lCount As Long 28 | 29 | sExecute = App.Path & "\scip.exe" 30 | 31 | On Error Resume Next 32 | Open App.Path & "\proxy_exe.log" For Output As #1 33 | Print #1, Date & " " & Time & " " & sExecute 34 | Close 35 | 36 | Call ShellExecute(frmMain.hwnd, "Open", sExecute, "", App.Path, 1) 37 | 38 | Unload Me 39 | End Sub 40 | -------------------------------------------------------------------------------- /proxy_exe.vbp: -------------------------------------------------------------------------------- 1 | Type=Exe 2 | Form=frmMain.frm 3 | Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\..\WINDOWS\system32\stdole2.tlb#OLE Automation 4 | Startup="frmMain" 5 | ExeName32="proxy_exe.exe" 6 | Command32="" 7 | Name="proxy_exe" 8 | HelpContextID="0" 9 | CompatibleMode="0" 10 | MajorVer=1 11 | MinorVer=0 12 | RevisionVer=0 13 | AutoIncrementVer=0 14 | ServerSupportFiles=0 15 | VersionCompanyName="scip AG" 16 | CompilationType=0 17 | OptimizationType=0 18 | FavorPentiumPro(tm)=0 19 | CodeViewDebugInfo=0 20 | NoAliasing=0 21 | BoundsCheck=0 22 | OverflowCheck=0 23 | FlPointCheck=0 24 | FDIVCheck=0 25 | UnroundedFP=0 26 | StartMode=0 27 | Unattended=0 28 | Retained=0 29 | ThreadPerObject=0 30 | MaxNumberOfThreads=1 31 | 32 | [MS Transaction Server] 33 | AutoRefresh=1 34 | -------------------------------------------------------------------------------- /proxy_exe.vbw: -------------------------------------------------------------------------------- 1 | frmMain = 79, 162, 1048, 817, , 22, 23, 991, 678, C 2 | --------------------------------------------------------------------------------