Jump to content

NeoFoX

Active Members
  • Posts

    141
  • Joined

  • Last visited

About NeoFoX

  • Birthday 07/11/1987

Profile Information

  • Location
    Netherlands

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

NeoFoX's Achievements

Adventurer

Adventurer (3/7)

0

Reputation

  1. I'm using Samurize for several years now.. have a look at that It can even show winamp, rss, weather on your desktop Neo
  2. Very nice indeed.. Aspecially if you could combine them (this and the thingy Valuater was talking about..)together Neo
  3. I think you mean something like this (Windows Media Player example): And I'm looking forward for the changes Neo
  4. Very nice I love it allready! (tested on Vista (32x) here) --> workes perfect! Neo
  5. Straight from the help file, with a little mod. : $var = DriveGetDrive( "all" ) If NOT @error Then For $i = 1 to $var[0] $type = DriveGetType($var[$i]) if $type = "Network" then MsgBox(1,"Drives" & $i, $var[$i] & " is a network-drive") EndIf Next EndIf Neo
  6. When I run notepad to open a file called test.txt (not the ++ version) from my Scriptdir or C:\ or D:\ And try the WinWaitActive with this.. WinWaitActive("test.txt") It works like a charm.. not matter where the file is standing. Neo
  7. My bad.. You have to remove the elseif.. until the endif.. that one checks if the checkbox is unchecked and so it sets the values of input6,input9 etc zo ""
  8. Doesn't it just work with: WinWaitActive(" - Notepad++") It does with the normal notepad Neo
  9. Quick and dirty fix Put this in you while loop: $state = GUICtrlRead($Checkbox1) if $state = 1 Then $text = GUICtrlRead($input3) GUICtrlSetData($Input6,$text) GUICtrlSetData($Input9,$text) GUICtrlSetData($Input12,$text) GUICtrlSetData($Input15,$text) GUICtrlSetData($Input18,$text) GUICtrlSetData($Input21,$text) GUICtrlSetData($Input24,$text) GUICtrlSetData($Input27,$text) GUICtrlSetData($Input30,$text) GUICtrlSetData($Input33,$text) GUICtrlSetData($Input36,$text) ElseIf $state = 4 Then $text = "" GUICtrlSetData($Input6,$text) GUICtrlSetData($Input9,$text) GUICtrlSetData($Input12,$text) GUICtrlSetData($Input15,$text) GUICtrlSetData($Input18,$text) GUICtrlSetData($Input21,$text) GUICtrlSetData($Input24,$text) GUICtrlSetData($Input27,$text) GUICtrlSetData($Input30,$text) GUICtrlSetData($Input33,$text) GUICtrlSetData($Input36,$text) endif Neo
  10. Perhaps the wmic command? wmic computersystem where name=localhost rename name=NewName ?? Neo
  11. Small edit: while 1 For $i = 1 To FileCountLines($file) $line = FileReadLine($file,$i) Next;read normally For $i = FileCountLines($file) To 1 Step -1 $line = FileReadLine($file,$i) Next;read backwards wend Now it's reading down,up,down,up,down,up.......
  12. Hey, Remove the " in the first Send fucntion: Dim $Array[3] $Array[0] = "JPM" $Array[1] = "Holger" $Array[2] = "Jon" for $i= 0 to 2 sleep(3000) Send( $Array[$i] ) Send(" $Array["&$i&"] ") Next Greetz, Neo
  13. That wasn't in the file so not included >_< he can try to do something himself... Greetz
  14. Hey... Like this?? Where the test.txt is your example.. $file = FileOpen("test.txt", 0) ; Check if file opened for reading OK If $file = -1 Then MsgBox(0, "Error", "Unable to open file.") Exit EndIf ; Read in lines of text until the EOF is reached Global $total = "" While 1 $line = FileReadLine($file) If @error = -1 Then ExitLoop if not StringInStr($total,$line,0) >= 1 Then $total = $total & $line & @lf EndIf Wend MsgBox(1,"Total",$total) FileClose($file) Greetz, Neo
  15. Well.. First I thought the decompile function was disabled. So Obfuscator could be an extra secure thingy.. But, maybe I'm wrong in that 'decompile-function'... Don't know how to do it then... Neo
×
×
  • Create New...