Jump to content

Juanola

Active Members
  • Posts

    47
  • Joined

  • Last visited

Juanola's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. If I do in ms-dos: c:\program\arj\arj.exe l c:\file\c2000.arj>list.txt <--- I working OK and create one file named list.txt with the list of files compressed in the file rar. But if I do it script, the vars $STDERR_CHILD and $TDOUT_CHILD do not show anything and the file list isn't created!!! #include <Constants.au3> Local $foo = Run(@ComSpec & " /c c:\program\arj\arj.exe l c:\file\c2000.arj>list.txt","c:\program\arj", @SW_HIDE, $STDERR_CHILD + $STDOUT_CHILD) Local $line While 1 $line = StdoutRead($foo) If @error Then ExitLoop MsgBox(0, "STDOUT read:", $line) Wend While 1 $line = StderrRead($foo) If @error Then ExitLoop MsgBox(0, "STDERR read:", $line) Wend And if I do it other script it does not work either. run ("c:\program\arj\arj.exe l c:\file\c2000.arj>list.txt","c:\program\arj",@SW_HIDE) ANY HELP PLEASE?
  2. Hi!! How Can I show one line what show one description of the option what have the user selected in one combo before of what it option is selected for the user pressing the key Intro or the click of the mouse ? I move up and down of the options of one combo and without select any option, every time what I move for on one option is show in one line one description of the option. Thanks!
  3. How Can I show one SplashTextOn ontop only when my gui have the focus? I use the option "0" 0 = Center justified/always on top/with title (default) But it ALWAYS show the splashtexton on all the programs and I only want what the splashtexton show ontop on my GUI. With the msgbox I use the the window handle to use as the parent for this dialog. But How Can I do it with the splashtexton ? Thank you!
  4. $numbers=GUICtrlCreateCombo("",25,$top,300,20,$CBS_DROPDOWNLIST) $number_end=100000 $list_numbers="1|" FOR $ini_number=2 to $number_end step 1 $list_numbers=$list_numbers & $ini_number & "|" Next GUICtrlSetData($numbers,$list_numbers,"330000") I want add in the list combo the value range of number of 1-100000 Thank you!
  5. Yes. I have read. But before my scripts wasn't detecting any virus. I have used obfuscator, I have compiled using the script obfuscated and now all my news obfuscated exe's have virus. Thank you!
  6. I have used Obfuscator with my scripts and now all they are detected as virus and deleted by antivirus Mcafee. Name: SHOWSUPERHIDDEN Detected as: W32/Autorun.worm.zf.gen Any help?
  7. Is there any solution more fast what it for know if one pc have internet connection active? If Ping("www.google.com", 150) Then Return "Connected" else Return "No connected" endif Thanks!
  8. Is there any function what return one array of the files of one folder? Thanks!
  9. Thank you an other time Authenticity!!! Problem SOLVED!!!
  10. I want create one colours palette where the user can select the colour of every control. What is the solution more fast for do it? I have thought create one listview with all the colors and the user do click on the column of the color selected, but the problem is what it take a long time in fill the listview with all the colours. On other solution is create one combobox with all the colours and what the user select the colour. How Can I create one combobox what show the colours and no the values hex? Thanks.
  11. Thank you brother! But I want do it with Autoit. I want monitoring the speed upload and speed download general and the speed upload and download of one specific file. Can do it with Autoit? Can you help me? Thanks!
  12. How Can I know the speed download and the speed upload general used ONLINE of internet? And the speed download and the speed upload used ONLINE by one specific file? Thanks!
  13. But ShellExecute doesn't return any output result. Thank you!
  14. Thank you!!! But it isn't working in scan.exe. One question: Is there other solution for return the output of a DOS command to Autoit? If I do in DOS line command scan c:\ It show all the files scanned in one msdos windows, but If I put: scan c:\ >files_scanned.txt When finalize the scan the file "files_scanned.txt" is all empy. My question is: If one msdos program haven't returned nothing in one file output either it will return nothing in one function stsoutread? any help?
×
×
  • Create New...