Alpha Software Mobile Development Tools:   Alpha Anywhere    |   Alpha TransForm subscribe to our YouTube Channel  Follow Us on LinkedIn  Follow Us on Twitter  Follow Us on Facebook

Announcement

Collapse

The Alpha Software Forum Participation Guidelines

The Alpha Software Forum is a free forum created for Alpha Software Developer Community to ask for help, exchange ideas, and share solutions. Alpha Software strives to create an environment where all members of the community can feel safe to participate. In order to ensure the Alpha Software Forum is a place where all feel welcome, forum participants are expected to behave as follows:
  • Be professional in your conduct
  • Be kind to others
  • Be constructive when giving feedback
  • Be open to new ideas and suggestions
  • Stay on topic


Be sure all comments and threads you post are respectful. Posts that contain any of the following content will be considered a violation of your agreement as a member of the Alpha Software Forum Community and will be moderated:
  • Spam.
  • Vulgar language.
  • Quotes from private conversations without permission, including pricing and other sales related discussions.
  • Personal attacks, insults, or subtle put-downs.
  • Harassment, bullying, threatening, mocking, shaming, or deriding anyone.
  • Sexist, racist, homophobic, transphobic, ableist, or otherwise discriminatory jokes and language.
  • Sexually explicit or violent material, links, or language.
  • Pirated, hacked, or copyright-infringing material.
  • Encouraging of others to engage in the above behaviors.


If a thread or post is found to contain any of the content outlined above, a moderator may choose to take one of the following actions:
  • Remove the Post or Thread - the content is removed from the forum.
  • Place the User in Moderation - all posts and new threads must be approved by a moderator before they are posted.
  • Temporarily Ban the User - user is banned from forum for a period of time.
  • Permanently Ban the User - user is permanently banned from the forum.


Moderators may also rename posts and threads if they are too generic or do not property reflect the content.

Moderators may move threads if they have been posted in the incorrect forum.

Threads/Posts questioning specific moderator decisions or actions (such as "why was a user banned?") are not allowed and will be removed.

The owners of Alpha Software Corporation (Forum Owner) reserve the right to remove, edit, move, or close any thread for any reason; or ban any forum member without notice, reason, or explanation.

Community members are encouraged to click the "Report Post" icon in the lower left of a given post if they feel the post is in violation of the rules. This will alert the Moderators to take a look.

Alpha Software Corporation may amend the guidelines from time to time and may also vary the procedures it sets out where appropriate in a particular case. Your agreement to comply with the guidelines will be deemed agreement to any changes to it.



Bonus TIPS for Successful Posting

Try a Search First
It is highly recommended that a Search be done on your topic before posting, as many questions have been answered in prior posts. As with any search engine, the shorter the search term, the more "hits" will be returned, but the more specific the search term is, the greater the relevance of those "hits". Searching for "table" might well return every message on the board while "tablesum" would greatly restrict the number of messages returned.

When you do post
First, make sure you are posting your question in the correct forum. For example, if you post an issue regarding Desktop applications on the Mobile & Browser Applications board , not only will your question not be seen by the appropriate audience, it may also be removed or relocated.

The more detail you provide about your problem or question, the more likely someone is to understand your request and be able to help. A sample database with a minimum of records (and its support files, zipped together) will make it much easier to diagnose issues with your application. Screen shots of error messages are especially helpful.

When explaining how to reproduce your problem, please be as detailed as possible. Describe every step, click-by-click and keypress-by-keypress. Otherwise when others try to duplicate your problem, they may do something slightly different and end up with different results.

A note about attachments
You may only attach one file to each message. Attachment file size is limited to 2MB. If you need to include several files, you may do so by zipping them into a single archive.

If you forgot to attach your files to your post, please do NOT create a new thread. Instead, reply to your original message and attach the file there.

When attaching screen shots, it is best to attach an image file (.BMP, .JPG, .GIF, .PNG, etc.) or a zip file of several images, as opposed to a Word document containing the screen shots. Because Word documents are prone to viruses, many message board users will not open your Word file, therefore limiting their ability to help you.

Similarly, if you are uploading a zipped archive, you should simply create a .ZIP file and not a self-extracting .EXE as many users will not run your EXE file.
See more
See less

I want to display a check mark in browse column

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    I want to display a check mark in browse column

    Hello,

    I want to display a logical field in a browse column as a check mark. The ansi character set doen't include a check mark, like the old asii character 251. I would like to create a calculated field that mirrors the value of a logical field, Check mark for true, blank for false.
    I hate to use a bitmap to do this. Goes against the grain to use the overhead for a column of bitmaps.

    Any thoughts out there?

    Thanks,
    Jim

    #2
    RE: I want to display a check mark in browse colum

    Jim,

    Ver 5 allows you to view logical fields as checkmarks. Look under field properties, under setup tab, select "show as checkbox".

    Comment


      #3
      RE: I want to display a check mark in browse colum

      Opps, I should have said "column" properties instead of field properties.

      Comment


        #4
        RE: I want to display a check mark in browse colum

        Hello Vince,

        Geez, I never noticed that check box. Wonder how many other check boxes I've missed !

        Thanks,
        Jim

        Comment


          #5
          RE: I want to display a check mark in browse colum

          Is there a way to put a check mark in a character field. I use a lot of 1 character fields for T,F type values and would prefer to put in a check mark. Now I use an X ie. if("field"="X"," ","X") on the onboubleclick for the browse. It would look better cosmetically if there was a check mark but I haven't figured it out either.

          Also I don't really want to use logical fields instead.

          Russ

          Comment


            #6
            RE: I want to display a check mark in browse colum

            Russ, I think there is a generic checkbox selection on the properties tab for each column. You simply say what value is true and what one is not. If you want a larger check marks look under the code archives for checkmarks within browses and you will see how to get windings (fonts) to work within alpha5.

            Comment


              #7
              RE: I want to display a check mark in browse colum

              I'm probably missing something pretty simple, but when I check the checkbox option on a character field it doesn't seem to work. How do I relate the checkbox to the value in the field?

              Thanks
              Russ

              Comment


                #8
                RE: I want to display a check mark in browse colum

                Russ,

                I do for the same thing for reports when I need a checkbox. Except to get a more graphical format, I use the WingDings font or some other font that has special graphic characters. This, in conjunction with the CHR() function gives a nice looking checkmark.

                For example using the Wingdings font, use something like this:

                IF(field = "X",CHR(0254),CHR(0168))

                Then increase the font to get the desired size.

                Comment


                  #9
                  RE: I want to display a check mark in browse colum

                  You are right, my mistake, alpha does not show the right criteria for a character field to show up as a checkbox. If you are having problems displaying the check mark, create a calculated logical field that changes depending on your character field or vice versa.

                  Comment


                    #10
                    RE: I want to display a check mark in browse colum

                    I was hoping to not use wingdings if possible. Does anyone know what Alpha uses to make their checkmark appear as it does when checked in properties. This should be built in somewhere but I have no idea of how to access it.
                    Optionally, I wonder if there is a way to take the one necessary wingding character and use it from the Alpha folder?

                    Russ

                    Comment


                      #11
                      RE: I want to display a check mark in browse colum

                      This may be a little out of this thread, but how can I change the value shown in reports for logical fields? In my form I have a checkbox, but I want to show other values than "T" and "F" in my reports...

                      Comment


                        #12
                        RE: I want to display a check mark in browse colum

                        Inge,

                        Start a new thread with this question and tell us what other values you want to show?

                        kenn
                        TYVM :) kenn

                        Knowing what you can achieve will not become reality until you imagine and explore.

                        Comment


                          #13
                          Re: I want to display a check mark in browse colum

                          john linley - using alpha5v9

                          I am trying to capture a "logical calc field" and insert it into a table field.
                          The structure is a parent table,"styles_ordered", which has a qty ord field -N/2;
                          Attached is a child table "BOM" which displays components or parts associated with a particular style. This table also has a numeric field "part_qty" N/2
                          Attached to the BOM table is a one to one link "inventory" table which has a field adjust_qty, N/5.
                          -------------------------------------------------------------------------
                          On the form, from the parent table I am showing 3 fields..
                          control # qty ord style
                          12345 15 rg100d03
                          --------------------------------------------------------------------------
                          In the imbedded browse table I am showing
                          -----bom table --------- + log field + -- inventory table-----
                          part nbr unit qty dfi adj qty
                          abc 3 45-------------------------------->
                          cde 10 150-------------------------------->
                          fgt 1 15--------------------------------->
                          r6ty 4 60-------------------------------->

                          The DFI field (deduct from inventory) ia a char field length 1
                          -----------------------------------------------------------------------------------
                          What I would like is: if a "Y" is entered in the DFI field then The logical value
                          would then be auto inserted into the adjust qty field.

                          The logical field is "style qty" from styles ordered * "unit qty" from BOM table

                          Hope someone is watching !!

                          John Linley

                          Comment


                            #14
                            Re: I want to display a check mark in browse column

                            John,

                            Why would you tag a post onto a six year old thread rather than starting your own thread?


                            if a "Y" is entered in the DFI field then The logical value
                            would then be auto inserted into the adjust qty field.
                            DFI and Adj_qty are both fields in the same table? Why not make adj_qty a calculated field with the expression

                            if(DFI = "Y",.T.,.F.)
                            There can be only one.

                            Comment


                              #15
                              Re: I want to display a check mark in browse column

                              Originally posted by Stan Mathews View Post
                              John,

                              Why would you tag a post onto a six year old thread rather than starting your own thread?




                              DFI and Adj_qty are both fields in the same table? Why not make adj_qty a calculated field with the expression

                              if(DFI = "Y",.T.,.F.)

                              Comment

                              Working...
                              X