Jump to content

osirisqc

Active Members
  • Posts

    21
  • Joined

  • Last visited

osirisqc's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. hi all! i want to create an event when clicking on an item... i tried GUICtrlSetOnEvent but the event occur only when i click on a column, i want the event happens when i click on an item in the list (texts) ... and how to settle the event on a single click, how on dblclick??? because i have an event for single click and a different event for double clic... thanks for your help!
  2. i did i tried GUICtrlSetData(ID, "button", "CHANGE" ) but not worked
  3. GUICtrlRead( ID, "button") gives the caption of button... how we change the caption?? Thanks a lot for your help!
  4. Thanks a lot Zedna!!! it works now!
  5. this is what i'm asking : - what to pass to function? - and how to complete GUI building with that func?
  6. it creates ok the GUI in the script gui.au3 but when i call _MODULES_CreateGUI($dashboard) it doesnt create the listview on the GUI
  7. Hi! i've created a GUI in a file gui.au3 $dashboard = GUICreate("DASHBOARD", 1920, 1000, 0, 0) i included in the script : #include<module.au3> in the module.au3 script, i want to complete the GUI building : ------------- func _MODULES_CreateGUI($dashboard) GUICtrlSetState ( $hide_objects_, $GUI_SHOW ) $list = GUICtrlCreateListView("col1|col2|col3", 260, 52, 300, 400) GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 0, 100) GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 1, 100) GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 2, 70) GUICtrlSetOnEvent(-1, "list_Click") ;double click instead GUISetState(@SW_SHOW) EndFunc ------------ i'm calling _MODULES_CreateGUI(argument???) in gui.au3 to complete GUI building but it draws nothing, maybe because the GUI is not activated yet in the module.au3 script how to activate it to complete the building??
  8. i want to run a script from a script... i tried shellexecute and run, nothing worked out i got an "error opening file" with shellexecute because of a space in the path name. i dont want to compile the script each time to test it (run .exe is easy, but i need to compile to test and i want to skip compiling for testing) please help!!!
  9. i just need someone to work with in my main language and from same area as i am... I'm proud being from Quebec!!! SVP québécois repondez-moi!!
  10. Bonjour a tous!! j'ai une bonne base en programmation et j'essaie de comprendre ce language qui est nouveau pour moi... J'aimerais construire une interface utilisateur et créer des scripts automatisés. Je realise que l'apprentissage de ce language risque de me necessiter un long moment. J'ai donc décidé de chercher quelqu'un qui pourrais m'aider a coder et a comprendre le langage... Je suis du quebec et recherche un programmeur québécois, environ de mon age, j'ai 36 ans, mais un candidat plus jeune avec d'excellentes competences m'interesserais tout autant. Je veux developper mon site web et je suis presentement a coder un screensaver qui me permettra de financer mon projet. Je suis bloqué et je n'avance plus. J'offre de partager les revenus et peux payer le developpement de mes software d'ici a ce qu'ils soient rentables. Mes besoins ne sont pas trop "calés", des commandes IE, des proxy, du Excel et une interface graphique. SVP repondez moi!!
  11. Hi! 1st, i want to thank people helping other here, it is a nice resource for newbies like me!!! ok, i'm trying to read a search result from a page : http://stevemorse.org/jcal/latlon.php that is to find an address from longitude and latitude...lets make lon=40.0548 and lat=-75.4083 for example hitting "determine address" button will give 2 results : Virtual Earth 430 Upper Gulph Rd, Wayne, PA 19087 Google 401-431 Upper Gulph Rd, Wayne, PA 19087, USA when i look to the source (HTML) code of the page, i dont see anywhere search results, just a java script... i have to manually highlight the results, left click on it and get source code for the selection, and can find it in the source generated. ...but i want to get it automatically and pasted in a txt file, because i need to repeat the task for new coordinates... i made a lot of tries and cannot get it is anyone can help??
  12. great! i can use winminimizeallundo after, to restore back the windows to its original?
  13. I'm trying to find a function in AutoIt 3 that can minimize all opened windows on the desktop, like the desktop link... i found WinSetState ( "title", "text", flag ), but i need to retrieve all windows name to do with it Is there a better way???
×
×
  • Create New...