Welcome Guest ( Log In | Register)



 
Reply to this topicStart new topic
> Delphi Tutorial - Change Your Start Button Caption
sanook
post Feb 19 2005, 09:29 AM
Post #1





Guests






How to change your start button caption using Delphi!

(By the way, the start button will be renamed back to "start" after you restart your computer)

Here we go!

1. Create a new project in Delphi

2. Add a Button and an Edit box to your form, place them where you want.

3. Double click the button to enter the code editor so we can type code for our OnClick event.

4. The code for the OnClick event of our button should look like this:

CODE


procedure TForm1.Button1Click(Sender: TObject);

var Handle1,Handle2:hwnd;

begin

Handle1:=FindWindow('Shell_TrayWnd',nil); //get the handle of the taskbar

Handle2:=FindWindowEx(Handle1,0,'Button',nil); //get the handle of the start button from the taskbar

SetWindowText(Handle2,PAnsiChar(Edit1.Text)); //set the text

SendMessage(Handle2,Messages.WM_MOUSEMOVE,0,0); //used to refresh the caption of the start button

end;


5. Alright, run the program (F9) and enjoy!

The finished program should look something like this:



Just type a new caption in the text box and click on the button.

Piece of cake!
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. Free Email Service(10)
  2. Refresh Page After Back Button Hit(11)
  3. Nuclear War Scenarios(20)
  4. Background Image Swap Script(15)
  5. Read-only Folders In Xp(11)
  6. What Would You Rather Change In Windows(5)
  7. Looking To Start A New Runescape Clan(5)
  8. Radio Button(4)
  9. How To Start An Online Business(21)
  10. How To Change Windows Xp Language ?(20)
  11. Chage Ip Adress(2)
  12. Who Wants To Start A Mmorpg?(8)
  13. Reducing Windows Vista Start Menu Programs Response Time.(4)
  14. Help Start A Business(34)
  15. Start Multiple Programs With One Shortcut(15)
  1. Quake 3 Clan(6)
  2. A Couple Of Questions About Delphi(3)
  3. Operating System Not Found(13)
  4. Help! Php Or Just Html?(13)
  5. Computer Does Not Start(11)
  6. Make Anty-spyware Program In Delphi 7 ?(6)
  7. Change Your Computer Password(6)
  8. I Think That They Should Start Making Boxers For Girls.(4)
  9. Whow to change template on php nuke(4)
  10. Change Font Size On Taskbar Buttons(4)
  11. Change Domain Name On Account Creation?(2)
  12. Need Help To Start A Chicken Hatchery(4)
  13. How To Start With Seo(0)
  14. How To Create Java Button Or Frame(12)
  15. Cd Drive Eject Button Problem(3)


 



- Lo-Fi Version Time is now: 25th July 2008 - 08:19 PM