Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/10/2013 in all areas

  1. Take a look at this: New style FileSelectFolder
    1 point
  2. Gianni

    AutoIT Includes

    Hi Yamz The full list of AutoIt built-in functions is here (no need of #include) if you open the help of AutoIt you can see that many functions start with _ (underscore), that are not native functions and an appropriate #include is required if you want use that function. (In the help page is specified what include you need) bye
    1 point
  3. "it is 10 people in the world - who understand binary and who don't"
    1 point
  4. ward2000, But it is not that difficult to do if you have read and understood the tutorial: #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $hGUI = GUICreate("Test", 500, 500) $hTab_0 = GUICtrlCreateTab(10, 10, 480, 480) $hTab_00 = GUICtrlCreateTabItem("00") $hTab_01 = GUICtrlCreateTabItem("01") GUICtrlCreateTabItem("") GUISetState() $hTab_Win1 = GUICreate("", 200, 300, 20, 100, $WS_POPUP, $WS_EX_MDICHILD, $hGUI) $hTab_1 = GUICtrlCreateTab(0, 0, 200, 300) $hTab_10 = GUICtrlCreateTabItem("10") $hTab_11 = GUICtrlCreateTabItem("11") GUICtrlCreateTabItem("") GUISetState() While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit Case $hTab_0 Switch GUICtrlRead($hTab_0) Case 0 GUISetState(@SW_SHOW, $hTab_Win1) Case 1 GUISetState(@SW_HIDE, $hTab_Win1) EndSwitch EndSwitch WEnd All good? M23
    1 point
  5. pintas, Please do not necro-post like this - open a new thread and link if you want to ask a question. But make it a question with which we would be prepared to help - that one is completely out of bounds. And so following that double whammy... <click> M23
    1 point
  6. dickjones007, Check that the buttons are not being partly overlapped by other controls (probably labels). If they are, then they will not fire when clicked in the overlapping area as AutoIt does not know which of the controls to action and so does nothing. M23
    1 point
  7. Check in Chat, I posted a video the other day about regular expressions or "ASCII Puke" as it's sometimes called.
    1 point
  8. someday ill surely get to learn regexp but now it just looks to me like swearing from a comic book is there any great tutorial for it or something? (other than autoit help section) --answer to self: there is good tutorial in jchd's signature
    1 point
  9. Success: the requested key value as a string.
    1 point
  10. lee321987, No bug, it is Windows storing the data in ini files as strings. Just use Number when you read the value into your script to recast it. M23
    1 point
  11. Look at casting as an integer e.g. Int().
    1 point
  12. iamtheky

    AutoIT or Sikuli

    Holy Shit you invented the 404? *sure edit your post and ruin my joke.
    1 point
×
×
  • Create New...