Search results for query: *

  • Users: larryse
  • Content: Threads
  • Order by date
  1. L

    User Control panels

    I have an app with 6 user control panel. Can I put them in a list, idea is to put them in a List then when a menu item is selected the click passes that panel name in to a method and that method goes through the list and if the item equals the one passed show it and bring to front else hide. I...
  2. L

    deleting an element

    <dataroot> <AUTHOR> <ID>0</ID> <Surname>AMIS</Surname> <FirstName>Martin</FirstName> </AUTHOR> <AUTHOR> <ID>4</ID> <Surname>ARMSTRONG</Surname> <FirstName>Campbell</FirstName> </AUTHOR> <AUTHOR> <ID>5</ID>...
  3. L

    needing a data example

    I'm trying to create a form that has a combobox and a table. When an item is selected from the combobox the table is populated with a filtered list. my combobox has a list last name, first name of names my db has id, furst name, last name. my other table has a field that refrences the id from...
  4. L

    combobox refresh

    I have a combo box populated with a list of objects. Selecting an item in the box fills text fields with info where I can do my CRUDS functions of it. My code works except trying to refresh my combo after the CRUD. Here is my code. private void Author_Load(object sender, EventArgs e)...
  5. L

    Max value

    Hello, I have a list of objects that contain a first name, last name and an id. I am using the following to get my max. int idMax = (from a in authorList select a.Id).Max(); I am getting an InvalidOpoerationException error. What am I doing wrong? Thanks
Back
Top Bottom