Jump to content

marfdaman

Active Members
  • Posts

    403
  • Joined

  • Last visited

About marfdaman

  • Birthday 08/17/1990

Profile Information

  • Member Title
    ...and when you wake, the morning showers you with light...
  • Location
    Good old Holland
  • WWW
    http://marfdaman.googlepages.com
  • Interests
    Too much to start...

Recent Profile Visitors

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

marfdaman's Achievements

Universalist

Universalist (7/7)

0

Reputation

  1. I presume you mean _ComputerGetProcesses? I've just looked, but I can't seem to find neither cpu nor memory info for an individual process. Could you show me which function I need? btw I uploaded the fixed version with additional information about the process (including file version)
  2. The version information and ListView issues shouldn't be too hard, however I know of no way of retrieving the memory usage (or cpu usage) on a per process base other than through a third user program. And even If I manage to find out how to accomplish this, it is likely that I will only show them in the information window (i.e. when you click on the process in the list) as it might be too processor intensive to check and update that info for every item in the list as well. btw, thanks for all your input, I really appreciate it
  3. @DaWan I don't think I will implement a dll injector into the program @mrRevoked Thanks! @Zedna Yes, you're absolutely right about that. I did more or less copy the code to the init functions when I decided to make the lists refresh in stead of renew every x seconds, so I'll change that soon. And I'm glad you like the way it's written
  4. @CompWiz: Glad you like it @SleepyXtreme: I often had that problem too, it's one of the reasons I decided to make it.
  5. This kind of speaks for itself, or so I hope: it's a task manager to which I added several functions that I sometimes missed in the standard Windows version. These include removal of a running process (such as a virus that gets restarted before you get get a chance to delete it), being able to see where a process executable is located, window managing and some other minor things. I also added the possibility of saving the entire list(s) to an Excel file. - Needs beta to work - Hope you like it (hadn't AutoIt'ed in an age...) Screenshot: Alzo_Process_Management.au3 Example Excel export file: APMLists22-May-07.xls Exe file (for those who want it) Used UDFs: _GetExtProperty.au3 by Simucal ExcelCOM UDF by Locodarwin CPU usage function by Larry Process Suspend/Resume UDF by The Kandie Man _GetExtProperty.au3
  6. May I be the first to congratulate you, very well done val!
  7. I have to agree here, I'd rather keep the dragging titlelabel-only. It's very easy however to make the entire gui dragable, just create some additional labels on the parts you like with the extended style "$GUI_WS_EX_PARENTDRAG" and set their background colour to "$GUI_BKCOLOR_TRANSPARENT".
  8. Or something like this: #include <GUIConstants.au3> Opt("GUIOnEventMode", 1) $FakeWindow = GUICreate("") $MainWindow = GUICreate("Screensaver", @DesktopWidth, @DesktopHeight, 0, 0, $WS_POPUP, $WS_EX_TOPMOST, $FakeWindow) GUISetOnEvent(-11, "_EventHandler") WinSetTrans($MainWindow, "", 1) GUIRegisterMsg(0x0100, "KEYPRESS") GUISetState() While 1 Sleep(1000) WEnd Func KEYPRESS() Exit EndFunc Func _EventHandler() Switch @GUI_CtrlId Case -11, -3 Exit EndSwitch EndFunc Func OnAutoItExit() MsgBox(0, "Exit", "A key has been pressed or the mouse has been moved. Goodbye!") EndFunc ?
  9. But it is: try and drag the "Morgoth Mediaplayer" label
  10. I'm really glad about your positive comments, thanks
  11. I'll definately do that when I have enough time to spare. lol, I hadn't noticed that. As I said, I found it when I made my previous mediaplayer and it was still on my pc. I'll remove it from the zip. Thanks!
  12. Not much to say really, just a mediaplayer. Be kind on the graphics, I'm a first time Photoshop user :"> Media Player Screenshot: Edit: forgot to say I used a "Sound.au3" I found when I just startedI'll look try to find out who made it. I think it was RazerM's, tnx!, and Simucal's _GetExtProp udf as well. Thanks for those!
  13. Could you tell me what kind of error you're running into? I still use my udf without any problems.
×
×
  • Create New...