Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (121 - 123 of 3878)

Ticket Resolution Summary Owner Reporter
#821 No Bug (NON-COMPONENT) In Script Precompiler Options BetaBug
Description

Would like to be able to specify already available compiler options in the script that i am compiling. For instance to specify what the name of the exe will be and what icon to use. Right now in order to make tools for various editing programs we have to create scripts that create scripts that compile scripts. This is a huge pain. It would be so nice to just put before your includes "#icon=myicon.ico".

#3191 No Bug SciTE Won't save hidden scripts. Jos BetaLeaf
Description

SciTE V3.6.0 How to reproduce:

  1. Create any new AutoIt Script.
  2. In Folders, right click on the newly created script and click properties.
  3. Check the 'Hidden' checkbox. Click ok.
  4. Edit the script enough to make any change and enable saving.
  5. Press Ctrl+s to save.
  6. It will tell you it cannot save there and asks if you want to save elsewhere.
  7. Close SciTE.
  8. Repeat step 2.
  9. Uncheck the 'Hidden' checkbox. Click ok.
  10. Repeat steps 4 and 5. Notice it saves fine now.

The Hidden attribute is the problem. Checked prevents it from saving, unchecked allows saving. What?

Unrelated to this ticket, I develope AutoIt Scripts but I'm not a developer? Is that intended? Can I become Developer if it isn't?

#3971 No Bug Integer not handled properly when calling object method BiatuAutMiahn@…
Description
#include <WinAPIError.au3>
Global $oErrorHandler = ObjEvent("AutoIt.Error", "COMErrorHandler")

Func COMErrorHandler()
    ConsoleWrite(_WinAPI_GetLastErrorMessage()&@CRLF)
    Local $errorDescription = $oErrorHandler.description
    ConsoleWrite("COM Error occurred: " & @error & @CRLF & "Description: " & $errorDescription)
EndFunc

$wbemFlagReturnImmediately = 0x10
$wbemFlagForwardOnly = 0x20
$colItems = ""

$Output=""
$Output = $Output & "Computer: " & $strComputer  & @CRLF
$Output = $Output & "==========================================" & @CRLF
$objWMIService = ObjGet("winmgmts:\\.\root\Microsoft\Windows\Storage")
$colItems = $objWMIService.ExecQuery('SELECT * FROM MSFT_Disk', "WQL", _
                                          $wbemFlagReturnImmediately + $wbemFlagForwardOnly)

Local $iMBytes=1024*1024
Local $iGBytes=1024*$iMBytes
Local $iSizeEfi=512*$iMBytes
Local $iSizeMsr=128*$iMBytes
Local $iSizeRec=$iGBytes


If IsObj($colItems) then
   For $objItem In $colItems
      If $objItem.Path<>"\\?\usbstor#disk&ven_iodd&prod__vhdd_gadget_1&rev_#230603390000000092&3#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" Then ContinueLoop
      $objItem.Clear(1,1)&@CRLF)
      $objItem.Initialize(2)&@CRLF)
      $objItem.Refresh()&@CRLF)
      $objItem.CreatePartition($iSizeEfi); works
      $objItem.CreatePartition($iSizeMsr); works
      $objItem.CreatePartition(2147483647)&@CRLF); Works
      $objItem.CreatePartition(2147483648)&@CRLF); Fails
      $objItem.CreatePartition(16*$iGBytes)&@CRLF); Fails
      ExitLoop
   Next
Else
   Msgbox(0,"WMI Output","No WMI Objects Found for class: " & "MSFT_Disk" )
Endif

Func ConvertSize($iSize, $iPrecision = 2)
    Local Const $aUnits = StringSplit("|K|M|G|T|P|E|Z|Y",'|',2)
    Local $iUnit = Int(Log($iSize)/Log(1024))
    Return String(Round($iSize / 1024 ^ $iUnit, $iPrecision)) & ' ' & $aUnits[$iUnit] & "B"
EndFunc

Calling CreatePartition with any integer greater than 2147483647 fails with Type Mismatch.

Note: See TracQuery for help on using queries.