View previous topic :: View next topic |
Author |
Message |
oib111 I post too much
Reputation: 0
Joined: 02 Apr 2007 Posts: 2947 Location: you wanna know why?
|
Posted: Sun Apr 27, 2008 11:38 am Post subject: window controls |
|
|
I was wondering how I edited window controls? Like if during runtime I wanted to set the text to something else. Or disable/enable a button. I know that if your using VS2008 and you make a form, you can just go like
Code: |
Button1->Text = "bla"
|
I was wondering how to do this when I'm using just plain old Win32 APIs?
_________________
8D wrote: |
cigs dont make people high, which weed does, which causes them to do bad stuff. like killing |
|
|
Back to top |
|
 |
lurc Grandmaster Cheater Supreme
Reputation: 2
Joined: 13 Nov 2006 Posts: 1900
|
Posted: Sun Apr 27, 2008 11:58 am Post subject: |
|
|
Setting:
SetWindowText
SetDlgItemText
Getting:
GetWindowText
GetDlgItemText
_________________
|
|
Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Sun Apr 27, 2008 1:27 pm Post subject: |
|
|
WM_SETTEXT or WM_GETTEXT messages
|
|
Back to top |
|
 |
oib111 I post too much
Reputation: 0
Joined: 02 Apr 2007 Posts: 2947 Location: you wanna know why?
|
Posted: Sun Apr 27, 2008 3:35 pm Post subject: |
|
|
But what about like enabling and disabling?
_________________
8D wrote: |
cigs dont make people high, which weed does, which causes them to do bad stuff. like killing |
|
|
Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Sun Apr 27, 2008 5:17 pm Post subject: |
|
|
EnableWindow / WM_ENABLE
|
|
Back to top |
|
 |
oib111 I post too much
Reputation: 0
Joined: 02 Apr 2007 Posts: 2947 Location: you wanna know why?
|
Posted: Sun Apr 27, 2008 5:22 pm Post subject: |
|
|
Is there a tutorial on this. Because I think it would help if I just read a tutorial on it.
_________________
8D wrote: |
cigs dont make people high, which weed does, which causes them to do bad stuff. like killing |
|
|
Back to top |
|
 |
lurc Grandmaster Cheater Supreme
Reputation: 2
Joined: 13 Nov 2006 Posts: 1900
|
|
Back to top |
|
 |
|