CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: neo_xaml

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    5,613

    Re: hiding a label

    I had to use Tag="{Binding ElementName=lblCOO, Path=Content}"
  2. Replies
    3
    Views
    5,613

    hiding a label

    I am trying to hide a label based on its value = N/A as passed into the tag. Does not seem to work any advice?

    <Grid>
    <Grid.Resources>

    ...
  3. Replies
    4
    Views
    10,263

    Re: hiding a button on click

    Yes, I ended implementing the following.


    <Style TargetType="{x:Type Button}" x:Key="CellTextStyle">
    <Setter Property="IsEnabled" Value="true" />
    <Setter...
  4. Replies
    1
    Views
    4,422

    Calling a field and replace

    I am trying to call/isolate the field InspectionSummary.InspectionSummaryDate so I can do a Replace on it. Basically replace all "-" with "/".

    I can't seem to be able to do a Replace from the...
  5. Replies
    4
    Views
    10,263

    hiding a button on click

    I am trying to hide the button once it has been clicked. Each button has its own UID within a datagrid. Is there a way to set or pass a parameter that will hide that particular button?
  6. Replies
    2
    Views
    6,740

    Re: validate between time start and time end

    Never mind I found the answer. Txs
  7. Re: trying to get 2 separate values in alert box

    You are right, I was setting both to the same value. I separated them and it worked.
  8. Replies
    1
    Views
    4,809

    Set SelectedIndex dynamically from datagrid

    Is there a way to dynamically set the SelectedIndex="" from a datagrid tag? I want to set it based on the last modified record.
  9. trying to get 2 separate values in alert box

    On my error message both inspStartTime.StartTime & inspEndTime.EndTime end up being the same values returned. Although they each belogn to a different textbox. Any clues?



    for (int...
  10. Replies
    2
    Views
    6,740

    validate between time start and time end

    I have this class and I need to add an alert in case inspStartTime.TimeID is greater than inspEndTime.TimeID

    Each value represents a time e.g. 16:30 if inspStartTime.TimeID = 16:30 and...
  11. Replies
    0
    Views
    5,188

    datagrid doubleclick

    I have this grid and on doubleclick I'd like to capture the CorrectionID, values to pass on to a new window. Can anyone guide me>



    private void dgCorrectionHistory_MouseDoubleClick(object...
  12. Replies
    1
    Views
    10,337

    Skip tabs for specific columns

    I have 5 columns towards the end of the code named DataGridTextColumn and I'd like to skip them when the user clicks tab. Is there an easy way to do this, I've tried with...
Results 1 to 12 of 12





Click Here to Expand Forum to Full Width

Featured