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 Mike Lewis 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. lunaclover

    Parsing a text file with fixed and delimited fields

    Hi - not sure why nobody is responding.. So, I created a txt file that looks like column width Name 30 Address 40 Location 30 I wrote a stored procedure and created a query using ddl that creates the tables. Now I am trying to create the package...
  2. lunaclover

    Parsing a text file with fixed and delimited fields

    Hi - I am attempting to create a table using DTS wizard to import from a text file. There are six tables, most of them usually being 3 columns long. In these text files, the first two columns are fixed length, so that's easy.. the problem comes with the last column which just ends at the end...
  3. lunaclover

    removing/hiding db records dependent on previous selection

    by creating a bunch of data adapters and data sets for each combobox, and then selecting each ones datasource, displaymember and valuemember.
  4. lunaclover

    removing/hiding db records dependent on previous selection

    Okay, thanks, but how do I go about doing that?
  5. lunaclover

    removing/hiding db records dependent on previous selection

    Hi - Here's what I'm trying to do, as you all may know by now having read my 9 million threads. I am connecting to a sql db and have several tables. Each table is connected to its own combobox. Depending on what a user selects for combobox2, for example, I want combobox4 to remove some of its...
  6. lunaclover

    Trying to refer to one part of multi-value combobox

    Yes, your assumptions are right, sorry about that. It just said VALUE in the textbox when I tried it. But, that's okay, because I got it to work with Private Sub ModelNumber(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtModelN.TextChanged If _CLASS.SelectedIndex <>...
  7. lunaclover

    Trying to refer to one part of multi-value combobox

    Thanks so much for the insight. I will definitely keep that in mind. Right now, I am trying to do what you spoke of earlier. I have displaymember = desc and valuemember = value, and then I am coding: Private Sub txtModelN_TextChanged(ByVal sender As System.Object, ByVal e As...
  8. lunaclover

    Trying to refer to one part of multi-value combobox

    There will be about 20 tables with three or less columns, ranging from 5 to 100 rows. They will always be changing.
  9. lunaclover

    Trying to refer to one part of multi-value combobox

    Thanks, tipgiver, I decided yesterday I was going to use a sql db, even though my boss didn't recommend it. We'll hope you and I are right! Luna
  10. lunaclover

    Trying to refer to one part of multi-value combobox

    Okay, let me make it more clear. Here is what I am attempting to do. I just had a better idea. I want to populate a combobox dynamically with a description, while populating a textbox with the value of that description. I created the class MyList above to hold two 'fields'(is it right?)...
  11. lunaclover

    Trying to refer to one part of multi-value combobox

    Sorry, should have told you, that was how it was originally, it still produces the error. I have tried selectedvalue, selectedtext and selectedindex. Thanks, Luna
  12. lunaclover

    Trying to refer to one part of multi-value combobox

    Hi all - I'm having a problem with syntax, I think. I just made my first class (called MyList) and am trying to work with it. I learned on VB6 and even that was a while ago, but .. well anyway, classes are new to me, so I may have something wrong. I created the class so that I could have two...
  13. lunaclover

    groupbox control/event 'enter' or 'mouseover' or similar

    Hi all, Nevermind, I figured it out.. all I needed to do was put the groupbox2.enter in the handles statement.. how weird that I wouldn't try that, it seems so simple now. Afterall, I love the handle and abuse it all the time. I was messing around with if-then-else and case statements for no...
  14. lunaclover

    groupbox control/event 'enter' or 'mouseover' or similar

    Hi earthandfire (and others), sorry for the delay in getting back to you.. I have finally tried the code you helped me with, (well, most of it) and I think I can do beautiful things with it. The case statement wouldn't really pertain to what I am trying to do, so I didn't use it. But - what...
  15. lunaclover

    listbox deselect property

    Hi earthandfire, sorry for the delay in getting back to you.. I have finally tried this code, (well, most of it) and I think I can do beautiful things with it. The case statement wouldn't really pertain to what I am trying to do, so I didn't use it. But - what I need to do, is if an item in...
  16. lunaclover

    listbox deselect property

    I have not had a chance to try this yet, been crazy busy here, but I will and once I do I will let you know. Thanks so much in advance earthandfire and tipgiver! Luna
  17. lunaclover

    listbox deselect property

    Actually, it isn't working.. I am still getting that error.. any suggestions? Thanks, Luna
  18. lunaclover

    listbox deselect property

    Thanks! I knew it would be something easy. Have a great day!
  19. lunaclover

    listbox deselect property

    Hi everybody - I am just trying to do something simple and can't find the right way to do it. I have a listbox whose content changes depending on selections a user has made previously. I then use this selection to produce part of a model number. Sometimes the things in the listbox are...
  20. lunaclover

    Getting program to read the left two characters of a textbox

    That absolutely works, earthandfire! Thank you so much for leading me in the right direction! Luna

Part and Inventory Search

Back
Top