 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
poursadeghi Guest
|
Posted: Wed Feb 07, 2007 12:55 am Post subject: How to disable Start button? |
|
|
How can I disable and enable start menu button by Delphi 6? |
|
| Back to top |
|
 |
Patrick Guest
|
|
| Back to top |
|
 |
Patrick Guest
|
Posted: Wed Feb 07, 2007 1:01 am Post subject: Re: How to disable Start button? |
|
|
Disable start button:
EnableWindow(FindWindowEx(FindWindow('Shell_TrayWnd', nil), 0,
'Button',nil),false);
Enable it:
EnableWindow(FindWindowEx(FindWindow('Shell_TrayWnd', nil), 0,
'Button',nil),true);
--Disable FULL--
var
Reg : TRegistry;
begin
Reg :=TRegistry.Create;
try
Reg.RootKey := HKEY_CLASSES_ROOT;
Reg.MoveKey( '\CLSID\{5b4dae26-b807-11d0-9815-00c04fd91972}',
'\CLSID\{-5b4dae26-b807-11d0-9815-00c04fd91972}',TRUE);
finally
Reg.Free;
end;
end;
--Enable FULL--
var
Reg : TRegistry;
begin
Reg :=TRegistry.Create;
try
Reg.RootKey := HKEY_CLASSES_ROOT;
Reg.MoveKey( '\CLSID\{-5b4dae26-b807-11d0-9815-00c04fd91972}',
'\CLSID\{5b4dae26-b807-11d0-9815-00c04fd91972}',TRUE);
finally
Reg.Free;
end;
end; |
|
| Back to top |
|
 |
poursadeghi Guest
|
Posted: Thu Feb 08, 2007 3:25 pm Post subject: how to transfer big file with socket or tcp ip |
|
|
how to send or recive file from local area netword
Big file (more than 3GB)
tank you . |
|
| Back to top |
|
 |
Powered by phpBB © 2001, 2006 phpBB Group .
|