Messages - jazper [ switch to compact view ]

Pages: prev1 2 3 4 [5] 6 7 8 9 10 ... 19next
21
General Software Discussion / Re: Monitor system changes
« on: March 25, 2008, 08:12 PM »
This might be what you want:

FileMon monitors and displays file system activity on a system in real-time. Its advanced capabilities make it a powerful tool for exploring the way Windows works, seeing how applications use the files and DLLs, or tracking down problems in system or application file configurations. Filemon's timestamping feature will show you precisely when every open, read, write or delete, happens, and its status column tells you the outcome. FileMon is so easy to use that you'll be an expert within minutes. It begins monitoring when you start it, and its output window can be saved to a file for off-line viewing. It has full search capability, and if you find that you're getting information overload, simply set up one or more filters.

Filemon from Sysinternals(Microsoft)
http://technet.microsoft.com/en-us/sysinternals/bb896642.aspx

22
I don't really care for the text on those buttons, it's kind of hard to see it and just doesn't really work.  You should just create a Hint Tip so when they hover over the button that text is displayed.

23
General Software Discussion / Re: Disable Start Menu
« on: February 28, 2008, 02:06 PM »
Here you go: http://jazper.dcmembers.com/wp-content/uploads/2008/02/disablestart.zip

EDIT: I took Carol's idea for hotkeys and made a change.  Shift+Ctl+E will Hide the Start Button, Shift+Ctl+D will Show theStart button. The link above has the new changes in it.



This is *not* a service application. What you should do is put it in your StartUp group so when you log in,it'll launch and run in the background.  There is no GUI. It runs as "DisableStart.exe"

I only tested this on XP SP2


j.

24
General Software Discussion / Re: Disable Start Menu
« on: February 28, 2008, 11:08 AM »
Pretty simple to do actually in a few lines of code.

This is delphi code to do it:

Code: Delphi [Select]
  1. FHandle := FindWindowEx(windows.FindWindow('Shell_TrayWnd', ''), 0, 'Button', nil); // find the Start Button
  2.     ShowWindow(FHandle, SW_SHOW); // visible
  3.     ShowWindow(FHandle, SW_HIDE);  // not visible

I could throw this code in a "service" application that would always run and check to see if it's visible, and if it is set it to Hide....what you think?




25
Developer's Corner / Re: Peer-2-Peer app
« on: February 26, 2008, 10:30 AM »
Good freeware components outside of CodeGears native VCL socket components or if you want to avoid Winsock API then ICS (http://www.overbyte.be) and if you are willing to pay for commercial components the IP*Works (http://www.nsoftware.com) components are very good as well.



Pages: prev1 2 3 4 [5] 6 7 8 9 10 ... 19next
Go to full version