Search results

  1. F

    List Box Double Click event decreasing numbers

    Hey everybody i want to know if theres a way to decrease numbers in a list box after a double click event. Here is a detail of my project. i have the following in a text box called txtAuthorization on a form called frmcharges on the double click event Private Sub...
  2. F

    Show Duplicate records once enterd

    Okay i have the following in a combo box called cmbzip on a form call frmMember SELECT tblCityStateZip.Zip, tblCityStateZip.City, tblCityStateZip.State FROM tblCityStateZip; In the after update event i have the following Private Sub cmbZip_AfterUpdate() Me.txtCity = Me.cmbZip.Column(1)...
  3. F

    Assign number to new records if field is left blank or have user enter number

    i have 2 tables One called tblmembers MemberID(PK) Batchnumber LastName FirstName Address1 Address2 City State Zip The other called tblBatch BatchID(Auto) Batchnumber(PK) As you can see by the sample database what i want to do is have a user enter a batch number for new records he/she has...
  4. F

    How To Modify The following Code

    i have a table called tblMember which has the following MemberID(PK)(auto) Surname FirstName BatchID(Left Blank Until Report is Printed) I also have a table called tblBatch BatchID(PK)AutoNumber BatchDateTime Basically what the below code does is assign a batch# when ever new records are...
  5. F

    Not Showing All Info only linked

    As you can see by the attach Not all the Insurances are showing up on the report. If you take a look at the frmProvider and Go To default Pin tab you will see one insurance with a specific set of numbers and you will see another one where the insurance field is blank which will apply these...
  6. F

    Images & Subforms cant get this to work

    Please see attached i have a main form called frmEmployee which is a tab form on the images tab is a sub form I created a browse button when you click on add image command button but cant get the browse button to work. so i can insert picture Any Ideas. Also If possible can I embed a picture...
  7. F

    Combo Box OpenClosed Based Gif

    Please see attached I have a combo box which has Open/Closed. What I want to do is if user selects Open The Green Gif Will appear If the User Selects Closed The Red One will appear. Also is it possible to insert gifs into a txt box or another combo box. Thanks,
Back
Top Bottom