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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jeremy0028

  1. jeremy0028

    Subform Linking Edit command button and form

    I have the following in a subform in datasheet view The form is called PeopleInsuranceSubform ContactID(Auto# NonPK) PersonID(lookup) InsuranceName Policy# Group# I also have a command button called Edit which has the following Private Sub Edit_Click() On Error GoTo Err_Edit_Click Dim...
  2. jeremy0028

    List Box Filter

    Basically I'm trying to create a list box filter on a form so when user clicks on a patient in the Patient demo tab Insurances related to the patient will appear on the insurance tab in the list box I have 2 page tabs on a form one called Patient Demo and the other called Insurances. The...
  3. jeremy0028

    Combo Box ?

    Thanks
  4. jeremy0028

    Combo Box ?

    I have a combo box called Primary which has Yes/NO I have a Text Box called Text50 If user selects Yes From the combo box then the Text Box will show P If user selects No From the Combo Box then the Text Box will show S Any Ideas
  5. jeremy0028

    Query Union Select Filter Problem

    I have a tbl called people has the following PersonID(PK) LastName FirstName MiddleName PrimaryInsurance(lookup) SecondaryInsurance(lookup) I also have a tbl called charges with a combo box called person ID so when i click the add charge command button on tbl people the person id from the...
  6. jeremy0028

    combo box combining 2 columns into 1

    I tried what you specified but still dosnt work. Here is the code i have in the bill to combo box SELECT [tblPeople].[PersonID], [tblPeople].[PrimaryInsurance], [tblPeople].[SecondaryInsurance] FROM [tblPeople];
  7. jeremy0028

    combo box combining 2 columns into 1

    I have the following table called people PersonID(pk Autonumber) LastName FirstName Mi PrimaryInsurance(lookup) SecondaryInsurance(Lookup) I have a form called add charge and on that form i have a combo box billed to Which looks up people table personID, PrimaryInsurance,Secondary Insurance...
  8. jeremy0028

    List Box Double Click Event

    Is there any why i can double click the Insurance Name in the List box and insert that Name into the Primary Or secondary Insurance Text Fields on the form called frmPatients I do not want to use combo Boxs I have a main form call frmpatients which is the loaded form on that form i have 2...
  9. jeremy0028

    Reports Question

    I have a table and frm called Insurance which has the following InsuranceID(Pk)Auto Insurance Name I have a table and form called ProviderIds Provider(lookup Combo Box) Code SELECT Providers.ProviderID, Providers.[First Name] & " " & Providers.[Last Name] & " " & Providers.Mi FROM Providers...
  10. jeremy0028

    Combo Box Add All Records.

    I have a combo box on a form called Insurance which looks up a table call tbladdinsurance InsuranceId(Pk)AutoNumber Insurance Name Instead of just selecting one record frm tbladdinsurance I want to select all records any ideas
  11. jeremy0028

    List Box double click to goto record

    If i wanted to add a text search on top and link it to list box 0 to search by providers in the list by last name how would i do it?
  12. jeremy0028

    List Box double click to goto record

    I have a list box which looks up ProviderID(PK), First Name, Last Name, MI from the tbl called tbladdprovider i'm trying to create a double click event whereby when I double clik providers name it will take me to the form called frmaddprovider which will display provider information. I have...
  13. jeremy0028

    Forms Linking what am i doing wrong

    I have a main form called IRI-Form On that form i have PersonID(AutoNumberPK)Last Name First Name Middle Name I have a command button called Add Charge which open a pop up form called frmAddCharges In the frmaddcharges I have a text box called Patient In the control source i have the...
  14. jeremy0028

    Pop up form same record

    That worked thank you very much
  15. jeremy0028

    Pop up form same record

    I have a table and form called patient info All the following fields are in one record Main form called patient info Account#(pk)Auto Number Last Name First Name Address City State Zip Phone I also i have a command button on main form called primary subscriber info which opens a pop up...

Part and Inventory Search

Back
Top