Search results for query: *

  1. rog_rickert

    Data Structure question, decision tree

    Hello, I need to make a simple app for a decision tree. This is sort of a choose your own adventure thing for kids. The user will start with a question and then depending on their answer it will take them to their next question or to and end point. The tree should be fully traversable...
  2. rog_rickert

    Counting number of methods called within another method

    I have a question that feels like it should have a simple solution, but I'm having trouble figuring one out. I have a method in my application that contains a for loop. Inside the for loop a list of commands are run. The for loop is needed as each of these commands are run on a...
  3. rog_rickert

    Resolved Databinding numericupdown control in usercontrol

    I figured out what my issue was with the deserializing. Thanks so much for your help. Everything working good now.
  4. rog_rickert

    Resolved Databinding numericupdown control in usercontrol

    Thanks for the help, could you explain this a little clearer : "(or change the objects in-place if you add the same number of items)" I'm not clear on adding the new objects (or changing them in-place) from my deserialize method now that the bindinglist is readonly.
  5. rog_rickert

    Resolved Databinding numericupdown control in usercontrol

    I'm very new to databindings and C# in general, so forgive me if I'm not seeing something. Where would I update the bindings at? I was under the impression that the OnPropertyChanged event in the DrawerData class would send a notification to the control that was bound to it, to update...
  6. rog_rickert

    Resolved Databinding numericupdown control in usercontrol

    I have a databinding issue with a numericupdown control bound to a bindinglist of objects. The updown control is located on a usercontrol. The controls can be loaded with values from a file located in a defaults xml file. The databinding works as it should upon loading the defaults file the...
  7. rog_rickert

    Question Indexing controls on tabcontrol pages question.

    Thanks for the input. I returned to this today and have it working thanks to your suggestions. I have one other question regarding this. In the same scenario listed above, I now have a tab control that loads custom tab pages with each tab page containing an instance of the same user...
  8. rog_rickert

    Question Indexing controls on tabcontrol pages question.

    Hello, looking for advice on an issue. What I have is working, I'm just wondering if there is an easier way to implement it. On a form in my project I have a tabcontrol with 4 tag pages for Channels 1-4. Each tab page has the same controls on it and are populated with values from a...
  9. rog_rickert

    Object array question

    hello, I'm still pretty new to C# and teaching myself. I've searched around and haven't found an answer, so I'm wondering if anyone can let me know if this is possible. I need to have multiple instances of an object that can be accessed by multiple forms. I know I can do this with static...
  10. rog_rickert

    Question Dashboard design question

    Dashboard wasn't the right term, sorry about that. It will accept user inputs from the different forms and then when they are satisfied with all of their entries, there is another button where they can submit all of the settings they entered. This will eventually write the settings to an...
  11. rog_rickert

    Question Dashboard design question

    Hello, I'm new to C# and UI design. I have a broad question as I'm just starting out. I'm creating a desktop app with Visual Studio. The dashboard will have multiple tabs, each loading a form where the user can enter different settings. What is the best way to save that info...
Back
Top Bottom