Search Result

Collapse
4 results in 0.0039 seconds.
Keywords
Members
Tags
true
  •  

  • Djiber
    started a topic Buttons visibility

    Buttons visibility

    I have app in which I would like to use buttons as an Drop Down menu.

    Code:
    private void button16_Click(object sender, EventArgs e)
            {
                    button1.Visible = true;
                    button2.Visible = true;
                    button3.Visible = true;
                    button4.Visible = true;
                    button5.Visible = true;
                    button6.Visible = true;
    ...
    See more | Go to post

  • nick john
    started a topic How to check if a file exists?

    How to check if a file exists?

    I don't want to create the file if it dosen't exist I just want to see if it's there. Like have a variable return True if it is in fact there.
    Thanks,
    Nick
    See more | Go to post

  • How do I return a count of true booleans from "Table_1" in "Table_2"?

    in Microsoft Access '07, I am creating a Database that tracks whether or not a specific department is deficient in specific areas. I am using Booleans in the form of check marks to annotate which departments have which deficiencies. True = Deficient, and False = Satisfactory.
    I would like to summarize this data in another table that has all of the companies departments, and all of the information of said departments, in it, while stating the...
    See more | Go to post

  • NeoPa
    started a topic How to Return Boolean TRUE/FALSE Values

    How to Return Boolean TRUE/FALSE Values

    I am trying, with a spectacular lack of success, to return TRUE and FALSE values in my SELECT statement. This SQL (below) is simply illustrative. It doesn't reflect my real world query. I would just like to know how to return such values in T-SQL.
    Code:
    SELECT [PR_PRODUCT]
          ,TRUE AS [CostMissing]
    
    FROM   [DBManagement].[dbo].[vwCustStock]
    
    WHERE  ([PR_RANGE] In(70,91))
    
    GO
    
    Msg
    ...
    See more | Go to post
Working...