Jump to content

water

MVPs
  • Posts

    26,756
  • Joined

  • Last visited

  • Days Won

    206

water last won the day on November 19 2025

water had the most liked content!

About water

Recent Profile Visitors

13,822 profile views

water's Achievements

  1. TheSaint has compiled a list of GUI Creators/Designers, which can be found here.
  2. I tested version 0.11 (both compiled as 32 and 64 bit) on Windows 11 Home 25H2. Everything works fine 👍
  3. $sText = $oDoc.Shapes("Group 5").GroupItems("Text Box 8").TextFrame.TextRange.Text Should return the text. You can find an example of how to edit the text in Microsofts Office Reference.
  4. And the result of this check is?
  5. I suggest to check for errors returned by SheellExecute.
  6. User Dotaznik wanted to tell you that you have to replace $Rights_Delete to $STANDARD_RIGHTS_DELETE in your script. This is true for $SYNCHRONIZE as well. The Standard_* constants can be found in the SecurityConstants.au3 include file.
  7. I'm unable to reproduce your problem! Which version of Excel do you run? Could you translate your XLS workbook to XLSX and test again?
  8. Select Case $iDPI >= 100 and $iDPI <= 400 $t.itemWidth = $iTextWidth - ($idPI-100)/25 Case Else $t.itemWidth = $iTextWidth - 5 EndSelect
  9. Added this UDF to the wiki
  10. There is an UDF available for LibreOffice. This way you can easily write data to a spreadsheet.
  11. BTW: I suggest to use the proposed naming convention as described here. So you always know which type of data to expect from a variable
  12. lets me think that some type of data is invalid. Can you please insert the following lines ahead of the failing statement in line #242? Consolewrite("Value of $amount: '" & $amount & "', Variable Type of $amount: " & VargetType($amount) & @CRLF) Consolewrite("Value of $Text: '" & $Text & "', Variable Type of $Text: " & VargetType($Text) & @CRLF)
  13. This has already been answered in post #1 by the OP 😉
×
×
  • Create New...