Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 13 of 13
  1. #1
    Join Date
    Apr 2007
    Posts
    22

    Help me Checkbox help



    Checkbox true=a,c
    Yükle Click

    Messagebox=A ve C
    else
    Messagebox=b,d

    thanks you

  2. #2
    Join Date
    Jul 2002
    Location
    Just South of Reality
    Posts
    778
    sorry,
    ...not sure what you are needing help with. Can you explain your problem a little more?

  3. #3
    Join Date
    Apr 2007
    Location
    Raalte, OV, Netherlands
    Posts
    3,287
    Quote Originally Posted by holtgrewe View Post
    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
    Bas Groothedde
    Imagine Programming :: Blog :: Familiar people here

    My AMS Plugins:

  4. #4
    Join Date
    Aug 2008
    Posts
    29
    serkan ne anlatmay çalıştın adamlar anlamamış

  5. #5
    Join Date
    Apr 2007
    Location
    Raalte, OV, Netherlands
    Posts
    3,287
    Quote Originally Posted by shanex252 View Post
    serkan ne anlatmay çalıştın adamlar anlamamış
    Say what? English please
    Bas Groothedde
    Imagine Programming :: Blog :: Familiar people here

    My AMS Plugins:

  6. #6
    Join Date
    Aug 2008
    Posts
    29
    I said "What does Serkan try to explain us? they don't understand you" OK?

  7. #7
    Join Date
    Apr 2007
    Location
    Raalte, OV, Netherlands
    Posts
    3,287
    Quote Originally Posted by shanex252 View Post
    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.
    Bas Groothedde
    Imagine Programming :: Blog :: Familiar people here

    My AMS Plugins:

  8. #8
    Join Date
    May 2006
    Posts
    1,443
    Quote Originally Posted by C B programming and webdesign View Post
    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

    Code:
    if (CheckBox.GetChecked("A") and CheckBox.GetChecked("C")) then
    
        Dialog.Message("Notice", "A and C were checked");
    
    end

  9. #9
    Join Date
    Apr 2007
    Location
    Raalte, OV, Netherlands
    Posts
    3,287
    Quote Originally Posted by reteset View Post
    as you can see above
    his post contains nothing to be translated


    he asks for something like this , if i understood well

    Code:
    if (CheckBox.GetChecked("A") and CheckBox.GetChecked("C")) then
    
        Dialog.Message("Notice", "A and C were checked");
    
    end
    Right, well, okay
    Bas Groothedde
    Imagine Programming :: Blog :: Familiar people here

    My AMS Plugins:

  10. #10
    Join Date
    Aug 2007
    Posts
    11

    Peekaboo!

    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

  11. #11
    Join Date
    Feb 2006
    Posts
    346
    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
    Attached Files

  12. #12
    Join Date
    May 2006
    Posts
    5,380
    in the "On Click" event of the checkbox object put this code (make sure you edit shortcut details)
    Code:
    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
    Open your eyes to Narcissism, Don't let her destroy your life!!

  13. #13
    Join Date
    Aug 2007
    Posts
    11

    Cool Thanks for fast answersing

    Quote Originally Posted by RizlaUK View Post
    in the "On Click" event of the checkbox object put this code (make sure you edit shortcut details)
    Code:
    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.

Similar Threads

  1. Checkbox Default Value
    By desertkoala in forum MSI Factory 2.0 Discussion
    Replies: 1
    Last Post: 07-11-2008, 03:39 PM
  2. Uso de CheckBox
    By luffymk in forum AutoPlay Media Studio 7.5
    Replies: 0
    Last Post: 11-30-2007, 06:52 AM
  3. How can I control feature installation using a checkbox?
    By Brett in forum MSI Factory 2.0 FAQ
    Replies: 0
    Last Post: 10-29-2007, 02:43 PM
  4. Default Checkbox state not being applied
    By Chris Wasley in forum Setup Factory 6.0
    Replies: 2
    Last Post: 01-27-2003, 03:12 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts