Search results for query: *

  • Users: hurdy
  • Order by date
  1. H

    Question How to set variable opposite value (3.5)

    Thank you John. That's what I was looking for. Thank you again for your help, I appreciate you taking the time out to help with this.
  2. H

    Question How to set variable opposite value (3.5)

    Good evening, I can remember reading some time ago that there is some way to set the opposite value of a variable depending on the value that it is set to but, I can't remember the syntax of it and I'm not sure what the correct terminology is to describe what I'm looking for. Suppose that I...
  3. H

    How to loop through nest controls in ListBoxItem to find a TextBox?

    Thank for the reply. I've managed to crack it. I've used the VisualTreeHelper function to drill down through the different layers. Here's my code: Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) Handles btnSave.Click '*** FIND DATA IN...
  4. H

    How to loop through nest controls in ListBoxItem to find a TextBox?

    Each ListBox item is made up from a data template, thus allowing me to create any structure I wish within the listbox items. You can put anything you like in there such as images, comobo box's and videos etc etc, if you so wish to. Usually you bind the listbox items to something like an...
  5. H

    How to loop through nest controls in ListBoxItem to find a TextBox?

    Hi everyone, Firstly, thank you for taking the time out to read this post. I'm having trouble trying to loop through a WPF ListBox control to find a nested TextBox in VB.net 3.5. Here is my UI structure: TabControl > TabItem > UserControl > Grid > ListBox > ListBoxItem > Grid > TextBox...
Back
Top