Results 1 to 11 of 11

Thread: [RESOLVED] How to display checkbox on CR8.5

  1. #1

    Thread Starter
    Addicted Member girl81's Avatar
    Join Date
    Apr 2006
    Location
    Malaysia
    Posts
    211

    Resolved [RESOLVED] How to display checkbox on CR8.5

    Hi all I have one question here.i use VB6,Access and CR 8.5
    Is there any way to display [ ]checkbox in Crystal Report? It will display whether the checkbox is tick or not. If there is a way please let me know.

    Thanks in advance

  2. #2
    Just Married shakti5385's Avatar
    Join Date
    Mar 2006
    Location
    Udaipur,Rajasthan(INDIA)
    Posts
    3,747

    Re: How to display checkbox on CR8.5

    why u want to do this type of thing

  3. #3

    Thread Starter
    Addicted Member girl81's Avatar
    Join Date
    Apr 2006
    Location
    Malaysia
    Posts
    211

    Re: How to display checkbox on CR8.5

    Thanks Shakti..

    i want to make a Fax form.I want to display a checkbox like in Access.So that it will displayed many checkbox to show that it is checked or unchecked.
    Such as:

    [ ]Urgent [ ]Comment [ ] Please Reply

    Any idea or suggestion?

  4. #4

    Thread Starter
    Addicted Member girl81's Avatar
    Join Date
    Apr 2006
    Location
    Malaysia
    Posts
    211

    Re: How to display checkbox on CR8.5

    Is it possible to do like what i want to do??

  5. #5
    Just Married shakti5385's Avatar
    Join Date
    Mar 2006
    Location
    Udaipur,Rajasthan(INDIA)
    Posts
    3,747

    Re: How to display checkbox on CR8.5

    just i am checking wait.... it is not done by me so please wait

  6. #6

    Thread Starter
    Addicted Member girl81's Avatar
    Join Date
    Apr 2006
    Location
    Malaysia
    Posts
    211

    Re: How to display checkbox on CR8.5

    Ok..thanks

  7. #7
    Just Married shakti5385's Avatar
    Join Date
    Mar 2006
    Location
    Udaipur,Rajasthan(INDIA)
    Posts
    3,747

    Re: How to display checkbox on CR8.5

    in my idea make a booleian function and return true false condition according to the situation...

  8. #8

    Thread Starter
    Addicted Member girl81's Avatar
    Join Date
    Apr 2006
    Location
    Malaysia
    Posts
    211

    Re: How to display checkbox on CR8.5

    Quote Originally Posted by shakti5385
    in my idea make a booleian function and return true false condition according to the situation...
    Yes..but i dont want to do like that..it will displayed

    [Y] Urgent [N] Comment [Y] Please Comment

    Do you have any idea..
    because i just want to know is it possible or not to display like what i want...

  9. #9
    Just Married shakti5385's Avatar
    Join Date
    Mar 2006
    Location
    Udaipur,Rajasthan(INDIA)
    Posts
    3,747

    Re: How to display checkbox on CR8.5

    [Y] Urgent [N] Comment [Y] Please Comment
    what is

  10. #10
    PowerPoster
    Join Date
    Oct 2002
    Location
    British Columbia
    Posts
    9,758

    Re: How to display checkbox on CR8.5

    Create a Formula field, set its Font to Wingdings and use this code (assuming your field is a yes/no field).

    If {Your Table Name.Your Field Name} Then Chr(254) Else Chr(168)
    Or
    If {Your Table Name.Your Field Name} Then "þ" Else "¨"

    Symbolic fonts such as Wingdings will display pictures instead of letters and numbers. All you need to know is which character to use. The Character Map (Start->Programs->Accessories->System Tools) will show you that information.
    Last edited by brucevde; Jul 31st, 2006 at 11:54 AM.

  11. #11

    Thread Starter
    Addicted Member girl81's Avatar
    Join Date
    Apr 2006
    Location
    Malaysia
    Posts
    211

    Re: How to display checkbox on CR8.5

    Quote Originally Posted by brucevde
    Create a Formula field, set its Font to Wingdings and use this code (assuming your field is a yes/no field).

    If {Your Table Name.Your Field Name} Then Chr(254) Else Chr(168)
    Or
    If {Your Table Name.Your Field Name} Then "þ" Else "¨"

    Symbolic fonts such as Wingdings will display pictures instead of letters and numbers. All you need to know is which character to use. The Character Map (Start->Programs->Accessories->System Tools) will show you that information.
    U are great Brucevde...i got it..i dont know what to say..u are my hero..
    i'm so wonder how you can do that..

    thanks a lot...

Posting Permissions

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



Click Here to Expand Forum to Full Width