Search Result

Collapse
3 results in 0.0023 seconds.
Keywords
Members
Tags
false
  •  

  • 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

  • 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...