Jump to content

mscreffcs

Members
  • Posts

    12
  • Joined

  • Last visited

Profile Information

  • Interests
    I love Autoit. :)

mscreffcs's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. AUTOIT EXPERTS ARE YOU LISTENING!!! PLEASE HELP ME!!!!
  2. No. I think ControlListView will won't work! please help!
  3. Check for missing closing WEnd tag! OR you might forgot to close other closing tag inside the WEnd closing tag. Hope this helps!
  4. Thanks for your reply. ) You showed my right path. May be ControlListView will help me doing this. I'll have a try. More suggestions are always welcome
  5. Thanks for your reply. I don't want choose folder from AutoIT. For Example, I have selected a folder in Windows Explorer and I want to return name of that folder. Something tooltip like that.... Hope you understand!
  6. Hi Autoitans, There is one tough question for you. (May be not for you, guys!! ) I want to trap selected folder's full path in autoit. Thanks & Regards, Deepak
  7. YOU ROCK! Thanks a lot!
  8. Did you think of compiling AU3 files in DOS mode?
  9. Here are some lines from the code I am working on: #include <file.au3> #Include <Array.au3> ;Search folder $root = "C:\autotest\test" ;Grab list of txt files $FileList = _FileListToArray($root,"*.txt") ;_ArrayDisplay($FileList,"$FileList") ;Loop through text files For $X = 1 to $FileList[0] ;Combine filename with source folder $FileName = $root & "\" & $FileList[$X] ;Read file contents $String = FileRead($FileName) ;Find name $array = StringRegExp($string,"<find_me>",1) ;If name found, display it ; If IsArray($array) Then ;Firstname Lastname MsgBox(0,"", $array) ;EndIf Exit Hope this will help to resolve my problem. ------------------------------------ AUTOIT EXPERTS ARE YOU LISTENING!!! -----------------------
  10. Hello guys, I need your help. I want to search for a string <find_me> in list of *.xml files in a folder and in return I want to create a report like, For example, Filename Error description text.xml TRUE ; if tag found blahblan.xml FALSE ; if tag not found. Hope you can reply to me as soon as possible. ) Kind Regards, Deepak
  11. Hi Friends, Greetings to all! I am newbie to AutoIt. I want zip all subfolders in a folders with their names separately? If there are 3 subfolder in a folders namely, one, two and three. There should be three zip files, one.zip, two.zip and three.zip. Can it be possible in AutoIt? Thanks in advance! Regards, Deepak
×
×
  • Create New...