Search results for query: *

  • Users: nabbyg
  • Content: Threads
  • Order by date
  1. N

    login failed for user comp/guest

    now the database is residing on my computer but there are about 5 other computers in my office that need to access the database through the network. When I connect I keep getting this error where t says. "login failed for user" NABBY/Guest where nabby is the name of my computer.... i m...
  2. N

    Dataset.Fill hanging

    Hello Everybody, I have been struggling with the DataAdapter for a couple of days now...I dont knwo why, but everytime I try to fill the dataset, the process just hangs. I including the code at the bottom. I am using the MySql .NET connector. I tried the same query in the MySql manager and...
  3. N

    Checking an Item In the Check List Box

    Hey... everybody I am comparing the items in a checklist box to another list of items. If certain conditions are stified then I m setting then I am setting an item as checked (programmatically) in the Checklist box. I put a breakpoint right after I check an item in the checklist box, and...
  4. N

    Associating wo values with a como box

    Hello guys, I am trying to associate "Text" and "value" with a combo box. I was trying to do it via this method: ComboBox.ValueMember = "Mechanism" ComboBox.DisplayMember = "RepairItemName" ComboBox.DataSource = arrTemp Where arrtemp is an arraylist of objects. Every object has a field...
  5. N

    Changing the Cheked List Box

    In a real pickle here guys, I want to limit the user to a maximum of three selections in the checked list box. And I am using the following code. 1 If count = 3 Then 2 Lowestindex = CheckedListBox3.CheckedIndices.Item(0) 3 CheckedListBox3.SetItemCheckState...
Back
Top