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. 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...
  16. jeremy0028

    Clear form question

    I have a form called subscriber info 1 I have the following fields Last Name txt First Name txt MI txt Address txt City txt State txt Zip txt Phone Gender(option Group) (1=Male 2=Female) I have 2 command buttons One called copy from patient info- which...
  17. jeremy0028

    Datasheet

    I had a similar problem. You can create a query based on a drop down in a form and and add that query in the subform form worked for me.
  18. jeremy0028

    Combo Box 2 part question

    I have a combo box called gender using the wizard i used i will type the values i want. I used male, female. which stores the information into a table called patient info under a field called gender How do you set the default property so it would be male evertime a user adds patient record...
  19. jeremy0028

    Subform set focus new record

    Okay i have a table and form called patient info. On the form i have a command button called Add Payments. which opens the payment form. I have a form called payments on that form it has Patient Account, payment date check #Check Amount, Payment Type I also have a subform called Payments2...
  20. jeremy0028

    Add new Record Datasheet view subform

    What do u mean by data entry property can u be a little bit more specific i'm a newbie.

Part and Inventory Search

Back
Top