Jump to content

Guille

Members
  • Posts

    16
  • Joined

  • Last visited

Guille's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hi all. Long time with entering here but in the end there is always something to code I'm here today because I'm sharing a Filserve account with 3 friends and insteed of setting rules of days we can use it or not to avoid ban, I'm thinking in a small script that would check if any download in running in any of the four computers and send the info to all scripts of other mates. By writing into an online file or someting. I would like to know if something like that has already been coded and can be used or any tips to check for download, send a status online etc.. Thanks in advance.!
  2. Thanks a lot, i've got an idea to where I've to looking for now, I'm a bit lost in IE coding. I'll try this way.
  3. well all I need is the "(you click button)" code
  4. HI I need to code a bit of software that counts how many times I click on a webpage button. To give you an idea it could be the search button on google page. I've a good knowledge of AutoIt but very small in IE coding and I haven't found any function that detects a click on a form. Does someone got an idea to how I can do this? thanks in advance.
  5. ok got my answer thx to you i had process guard blocking my exe for unknown reason ..
  6. XP pro, with autoit v3.1.0 same error when compiling with beta v3.1.1.107 modified nthing, and no idea what packer is so should be default. thx
  7. Hi all, i'm not able to run my program once I compiled it, I got "Descriptor not valid" or something like "Descriptreur non valide" in french. I tried to find out myself in forum and web and nothing. Someone got an idea? thanks in advance.
  8. Thx to relply, I already think of it but the problem is I would delete and then recreate in a random order and then after a while I could have: TAB 1 \ TAB 4 \ TAB3 \ TAB 2 So I can't permit it, "My" solution to the problem is to disable all the controls I have (11 controls) and then enable then again, shame that they still stay in white when disabled. Tab is really bugy.. I don't really like it but it's the best i can do.
  9. it cannot be done, isn't it? Plz some can tell me. I pretty sure but I need a confirm.
  10. New question: is it possible to disable (or hide) a tab? I can't find out a "working" way to do that from code.
  11. Thx a lot, It works perfectly, and is there a way to change the color of inside the tab?
  12. Hi all, new question: Why, with this code, the tab is not displayed when there is a group arroud it? a bug? is there a way to display it? Is it possible to set the inside of the tab at the same color that the rest of form? (not white). Thx #include <GUIConstants.au3> ; == GUI generated with Koda == $Form1 = GUICreate("AForm1", 622, 441, 192, 125) $Group1 = GUICtrlCreateGroup("AGroup1", 72, 72, 449, 289) $Tab1 = GUICtrlCreateTab(136, 144, 313, 169) $TabSheet1 = GUICtrlCreateTabItem("TabSheet1") $TabSheet2 = GUICtrlCreateTabItem("TabSheet2") $TabSheet3 = GUICtrlCreateTabItem("TabSheet3") GUICtrlCreateTabItem("") GUICtrlCreateGroup("", -99, -99, 1, 1) GUISetState(@SW_SHOW) While 1 $msg = GuiGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case Else ;;;;;;; EndSelect WEnd Exit
  13. So greet! It's what I need ^^ As said Sokko: "making a small code change, running the script, exiting, making another change, running, exiting, making a change..." So boring when you are used to such tools... Thx guys
  14. I mean a grafic tool, basicaly the same as "GUI builder" but that allow you to load an existing GUI, not only create.
×
×
  • Create New...