Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. weinem01

    WebBrowser

    That website you pointed out solved a problem I've been working on for two weeks. Matt
  2. weinem01

    How can I programatically read source code from the webbrowser ctrl?

    The webbrowser has a document object that is very useful - but a little bit tricky (but not as bad as the Internet control). It's fairly well documented on microsoft's site. You will need to add a reference to Internet HTML object (or something like that) in your project. You can then do...
  3. weinem01

    POPULATING OR FILLING TEXT BOXES WITH DATA FROM A DATABASE

    Are you using an Access or a VB front end? If you are using a VB front end, try using the ADO data control, or, if you have the ability, create a databound activeX control.
  4. weinem01

    Export Access Forms to VB Forms

    There are some 3rd party applications that will do it clumsily, but I had this problem a few weeks ago, and after a lengthy search, realized that they are not at all compatible and just re-created them in VB. It didn't take as long as I thought it would. Matt
  5. weinem01

    Having Problem with forms and sub-forms

    There is a very easy way to do what you want. Just create several queries that contain exactly the information that you want to base your form on. Then, set your form source as the query, not the table. Don't worry, your tables will still automatically populate, even though your form is based...
  6. weinem01

    ActiveX controls and GetDataMember

    I posted yesterday, quite vaguely, and have since done some work to narrow down the question. I have a parent and a child recordset in two separate forms. As I navigate through the parent recordset, I want the child recordset to automatically change. I wrote an activeX control that I use to...
  7. weinem01

    Combo box value List

    This is a simple class that I wrote to do exactly what I think you want. It does the same thing that selecting "table/query" under lookup does in Access. It's for an application I wrote for physicians to track their surgical patients. In addition, the .Distinct property allows you...
  8. weinem01

    ?subForms in VB6

    Thanks everyone. MDI forms seem to have done the trick. Matt
  9. weinem01

    Saving Multiple Values in one field...

    The best way to do this would be to write a class module with the code that I included in my previous post and then dim a new object for each combobox. If you have any experience with class modules and object oriented programming, I would encourage you to do this - If I had to rewrite my code...
  10. weinem01

    ?subForms in VB6

    I'm writing a vb6 database application that I would like to model after the Form/subForm design in Access. I've created the subforms and set their borderstyle = 0 property so there is no title bar and it appears that the subform is part of the main form. I have one large form that has the...
  11. weinem01

    I'm writing a VB6 application that

    I'm writing a VB6 application that uses an Access database. It's an application for a clinical research project that tracks patients and their relevant data. The database has several layers of recordsets, ie one patient can have many surgeries, one surgery can have many complications and one...
  12. weinem01

    Parent Child recordsets in VB 6

    I'm writing a VB6 application that uses an Access database. It's an application for a clinical research project that tracks patients and their relevant data. The database has several layers of recordsets, ie one patient can have many surgeries, one surgery can have many complications and one...
  13. weinem01

    Saving Multiple Values in one field...

    I've written some code that does exactly what you want. Just writing the values into a table is pretty simple. You can just use the listbox.ListCount property, which gives you the number of items selected. You can then use a 0 based count to identify which item was selected by using the...

Part and Inventory Search

Back
Top