Recent content by midge

  1. M

    Re-ordering Products

    Hi I am new to using Access 2000 and have created a database for stock control. I would like to be able to order stock when the stock levels fall below a certain amount. I have a field called "stocklevel" and another field called "minimumlevel". When the stock level falls below or is equal...
  2. M

    Date/Time Entry Validations

    Hi I am new to using Microsft Access 2000 and am experiencing problems using entry validations:- 1. Field Name Visit Date - entries only accepts current year e.g. 2003 2. Field Name Visit Time - only accepts times between 09:00 - 18:00. 3. Field Name Contact Name - First Character of...
  3. M

    Password Query

    Hi, Rob, Thanks for your reply but I was wondering if there was VBA code that I could use to do the same procedure.
  4. M

    Password Query

    Hi, I am new to using Microsoft Access 2000 and VBA and I want to create a global function (procedure) so that the user has to type in a password to access the database. Any help with my problem would be much appreciated.
  5. M

    Switchboard Query

    Hi, I am new to using Microsoft Access 2000 and VBA !! I have created a database and a Switchboard. On my Switchboard I would like the user to click on the link on the Switchboard that would take him to a page of documentation regarding the database e.g. How to add records to a form etc. Can...
  6. M

    Modules or Functions

    Functions & Modules Hi, I have managed to sort out my problem concerning searching for a record by clicking on a button. I had to make sure that Microsoft DAO 3.6 Objects was selected from the Tools then References. Private Sub FindRecord_Click() Dim rst As DAO.Recordset, strCriteria As...
  7. M

    Modules or Functions

    Modules & Functions Hi, Thanks for the feedback !!! The code that I used was when I did a search on 'bookmark' on Microsoft Access 2000 help, and adjusted the code for my database. I created a button called "FindRecord" and copied the code. So why does the code not work ?
  8. M

    Modules or Functions

    Modules & Functions Hi, The part which was highlighted when I clicked on the FindRecord was FindFirst. Regards,
  9. M

    Modules or Functions

    Modules & Functions Hi, I am using Access 2000 version. I decided to use the following code to search for a record in the Players form which contains the following fields :- Players :- PlayerID,FullName,MemberID,Team,Address,PostCode,T elephoneNo,MobileNo. I created a button called...
  10. M

    Modules or Functions

    I am new to using Access 2000 and VBA and I require some help in my project which I need to complete by Wednesday 8th January 2003. I need to add three Sub Procedures or Functions to a Form Module and one Sub Procedure or Function to a Global Module. The database tables and forms that I have...
  11. M

    Select Case Problem

    Hi, It worked !! Thanks for your help !!
  12. M

    Select Case Problem

    Hi , I am trying to write a Select Case program using vba. I am using Microsoft Access 2000. Below is my program that I wrote so far. Private Sub ProductID_BeforeUpdate(Cancel As Integer) Select Case ProductID Case "am" SupplierID = "1" Case "kk" SupplierID = "2" Case...
  13. M

    Help with Combo Boxes

    Hi, I have managed to sort out my problem with Combo Boxes. I hope that everyone had a good xmas !!:)
  14. M

    Help with Combo Boxes

    Hi, Merry Christmas Everyone !!!! I am having problems with a Combo box which I created using the wizard. The problem is when I select a person's name from the list form of the combo box information from another field the SupplierID is displayed in the contacts field. I have a separate field...
  15. M

    help with VBA in Access 2000

    Date Calculations Hi Shay, Thanks very much for your help with this matter. The code that you gave me has now worked !!! Much appreciated for your help !! HAPPY CHRISTMAS !!!! :) :p
Back
Top Bottom