Jump to content

Tripoz

Active Members
  • Posts

    113
  • Joined

  • Last visited

Recent Profile Visitors

181 profile views

Tripoz's Achievements

Adventurer

Adventurer (3/7)

0

Reputation

  1. i have code that i use in Windows 8(x86) and its work it perfectly.. but when i using it in Windows 7 (x64) it wont work.. the error is : "C:\Program Files (x86)\AutoIt3\Include\IE.au3" (344) : ==> The requested action with this object has failed.: $sTmp = $oWindow.type $sTmp = $oWindow^ ERRORi guess it about _IECREATE() and _IEATTACH on IE.au3 because my line its bout under 100. how to fix it?? i want to use mycode in x64 mode. thx btw
  2. i want it to insert in blank space on my AutoIT GUI...
  3. yes... sorry not to mention it. yes the X-Axis is not important to me (maybe we can called it 1,2,3,4,etc) n just focus on Y-Axis..
  4. yes... like that.. in excel we do in "number" to make Grafic like above. but in autoit is in "coordinate (X,Y)" so its difficult when i have some array number above 2000. i just want to simulate the curve of graphic (visual only)
  5. hi @water nope, i dont need in excel. i want to draw it in my GUI. but i confuse how to convert from "Coordinate" to be "Value". i just want to make a tiny one in my GUI. my code so far: #include <GUIConstantsEx.au3> GUICreate("My Draw") GUICtrlCreateGraphic(20, 220, 80, 80) local $val1 = 919, $val2 = 923, $Val3 = 921, $val4 = 918, $val5 = 922 $1_Val = $Val1 - $val2 $2_Val = $Val1 - $val3 $3_Val = $Val1 - $val4 $4_Val = $Val1 - $val5 GUICtrlSetGraphic(-1, $GUI_GR_DOT, 0, 0) GUICtrlSetGraphic(-1, $GUI_GR_LINE, 30, ($1_Val*5)) GUICtrlSetGraphic(-1, $GUI_GR_LINE, 60, ($2_Val*5)) GUICtrlSetGraphic(-1, $GUI_GR_LINE, 90, ($3_Val*5)) GUICtrlSetGraphic(-1, $GUI_GR_LINE, 120, ($4_Val*5)) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Select Case $nMsg = $GUI_EVENT_CLOSE Exit EndSelect WEnd
  6. Hi guys, I've reading helpfile to make graphic, but i how can i convert from some values that i have to become graphic? Let say i have 5 number: 500 , 503, 509, 502, 506 Thats just number (not coordinate in monitor) How to convert that values to become graphic (line) like excel do?? Thx btw
  7. i try like Danyfirex do...but nothing show up except gui
  8. nothing for me...
  9. is no easy way to do this??LOL hmmm... what about i write it in textbox in gui mode?but i think it will make slowly my code. i cant figure it out about what u mean, cos im too nubie here..
  10. hi, how to write/showing what i wrote in consolewrite when the *exe compiled ??? i need to monitor my script in exe mode. thx
  11. hi how to fixed this error code : --> IE.au3 T3.0-1 Warning from function _IEFormElementGetObjByName, $_IESTATUS_NoMatch --> IE.au3 T3.0-1 Error from function _IEAction(click), $_IESTATUS_InvalidDataTypemy code : ---edited--
  12. how to make my program running twice or more?? i try to run this code : --edited--but just could running for 1 time. after that i got error code : how to fix this?
  13. i tried myself n got what i want before.. ---edited---the next question is How to use _ArrayMax() in every 5 Array that i collect above.
  14. @kylomas 1. Its just substract calc 2. I will make the code collect 5array and then calculate it. If the result is negative it will repeat the process untill the result is positif numbers. Thx
  15. i tried to modif @kylomas's code. --edited--the idea is every 5 array it will calculate array[1] and array[3]. how to make this happen? thanks
×
×
  • Create New...