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 derfloh 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: *

  • Users: lunaclover
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. lunaclover

    Getting program to read the left two characters of a textbox

    Alright, this sounds easy enough, right? Here's what I'm trying to do... I have several if/elseifs/elseif nested in other if/elseif/elseif conditionals. Once a model number is built (txtmodelnumber) it fills the textbox (whose text changes during run-time depending on which selections (a...
  7. lunaclover

    passing arguments from many different places to one

    Hi - I'm back! How is everybody? I'm trying to build nomenclature out and have a subroutine for each section of the build number. One for 'a', one for 'b', one for 'c' and then pass them all into a final build subroutine called BuildNumber, where txtBuildNumber.text = a+b+c+d+e+f+g+h I'm...
  8. lunaclover

    sorting comboboxes

    Hi everybody - I am usually on the vb.net side, but yesterday received a new assignment involving asp.net - changing the functioning of a already developed web report. Please can someone point me in the direction I need to go to pick up some basics on modifying webforms? I need to sort a...
  9. lunaclover

    "tab" feature used for spacing text

    Hi - I know in VB6 there was something you could do in order to line text up if it were in a textbox, listbox, etc. So if you had two columns of data you could say something like: listbox.items.add("Summer ", <tabfeature> , "a season") listbox.items.add("Fall" , <tabfeature>, "a season") so...
  10. lunaclover

    problems using multiple &quot;With&quot; statements

    Hi all - I have three checkboxes 'chk1' that I have on 3 forms. When checked by user from any form it opens the same form (FrmT) using the code: If chk1.Checked Then Dim fT As New FrmT(Me) fT.Show() End If frmT is a form consisting mainly of a listbox...
  11. lunaclover

    Receiving error at run time - accidently selected wrong menu item

    Hi - I have done something and I don't know how to undo it. When I was trying to stop my program from running, I went to 'Debug - Stop Debugging' as I usually do, but this time accidently chose the option beneath it. I don't know what this option could have been, but now when I try to run it...
  12. lunaclover

    search using range by two cbs, varied by rbs

    Okay I'm having a hard time even describing my problem (as indicated in the subject line above), so here it goes. For some background: I have a datagrid displaying many columns dependent on the selections made in comboboxes right above it. Then I write...
  13. lunaclover

    foxpro table not importing to sql

    I have a couple foxpro tables I need to import to SQL and was wondering if anybody had ever heard of or had this problem themselves. I've tried dozens of times to import the table and it says "One table successfully imported" but then it's nowhere to be found. I've tried it by creating a query...
  14. lunaclover

    tab control item size property

    This control is weird. I'm having major trust issues with it. This time I'm trying to change the width of the tabs so they span across the whole form. So I go to Item Size and expand the plus. I think the default is 98, 18 or something, with 98 as the width and 18 as the height. I change...
  15. lunaclover

    message box msgboxresult. not recognizing

    Hi - what in the world is wrong with this code? Here's what is supposed to happen. When a user chooses a certain option from a combobox, and the clicks on chkBox1, a message box is supposed to come up to validate it.. it comes up when it is checked, but when I click no, or yes, it doesn't...
  16. lunaclover

    How to make form2a inherit form2 controls and recognize state

    Okay - I have this form (form1) with lots of radiobuttons, comboboxes and textboxes. On this form, there is a button that loads form2 with Dim frmAccessories As New Form2a frmAccessories.Show() So far so good. Then in the code for form2 I want it to recognize the state of the...
  17. lunaclover

    Combobox reset for next instance

    Hi - my code is filled with "if then else" statements in it, as the program I'm writing has many exceptions and combinations of selections between radiobuttons, textboxes and comboboxes. I have a combobox that I want to empty its contents from a previous selection, and refill with new contents...
  18. lunaclover

    logic using multiple comboboxes/radiobuttons depending on each other

    I'm new to vb.net programming - so please resist the urge to attack such an easy target.. : ) Okay! I have about 6-8 different group boxes (depending on the form) filled with about 5-10 radiobuttons each. Also using comboboxes and checkboxes. A button/check selected in any category will...

Part and Inventory Search

Back
Top