PDA

View Full Version : Help me Checkbox help



byserkann
12-05-2008, 04:11 AM
http://img150.imageshack.us/img150/4394/adszcw1.png

Checkbox true=a,c
Yükle Click

Messagebox=A ve C
else
Messagebox=b,d

thanks you

holtgrewe
12-05-2008, 02:11 PM
sorry,
...not sure what you are needing help with. Can you explain your problem a little more?

Imagine Programming
12-05-2008, 02:15 PM
sorry,
...not sure what you are needing help with. Can you explain your problem a little more?

And it's the third post that's unclear...

Number 1
Number 2

and this one ofcourse

shanex252
12-06-2008, 10:13 AM
serkan ne anlatmay çalıştın adamlar anlamamış :)

Imagine Programming
12-06-2008, 10:47 AM
serkan ne anlatmay çalıştın adamlar anlamamış :)

Say what? English please :)

shanex252
12-06-2008, 11:20 AM
I said "What does Serkan try to explain us? they don't understand you" OK? ;)

Imagine Programming
12-06-2008, 12:03 PM
I said "What does Serkan try to explain us? they don't understand you" OK? ;)

Well, if you understand him, please tell me... Because this is one of the three posts he put here. almost the same and very unclear.

reteset
12-06-2008, 02:10 PM
Well, if you understand him, please tell me... Because this is one of the three posts he put here. almost the same and very unclear.

as you can see above
his post contains nothing to be translated


he asks for something like this , if i understood well


if (CheckBox.GetChecked("A") and CheckBox.GetChecked("C")) then

Dialog.Message("Notice", "A and C were checked");

end

Imagine Programming
12-06-2008, 03:20 PM
as you can see above
his post contains nothing to be translated


he asks for something like this , if i understood well


if (CheckBox.GetChecked("A") and CheckBox.GetChecked("C")) then

Dialog.Message("Notice", "A and C were checked");

end

Right, well, okay:p

Careliyim
02-09-2009, 08:28 AM
Can anybody help me please? My problem is this.

I want a check box to do 2 things
if checkbox = checked then make shutcut on desktop
if checkbox = unchecktd then remove shutcut from desktop

I tryde everthing that i know but it wont work:S

Please help

Thank you very mutch

sorry for my 40% english:rolleyes

abnrange
02-09-2009, 09:20 AM
Careliyim,

Attached is an example - This is one way to do it. I 'm sure there are better ways to do what you want. Hope it helps

RizlaUK
02-09-2009, 10:38 AM
in the "On Click" event of the checkbox object put this code (make sure you edit shortcut details)

if CheckBox.GetChecked(this) then
-- is checked so create the shoutcut
Shell.CreateShortcut(Shell.GetFolder(SHF_DESKTOP), "Shortcut to My File", "C:\\My Prog\\MyExe.exe", "", "", "", 0, SW_SHOWNORMAL, nil);
else
-- is unchecked so remove the shortcut
Shell.DeleteShortcut(Shell.GetFolder(SHF_DESKTOP), "Shortcut to My File");
end

Careliyim
02-10-2009, 10:10 AM
in the "On Click" event of the checkbox object put this code (make sure you edit shortcut details)

if CheckBox.GetChecked(this) then
-- is checked so create the shoutcut
Shell.CreateShortcut(Shell.GetFolder(SHF_DESKTOP), "Shortcut to My File", "C:\\My Prog\\MyExe.exe", "", "", "", 0, SW_SHOWNORMAL, nil);
else
-- is unchecked so remove the shortcut
Shell.DeleteShortcut(Shell.GetFolder(SHF_DESKTOP), "Shortcut to My File");
end


Thanks very mutch i don''t know how to thank you hope you will be back soon. We can learn mutch of you.