Advertisement
Advertisement
| 04.07.2008 at 02:37AM PDT, ID: 23300811 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 04.07.2008 at 02:41AM PDT, ID: 21295379 |
| 04.07.2008 at 02:43AM PDT, ID: 21295385 |
| 04.07.2008 at 02:46AM PDT, ID: 21295395 |
| 04.07.2008 at 02:48AM PDT, ID: 21295401 |
1: 2: 3: 4: 5: 6: |
procedure TForm4.Button1Click(Sender: TObject); var Handle: HWND; begin Handle := FindWindow(nil, 'Untitled - Notepad'); SetWindowLong(Handle, GWL_STYLE, (GetWindowLong(Handle, GWL_STYLE) and (not WS_SYSMENU))); end; |
| 04.07.2008 at 02:55AM PDT, ID: 21295429 |
| 04.07.2008 at 03:01AM PDT, ID: 21295451 |
| 04.07.2008 at 03:05AM PDT, ID: 21295471 |
| 04.07.2008 at 03:07AM PDT, ID: 21295475 |
| 04.07.2008 at 03:19AM PDT, ID: 21295505 |
| 04.07.2008 at 03:34AM PDT, ID: 21295549 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: |
procedure TForm4.Button1Click(Sender: TObject);
var Handle: HWND;
MenuHandle: HWND;
SubMenuHandle: HWND;
MenuItemInfo: TMenuItemInfo;
begin
Handle := FindWindow(nil, 'Untitled - Notepad');
SetWindowLong(Handle, GWL_STYLE, (GetWindowLong(Handle, GWL_STYLE) and (not WS_SYSMENU)));
MenuHandle := GetMenu(Handle);
SubMenuHandle := GetSubMenu(MenuHandle, 0);
MenuItemInfo.cbSize := SizeOf(MenuItemInfo);
MenuItemInfo.fMask := MIIM_STATE;
GetMenuItemInfo(SubMenuHandle, 8, true, MenuItemInfo);
MenuItemInfo.fState := MenuItemInfo.fState or MFS_DISABLED;
MenuItemInfo.fState := MenuItemInfo.fState and (not MFS_ENABLED);
SetMenuItemInfo(SubMenuHandle, 8, true, MenuItemInfo);
end;
|
| 04.07.2008 at 03:44AM PDT, ID: 21295583 |
| 04.07.2008 at 04:03AM PDT, ID: 21295650 |
| 04.07.2008 at 04:25AM PDT, ID: 21295759 |
| 04.07.2008 at 04:33AM PDT, ID: 21295791 |
| 04.07.2008 at 05:00AM PDT, ID: 21295959 |
| 04.07.2008 at 05:06AM PDT, ID: 21295983 |
| 04.07.2008 at 05:22AM PDT, ID: 21296079 |
| 04.07.2008 at 05:37AM PDT, ID: 21296204 |
| 04.07.2008 at 05:48AM PDT, ID: 21296301 |
| 04.07.2008 at 05:51AM PDT, ID: 21296324 |
| 04.07.2008 at 05:59AM PDT, ID: 21296390 |
| 04.07.2008 at 06:03AM PDT, ID: 21296420 |
| 04.07.2008 at 06:31AM PDT, ID: 21296649 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: |
unit Unit4;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls;
type
TForm4 = class(TForm)
Button1: TButton;
Timer1: TTimer;
procedure Timer1Timer(Sender: TObject);
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
fProcessHandle: HWND;
procedure StartApp;
public
{ Public declarations }
end;
var
Form4: TForm4;
implementation
{$R *.dfm}
procedure TForm4.FormCreate(Sender: TObject);
begin
StartApp();
end;
procedure TForm4.StartApp;
var StartupInfo: TStartUpInfo;
ProcessInformation: TProcessInformation;
begin
ZeroMemory(@StartupInfo, sizeof(StartupInfo));
StartupI |