Custom Query
Results (136 - 138 of 3883)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#47 | Rejected | FileInstall() to use the same Flag values as FileCopy | Bowmore | |
Description |
I would like FileInstall() to use the same Flag parameter values as FileCopy(). The two function essentially perform the same function copying a file from one location to another the only significant difference being that the source used by FileInstall() is fixed i.e. the compiled script. Quote:form FileCopy help flag [optional] this flag determines whether to overwrite files if they already exist. Can be a combination of the following: 0 = (default) do not overwrite existing files 1 = overwrite existing files 8 = Create destination directory structure if it doesn't exist (See Remarks). |
|||
#74 | Rejected | expose C (CRT) _finite(double x) function as IsFinite($x) in Autoit | Bowmore | |
Description |
Determines whether the given double-precision floating-point value is finite. http://msdn2.microsoft.com/en-us/library/sb8es7a8(VS.80).aspx |
|||
#118 | Fixed | Obfuscator (1.0.24.12) /striponly removing GUICreate() | Jos | Bowmore |
Description |
OS WinXP Pro Sp2 AutoIt 3.2.10.0 Beta 3.2.11.1 It would appear that Obfuscator when run with the /striponly parameter is being a little to agresive in what it strips. In the example below it is stripping out GUICreate() and GUICtrlCreateLabel() Original script #AutoIt3Wrapper_Au3Check_Stop_OnWarning=Y #AutoIt3Wrapper_Au3Check_Parameters=-q -d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6 #AutoIt3Wrapper_Run_Obfuscator=Y #Obfuscator_Parameters=/striponly #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_Run_Debug_Mode=n #EndRegion ### Set Options #Region Includes #include <File.au3> #include <GUIConstantsEx.au3> #include <ButtonConstants.au3> #EndRegion Includes #Region Global Varaibles Global $g_nMsg = 0 Global $sTitle = "Format RM ONYB Expanded" Global $Gui_frmMainCaption = $sTitle & " - Version " & FileGetVersion(@ScriptFullPath) Global $sData #EndRegion Global Varaibles #Region ### START Koda GUI section ### Form= Global $GUI_frmMain = GUICreate($Gui_frmMainCaption, 390, 103, 341, 156) Global $GUI_lblFormat = GUICtrlCreateLabel("File to format:", 4, 4, 323, 17) Global $GUI_edtFile = GUICtrlCreateInput("", 2, 20, 329, 21) Global $GUI_btnBrowse = GUICtrlCreateButton("Browse", 336, 20, 50, 21, $BS_FLAT) Global $GUI_btnRun = GUICtrlCreateButton("Run", 82, 56, 100, 30, $BS_FLAT) Global $GUI_btnQuit = GUICtrlCreateButton("Quit", 214, 56, 100, 30, $BS_FLAT) GUISetState(@SW_SHOW) #EndRegion ### START Koda GUI section ### Form= While 1 $g_nMsg = GUIGetMsg() Switch $g_nMsg Case $GUI_EVENT_CLOSE Exit Case $GUI_btnBrowse $sData = FileOpenDialog("Select File To Format", "", "RM NYB files(*.c01)|Allfiles (*.*)", 1) GUICtrlSetData($GUI_edtFile, $sData) Case $GUI_btnRun _Run() Case $GUI_btnQuit Exit EndSwitch WEnd Exit Func _Run() ;Do Stuff EndFunc ;==>_Run Obfuscated script output Global Const $GUI_EVENT_CLOSE = -3 Global Const $BS_FLAT = 0x8000 Global $g_nMsg = 0 Global $sTitle = "Format RM ONYB Expanded" Global $sData Global $GUI_edtFile = GUICtrlCreateInput("something", 2, 20, 329, 21) Global $GUI_btnBrowse = GUICtrlCreateButton("Browse", 336, 20, 50, 21, $BS_FLAT) Global $GUI_btnRun = GUICtrlCreateButton("Run", 82, 56, 100, 30, $BS_FLAT) Global $GUI_btnQuit = GUICtrlCreateButton("Quit", 214, 56, 100, 30, $BS_FLAT) GUISetState(@SW_SHOW) While 1 $g_nMsg = GUIGetMsg() Switch $g_nMsg Case $GUI_EVENT_CLOSE Exit Case $GUI_btnBrowse $sData = FileOpenDialog("Select File To Format", "", "RM NYB files(*.c01)|Allfiles (*.*)", 1) GUICtrlSetData($GUI_edtFile, $sData) Case $GUI_btnRun _Run() Case $GUI_btnQuit Exit EndSwitch WEnd Exit Func _Run() EndFunc [/autoit] |