Jump to content

ermilemerson

Active Members
  • Posts

    23
  • Joined

  • Last visited

ermilemerson's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Dim $testcase = 1 $status = GUICtrlCreateLabel(" ",100, 215) GUICtrlSetData($status,"Test case $testcase") How will i be able to do print this output Test case 1 What's wrong with my syntax?
  2. The problem is.. the window flashes in a split second I have make used of other window present in the screen to solve it. thanks for the help ^^
  3. If WinActive("Microsoft Office Excel") Then ExitLoop What's wrong with this code for me to be able to exit the while loop
  4. I tried this one Do Until WinActive("Microsoft Office Excel") It worked but my problem now is with excel. I am having problem with the filter feature of it. I don't even know what UDF to use thanks
  5. While WinWaitActive("Untitled - Notepad") = 1????? WEnd I need to loop a series of task then i looping must stop when the said windows appear. thanks in advance ^^
  6. Guys may i know how to generate numbers (1-infinity) in a column in ms excel using autoit? e.g. A 1 2 3 4 5 5 6 7 8 9 10 11 . . . . . 10000 Thanks
  7. What is the right way to do this? WinWaitActive(GUICtrlRead($myvariable) "- Notepad")?? Need some assistance pls. tnx
  8. Run('excel 'GUICtrlRead($inputpath), "-1", @SW_HIDE)
  9. Guys is it possible to create an automated sorting script that makes use of MS Excel without showing the Excel environment on my screen? Like for example, I will run this exe file created from autoit then the exe file will have to make use of excel for sorting. I want to hide the process happening on my screen and just wait for the results. Thanks in advance
  10. Thanks so much enaiman ^^
  11. Guys, I need help I am being asked to make a gui with inputbox and browse button Here is what I need to do Whenever I press browse button and open a txt file, the path must be indicated in the input path and output path inputboxes And whenever I enter a path in the input path input box, it must be displayed on the ouput box. Hope someone can help me, I will be very thankful. #include <GUIConstants.au3> main() Func main() GUICreate(" Filter Results", 387, 200, @DesktopWidth / 2 - 260, @DesktopHeight / 2 - 45) $filter = GUICtrlCreateButton("Filter", 125, 170,100, 23) GUICtrlCreateLabel("**Input Path**", 150, 35) $path = GUICtrlCreateInput("",10,53,367,23) $browse = GUICtrlCreateButton("Browse File", 135, 81,100, 23) GUICtrlCreateLabel("**Output Path**", 148, 111) $output = GUICtrlCreateInput("",10, 128,367,23) GUISetState() $msg = 0 While $msg <> $GUI_EVENT_CLOSE $msg = GUIGetMsg() Select Case $msg = $browse FileOpenDialog ("Browse", "C:\", "Text Documents (*.txt)") EndSelect WEnd EndFunc
  12. http://i238.photobucket.com/albums/ff153/e...n/untitled2.jpg http://i238.photobucket.com/albums/ff153/e...an/untitled.jpg
  13. here's the one to be considered
  14. here's the one to be ignored untitled.bmp
  15. uhm water, what if it can't see any visible text or hidden text?
×
×
  • Create New...