Search results for query: *

  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

    deployment in asp.net

    I have uploaded everything on to the webserver and I even have the custom errors mode set to off. But then again I am not getting any details regarding the error and yeah I am still getting an error when I upload the file.
  4. N

    deployment in asp.net

    I have uploaded everything in the Project Folder, that includs the ".vb" file. Here is the error that I am getting, Server Error in '/' Application. Runtime Error Description: An application error occurred on the server. The current custom error settings for this application prevent the...
  5. N

    deployment in asp.net

    Clarification on the uploading process I have a webhost that allows ASP .NET. But then again, the question remains, How is the project deployed on the internet? Do I just transfer all the contents of the project folder from my computer to my Account on the net ?? I did try that and I keep...
  6. N

    Checking an Item In the Check List Box

    Finally the problem is solved. Apparently there is bug in .NET with the Tab Control. Therefore I used the code : "Tabpage.BindingContext = Me.BindingContext" This alsoprovides the funtionality to remember the checked items when we are jumping between tabs on a page. This caused a lot of...
  7. N

    Checking an Item In the Check List Box

    Hey I think I have the problem identified. In my application, I have a parent form and a child form. The parent form loads before the child form, and the checklist box is in the child form. I tried to activate "Child Form" individually, therefore it opened as a seperate window, but the...
  8. N

    Checking an Item In the Check List Box

    hey man.... sorry about the code... if you could just tell me about the behaviour of the check list boxes. why would the state go to unchecked after being checked?? When the item does "uncheck", should the item check event be raised?? Thanks, Nabby
  9. N

    Checking an Item In the Check List Box

    Hey Man, Here is the code: *****FORM LOAD************** Private Sub RepairOrderSystemForm_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'pull all the data from the database, the customer search should 'be taking care of this. Whenever...
  10. 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...
  11. N

    Associating wo values with a como box

    Hey... Ok I have another Problem now.... 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...
  12. N

    Associating wo values with a como box

    The Idea is working like a charm. Thanks Alot for the Help. You are a genius.....Is there anything I can do to give you a good rating or something
  13. N

    Associating wo values with a como box

    hey...first of all thanks for the reply. but i did manage to solve the above problem....the elements in arrtemp is an custom object, with a number of string attributes.. and "RepairItemName" is one of the attributes. now I am having the same KIND of problem I had before.... I have 2 combo...
  14. 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...
  15. N

    Changing the Cheked List Box

    thanks a lot jimmy....
  16. 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