Search results

  1. Ryobi

    Multi Column Combox

    Yes, that is what I exactly what I need. I will tried it latter tonight when I get home. Thank you,
  2. Ryobi

    Multi Column Combox

    Re: Multi Column Combox - Changing text in combo box For moment I am doing a working around the issue by using a "|" between items to divide the single column into multiple columns. When I did this I ran into the issue that when the item is selected the whole column is displayed on the text box...
  3. Ryobi

    Multi Column Combox

    isladogs, Thank you for for the suggest, but the photo is for Msaccess. I need the one for Vb.net. Perhaps I have posted the question in the wrong forum. Thank you
  4. Ryobi

    Multi Column Combox

    monke123, In Vb.net there column count like in Access, at least I did not see one that is part of the problem with the combo box in Vb.net has only one column.
  5. Ryobi

    Multi Column Combox

    By wizard do you mean the toolbox ? Thanks for the suggestion, but my problem not in creating combo box but with the columns that the combo box will have. The comb box has only have one column and I it did to have more then on like in Access. I have seen a sample where they put data in single...
  6. Ryobi

    Multi Column Combox

    Does anybody know how to get multi columns in combo box ? I search on the net but so far no answer. There was one that had the code, but it did not explain as to how to compile the code and using in the program. I have also saw a video on youtube that had a DLL file, but it does show where to...
  7. Ryobi

    Calling a second form and closing the first form

    I have the found the solution. It is to change the following setting: "Project" menu -> 'YourApp' Properties... -> Application Tab find : "Shutdown Mode" Change from "When startup form closes" --> "When last form closes" I hope this helps other users. Import note: If you are using more...
  8. Ryobi

    Calling a second form and closing the first form

    I am using Vb.net. Thank you for trying.
  9. Ryobi

    Calling a second form and closing the first form

    I have also tried that but I get an error message stating that the form has been moved. Basically it does not work.
  10. Ryobi

    Calling a second form and closing the first form

    I have search the web but I can not find how to open a second form and close the first form. I have try different codes (including trying to close it from the second form) but none seem to work. The code below will close the first and second form which is not what I need. I want the first form...
  11. Ryobi

    Calling a public procedure

    Thank you for the suggestion, but I am somewhat familiar with .net. I think you did point the the problem I that was be confused between a class and module. I know what I need, but it is hard figure out where to put the information. In Msaccess it very easy, that's where the confusion part came...
  12. Ryobi

    Calling a public procedure

    MajP, I am sorry for any misunderstanding. I was referring to Uncle Gizmo who posted that the question was for MsAccess not Vb.net forum.
  13. Ryobi

    Calling a public procedure

    Thank you for replying. You are correct in regarding to the confusion between a class and module. I revised the code and used a module to create a global variable that will hold the file name. It regard to MsAccess question, it not not MsAccess question it is a Vb.net question. What I want to...
  14. Ryobi

    Calling a public procedure

    Hello, I hope somebody can help me with this simple problem. I created a public procedure in a Class module, but for some reason I can not call the procedure from a form. The code on the Class module is as follows: Public Class Module1 Public FileInuse As String Public Sub...
  15. Ryobi

    Saving Data in VB Net

    Veka, I have tested your code and it worked. There were some were minor changes that I had to do. The statement Dim cmd as New OleDBcommand needed () at the end of the statement. I had to remark the cmd.Prepare() statement. For some reason it does now want to work in with visual basic Studio...
  16. Ryobi

    Saving Data in VB Net

    Thank for the feed back. Your sample looks interesting. I will give give a try and the see if I can modify it to suit my purpose. You have two fields, but if I can get it to work I should be able to use other fields.
  17. Ryobi

    Saving Data in VB Net

    Your information has been very helpful and the puzzle of connections is become clear. Thank you for all your help.
  18. Ryobi

    Saving Data in VB Net

    Thank you for the information. I am kind of new the connection stuff and have question on that. Lets say that I open a connection to get the data and fill the dataset and I close the connection. I will have to open another connection when I update, delete or add information. I am just wondering...
  19. Ryobi

    Saving Data in VB Net

    Hi, Thank you for replying. I am understand what you are saying but I am confused and I will try explain why. When data in text boxes on screen are binded to da.fill on the statements: TxTLocCode.DataBindings.Add(New Binding("Text", BindingSource1, "Loc-Code"))...
  20. Ryobi

    Saving Data in VB Net

    Hello, I am new to VB net and connections. I am trying to save data from an Ms Access table using a table adapter. Everything works fine, except that I can save changes to the data. This is what I have: MYConn = New OleDbConnection(StrConn) Dim Sql As String = "Select * From...
Back
Top Bottom