Jump to content

webman

Members
  • Posts

    8
  • Joined

  • Last visited

About webman

  • Birthday 04/16/1987

Profile Information

  • Location
    Bishop Auckland, County Durham, UK
  • WWW
    http://webman.me.uk/
  • Interests
    Computers, Networking, Web Development, Amateur Radio

webman's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. _GUICtrlEditGetLineCount()
  2. Not too sure, but the first thing that springs to mind is that you would probably have to read the whole text, and split it with @CR and/or @LF to get individual lines.
  3. From the documentation:
  4. Why not replace the Windows shell with your app, and have it automatically restart if it gets closed? Eg. no Start Menu/Desktop - just your app.
  5. You can disable the Task Manager with one or both of the following registry keys: [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System] "DisableTaskMgr"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system\] "DisableTaskMgr"=dword:00000001
  6. Usually AltGr+Del is sufficient as an alternative to Shift+Ctrl+Alt+Del. You might want to consider a temporary registry write: a Group Policy setting that disables the task manager - but you will be presented with a warning you can't run it. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System] "DisableTaskMgr"=dword:00000001 Or, why not create an EXE to replace %Windir%\system32\TaskMgr.exe, and have it send Ctrl+Alt+Del to the active VNC window when launched? This could be a problem with Windows File Protection but once disabled should work OK.
  7. By the looks of it, they only support a web interface so you could tackle this from a couple of angles. First option would be to to a bit of digging into the sort of web requests that are sent to the relay to carry out certain actions, and use one of the UDFs here that allow you to easily send POST/GET requests as per a web browser. Or, you could create a "hidden" IE instance and sort of "click" the links to make it do what you want. (Check out the _IELinkGetCollection and _IELinkClickByIndex functions).
×
×
  • Create New...