Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/12/2024 in all areas

  1. A bit of a different approach : #include <Excel.au3> Local $oExcel = _Excel_Open() Local $oWorkbook = _Excel_BookOpen($oExcel, @ScriptDir & "\_Excel1.xls") Local $oRange = $oWorkbook.Sheets(1).Range("A1:K7") Local $oList = $oRange.SpecialCells($xlCellTypeBlanks) ConsoleWrite($oList.count & " empty cells found" & @CRLF) For $oCell In $oList ConsoleWrite($oCell.Address & @CRLF) Next $oList.value = "<<Empty>>"
    1 point
  2. @Jos I just did a test by adding consecutive commas separating each parameter: _WinHttpSimpleFormFill(,,,, call tip appears correctly - showing correct parameter. When I type "X" correct parameter is highlighted When I delete few comma/parameters then it still highilight the $sData2 instead $sActionPage: Is it something related to LUA or to internal SciTE (N.H.) ?
    1 point
  3. How can I turn a video image created by winmm.dll to fullscreen? The answer could be simple: resize it to fullscreen. Yes I thought that way too. But there was a problem when I wanted to make it a fullscreen while the video was in paused mode. Normaly it worked, but , once in while, the image would not stretch to fullscreen even though the window size was stretched to fullscreen. There was no problem while the video was playing. So I thought that the problem would be solved if the video was resumed just before the resize process and paused again after the resize. But, no, it did not solve the problem. Then I noticed that a stretch to 'maximized' window never failed. So I changed the fullscreen process to 2 steps of resizing. First maximize it and then stretch it to fullscreen. Bingo! The problem was solved. A small find, but big satisfation. The latest version of zPlayer adopted this solution.
    1 point
  4. UEZ

    TaskPin

    Nice tool and add-on for the taskbar to access some tools faster. I like the concept - well done. 👍 The d in Folders.ini is missing. 😉
    1 point
  5. Nine

    Hex conversions

    Try this instead : $HexLong = 0xc057119da597d49d $Long=-92.275247 $tUint = DllStructCreate("int64 int") $tFloat = DllStructCreate("double flt", DllStructGetPtr($tUint)) $tUint.int = $HexLong ConsoleWrite($tUint.int & @CRLF) ConsoleWrite($tFloat.flt & @CRLF) $tUint.int = 0 ConsoleWrite($tUint.int & @CRLF) ConsoleWrite($tFloat.flt & @CRLF) $tFloat.flt = $Long ConsoleWrite($tUint.int & @CRLF) ConsoleWrite($tFloat.flt & @CRLF) ConsoleWrite(Hex($tUint.int, 16)& @CRLF)
    1 point
  6. Please try latest version of the scripts as I was able to replicate and hopefully fix this also for you.
    1 point
×
×
  • Create New...