Jump to content

Search the Community

Showing results for tags 'form builder source'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. When Compiling the Source with AutoIt v3.3.14.2, I encountered some issues. First I changed the Directives to remove the obsoleted values: #AutoIt3Wrapper_Run_Obfuscator=y #Obfuscator_Parameters=/striponly to be #AutoIt3Wrapper_Run_Au3Stripper=y #Au3Stripper_Parameters=/so Then in LIbs/resources.au3 there are two lines: ./Libs/resources.au3: $hImage = DllCall($ghGDIPDll,"int","GdipCreateBitmapFromStream", "ptr",$pStream, "ptr*",0) ./Libs/resources.au3: $pBitmap = DllCall($ghGDIPDll,"int","GdipCreateBitmapFromStream", "ptr",$pStream, "ptr*",0) That reference $ghGDIPDll that is not defined anywhere. Looking around I found a reference to $__g_hGDIPDll so I changed those two lines to the reference I found. In Ford Builder Source, around line 7081 where there is no space between the "]" and "Then". If $Parents[$i] = $GUIHandles[_GetCurrentWin()]Then to If $Parents[$i] = $GUIHandles[_GetCurrentWin()] Then Now it will compile. When I run it, I get: "D:\Downloads\AutoIt\Form Builder Source\Form Builder Source_stripped.au3" (22718) : ==> Subscript used on non-accessible variable.: WinMove($__hWnd_SciLexer, "", 152, 54, $hGUIWidth, $hClientSize[1]-54-$hOutputSize[1]-7) WinMove($__hWnd_SciLexer, "", 152, 54, $hGUIWidth, $hClientSize[1]-54-$hOutputSize^ ERROR Here I traced the problem down to line 14910: $hOutputSize = WinGetClientSize($hOutputEditor) Which is returning an Error and $hOutputSize being undefined value so the reference to $hOutputSize[1] is not accessible. The Handle $hOutputEditor is set on Line 267: $hOutputEditor = Sci_CreateEditor($hGUI, 152, 527, 646, 177) _Sci_DebugWindowStyle($hOutputEditor) Which is assigned a value of 0x0000000000000000 Any help on getting it to compile on the newer AutoIt would be appreciated. W
×
×
  • Create New...