Jump to content

adamski

Active Members
  • Posts

    48
  • Joined

  • Last visited

About adamski

  • Birthday 07/09/1981

Profile Information

  • Location
    England

Recent Profile Visitors

333 profile views

adamski's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Yes, I found that 'Download ZIP' link, but the problem is that the file is not a *.zip file. It is an *.exe file (ok, it is just a self extracting zip) which I am blocked from downloading.
  2. Hello, Is an AutoIt zip file available for the recent versions. They are available for old versions but newer ones are now self extracting zip executables. I am unable to download .exe files at work due to network restrictions. Please post a link to a zip if there is one - I can't find one. Thanks
  3. If I change a Notepad window (for example) to be a child of my gui, it doesn't work.
  4. Hi, In the past I have used windows messages to detect the creation and closing of windows. Is there a way to get a message when one of my child windows is closing/closed/destroyed? I only know how to hook top level windows, but I guess there must be a way to hook your own child windows too. Thanks
  5. Ah, thanks. That was easy to get it to work by running as x32. I can't see how to alter the F5 button to run as x32 by default though. thanks
  6. Hello, How can I create a 32bit IE control on 64bit windows? It defaults to the x64 version of IE which dosen't support Adobe Flash. $GUIMain = GUICreate("test", $GUIWidth, $GUIHeight, (@DesktopWidth - $GUIWidth) / 2, (@DesktopHeight - $GUIHeight) / 2) $oIE = _IECreateEmbedded() $oIEControl = GUICtrlCreateObj($oIE, 10, 10, $IEWidth, $IEHeight) Cheers.
  7. This forum Moves fast! PsaltyDS: Iwas replying to SmOke_N with the last post before the other had appeared! PsaltyDS & jchd: Yes, you are correct. It works in the Beta. I thought I'd tried it but my "Toggle AU3 Beta" appears not to work. Maybe it's because I'm on a x64 machine. The data has no pattern, but this is solved now - Thanks to all
  8. That would be 267*7=1869 lines! Is there not even a way to set each row of 7 elements at once?
  9. Same problem with the newest version . Any other suggestions?
  10. Ah right - not used AutoIt for a while. I'll update. I can't loop since the data I'm putting in is arbitrary not calculatable (I posted example data). Cheers
  11. Hello, I need to fill a 2d array with values. I have been using the code: ; Array Size Local $NumRows = 5 Local $NumColumns = 7 Local $MyArray[$NumRows ][$NumColumns] = [["one1", "two1", "three1", "four1", "five1", "six1", "seven1"], _ ["one2", "two2", "three2", "four2", "five2", "six2", "seven2"], _ ["one3", "two3", "three3", "four3", "five3", "six3", "seven3"], _ ["one4", "two4", "three4", "four4", "five4", "six4", "seven4"], _ ["one5", "two5", "three5", "four5", "five5", "six5", "seven5"]] This is fine until I need to have $NumRows = 267. At this size I get errors which I'm guessing is due to the length of the 'line' of code. Is there another way to define the elements of a 2d array other than setting each element individually? Thanks.
  12. Thanks martin, I may implement what you have suggested (as it happens, I am already using child windows with the tabs to display one), or may just switch to using a header control. Just need to decide if that would be too confusing for users. Cheers.
  13. Cheers Yashied! I had indeed downloaded WinAPIEx and was just looking into it. Thanks again!
  14. Thanks, I've looked at it and seems like I'm going to need the path to the running executable. How can I get this path from the windows handle?
  15. Perfect, thanks!
×
×
  • Create New...