Jump to content

TheDcoder

Active Members
  • Posts

    7,103
  • Joined

  • Days Won

    88

Everything posted by TheDcoder

  1. Try using: String($var) Before the if statement
  2. Both work for me: Local $var = "" If (StringLen($var) = 0) Then MsgBox(0, 1, "Works") EndIf If ($var = "") Then MsgBox(0, 2, "Works") EndIf I think something is wrong in your code... did you check for script breaking changes?
  3. @kcvinu I will start a PM & discuss the rest there, lets not pollute this thread further
  4. @kcvinu Maybe we should compile a list of useful programs for AutoIt Programmers/Scripters? What do you think?
  5. @kcvinu Yeah, sometimes tools like this are very helpful
  6. Thanks for the link! P.S You posted this in the Help & Support forum, I already reported your thread to be moved to the appropriate forum
  7. Good to hear that this case is closed after 9 months and 20 days!
  8. @Jos I am not trying to increase my post count, I did mention the thing about FUP... It did happen to me, when my dad called out ISP and complained about slow speeds, we didn't realize until the support person told us to check our FUP (The monthly bandwidth limit)...
  9. @JLogan3o13 I am aware of that, I was just conforming... Many users tend to mistake these forums for support forums (for AutoIt), Something like issues with IE UDF?
  10. Is this a issue not related to AutoIt?... If so, please check if you have ran out of your FUP
  11. #include <MsgBoxConstants.au3> Global Const $NUMBER_TO_SORT = 10000 Global Const $DIFFICULTY = 2000 Global Const $NO_OF_ITERATIONS = 6 Global $iCount = 0 Global $iSum = 0 Do $iSum = 0 $iCount = $iCount + 1 For $i = 1 To $NO_OF_ITERATIONS $iSum += Random(0, $DIFFICULTY, 1) Next Until $iSum = $NUMBER_TO_SORT MsgBox($MB_OK + $MB_ICONINFORMATION, "Bogosort", "Bogosort took " & $iCount & " tries to guess " & $NUMBER_TO_SORT & " out of " & $NO_OF_ITERATIONS & " randomly added up numbers (each not exceeding " & $DIFFICULTY & ')') P.S Its not AutoIT, Its AutoIt
  12. @water I searched, it told me something like: @guinness Now its clear after reading the question
  13. Oh ... Is ES2015 a coding standard for JS?
  14. Yeah, that is good enough Thanks
  15. I wanted to know the progress, Its not like I need to use maps now itself in my programs P.S No rush, only curious
  16. Hello AutoIt Team! I am very excited about the new upcoming Maps datatype... I was wondering about the progress of the datatype... Can anyone from the AutoIt team give me some details about it (like how far is it from stable) I played with Maps around a little bit, but I did not find any bugs (which is a good thing)... I think its ready for release Thanks in Advance, TD
  17. Oh, sorry I don't have any need for further modification, I will open a new thread if I feel like I need to do something
  18. @guinness Oh, should I make a new UDF?... Nah... Maybe sometime later, I am busy with my own projects P.S Consider my changes to be licensed under the Unlicence, You can adapt my version without any string attached
  19. I added Compatibility for au3 files too! , Now I can debug my scripts normally without compiling TD
  20. @minxomat Amazing!
  21. A mod will soon lock this thread I hope to see you with a legitimate question again!
×
×
  • Create New...