Jump to content

Zer0Velocity

Active Members
  • Posts

    71
  • Joined

  • Last visited

Zer0Velocity's Achievements

Wayfarer

Wayfarer (2/7)

0

Reputation

  1. the part I'm trying to understand "RemainingSizeLo" and the url below http://nzbget.net/RPC_API_reference#Method_.22listgroups.22
  2. Hi all, I can't understand this following statement taken from nzbget's rpc documentation. I wonder if anyone knows how I can convert the value or understand this statement? Remaining size of all (remaining) files in group in bytes, Low 32-bits of 64-bit value.
  3. Maybe you might want to look at this udf
  4. bump. Please can someone help me.
  5. Still looking for some help.
  6. Hello, I'm trying to communicate with Nzbget json-rpc, but the code I found on the forum doesn't return any values. Wondering If anyone could tell me why it won't delete items from nzbget or return any values? $URL = "http://127.0.0.1:53101/jsonrpc/" Local $Data1='editqueue("GroupDelete", 0, "", [1536-1557])' Dim $obj = ObjCreate ("WinHttp.WinHttpRequest.5.1") $obj.Open("POST", $URL, false) $obj.SetCredentials("nzbget","localpassword",0) $obj.SetRequestHeader("Content-Type", "application/json-rpc") $obj.Send($Data1) $oStatusCode = $obj.Status MsgBox(0,"Response",$oStatusCode & "---" & $obj.ResponseText)
  7. I just tested the udf and so far it seems to be working brill. Thank you for pointing me to this. And thank you all for helping
  8. Hey all, I have a IP range list which I would like to output the possible IP's in the range to another text. I'm hoping someone can help me. Example of first 2 IP ranges in the text file. 109.104.32-63.0-255 109.109.0-31.0-255
  9. That works as I need now, thank you BrewManNH for the help. Much appreciated.
  10. #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 117, 84, 192, 124) $Button1 = GUICtrlCreateButton("Browse", 24, 48, 75, 25) $Label1 = GUICtrlCreateLabel("", 20, 16, 76, 20) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Select Case $nMsg = $GUI_EVENT_CLOSE Exit Case $nMsg = $Button1 Local $var = FileOpenDialog("Choose a folder.", "", "EXE (*.exe)", 1 + 4 ) GUICtrlSetData($Label1, $var) EndSelect $time = "TIME: " & @HOUR & ":" & @MIN & ":" & @SEC GUICtrlSetData($Label1, $time) Sleep(60) WEnd
  11. Hello, I have a basic GUI I'm trying to update with a time stamp every sec. However, on the GUI I have a button with FileSelectFolder and when I use this button the time stamp stops on the GUI which I don't want to happen. Any suggestions on how I can make this work as I need?
  12. Hey, I would like to know if it's possible to reassign another programs hotkey without losing what is attached to it? I would like to use more than one instance of the same program, so then I can bind each instance with its own individual hotkey. Cheers
  13. Might want to take alook at RunAs
  14. I'm really stuck at this guys, I'm thinking it could be a gui problem where the createobj isn't resizing inside the gui when key is pressed. Any suggestions, I would be really grateful.
  15. Hi, I would like to know how I can use zoom with IE embedded. HotKeySet ("{F5}", "_ZoomIn") HotKeySet ("{F6}", "_ZoomOut") $object = _IECreateEmbedded () GUICreate("test", @DesktopWidth / 2 , @DesktopHeight / 2 ) $object_ctrl = GUICtrlCreateObj($object, 1,1, @DesktopWidth / 2, @DesktopHeight /2) GUISetState() _IENavigate($object, "myurl") Func _ZoomIn() $title = _IEPropertyGet($object, "title") ControlSend($title, "", $object, "^{NUMPADADD}") EndFunc Func _ZoomOut() $title = _IEPropertyGet($object, "title") ControlSend($title, "", $object, "^{NUMPADSUB}") EndFunc
×
×
  • Create New...