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. KrebsATM02AG

    Combo boxes into temporary table??

    Thanks for you help, It made me understand what I am trying to do better. Is there a way to use SQL to retrieve data from a form that is not bound to a table? Maybe I should bind it to the temporary table? Maybe I'm not approaching this correctly? The forms purpose is to input funds and...
  2. KrebsATM02AG

    Combo boxes into temporary table??

    Could you show me the correct format of SQL in code?? Does it look something like this?? I can't find just a simple example and I'm trying to piece something together. Can you tell me what is wrong? It is giving me an "Expected: End of Statment" error. Maybe i'm not using the...
  3. KrebsATM02AG

    Combo boxes into temporary table??

    I have a form that has a couple of combo boxes and text boxes. When the user clicks on the "Add Fund" command button I want the information currently in the boxes to be sent to a temporary table. Can someone tell me how to do this?? Would I just make a normal table and have and sql...
  4. KrebsATM02AG

    List box value based on combo box???

    Ok...the requery isn't doing anything...Where should I be putting it, in the After Update????
  5. KrebsATM02AG

    List box value based on combo box???

    I'm new to this as you can see...So how do you requery?? I'm trying to limit the list box to the social security number that is chosen, so would a requery work? Thanks for helping - Doug
  6. KrebsATM02AG

    Building a form to enter, check, and then store

    There are 4 combo boxes and 2 text boxes. I've already started linking the combo boxes. First cbo has only 2 options, which is the type of account. The second cbo is Fund Family, which are the different mutual fund families. The third and 4th cbo are linked together and to the 2nd combo...
  7. KrebsATM02AG

    Building a form to enter, check, and then store

    I want to build a form where you enter in information through a series of linked combo boxes, then the information goes into a list box. The user needs to be able to see the information they just entered in the list box while entering a new record. When they are done entering records there...
  8. KrebsATM02AG

    List box value based on combo box???

    yeah the form is named frmName.....old programmer I was working with named it.... I'm still getting all the records in the list box instead of the just the ones that match the SS#
  9. KrebsATM02AG

    List box value based on combo box???

    Private Sub cboSelectSS_Change() Me.lstTSA.RowSource = "SELECT "qryAllocations.Fund_No, qryAllocations.Allocation_Pct, qryAllocations.SS_No FROM qryAllocations WHERE (((qryAllocations.SS_No)=[forms]![frmName]! [cboSelectSS])); End Sub gives me a compile error on...
  10. KrebsATM02AG

    List box value based on combo box???

    Ok, so now i have this code: SELECT qryAllocations.Fund_No, qryAllocations.Allocation_Pct, qryAllocations.SS_No FROM qryAllocations WHERE (((qryAllocations.SS_No)=[forms]![frmName]![cboSelectSS])); and i get nothing in the list box now Thanks for your help so far
  11. KrebsATM02AG

    List box value based on combo box???

    It is all on the same form, just under different tabs. So do you need to distinguish which form still???
  12. KrebsATM02AG

    Linking combo boxes

    opps i think i misread the first post. Are you trying to make it like a menu?? For example the Start button in windows, then you select "All Programs", then you select "Assecories"??? I thought you were just trying to get 2 combo boxes to have the same value.....sorry
  13. KrebsATM02AG

    List box value based on combo box???

    I've got a form with 2 combo boxes in the header that controls the tabs in a form. I can use text fields and sub forms and link to the combo boxes, but how do i link a list box??? For example the 2 combo boxes do the samething, just looking up the person by last name or ss#. So in a list box...
  14. KrebsATM02AG

    Linking combo boxes

    There is a much easier way to do this... Say you have cboSelectname and cboSelectSS, use this on the On Click of cboSelectName Private Sub cboSelectName_Click() cboSelectSS.Value = SS_No.Value End Sub and this on cboSelectSS Private Sub cboSelectSS_Click() cboSelectName.Value =...
  15. KrebsATM02AG

    Making a list box grow and shrink

    I'm using a list box in a report to show 2 columns that vary in length with the number of Funds a customer has. I'm trying to make the list box grow and shrink to these number of funds. So is a list box my best option??? I have the name of the persons fund in the 1st column and the percentage...

Part and Inventory Search

Back
Top