Search:

Type: Posts; User: R. Hicks; Keyword(s):

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    22
    Views
    865

    Re: License Question (XP Pro)

    LMAO ... Can I borrow ... $324.00 ??
    I promise to repay it next Tuesday ... LOL

    RDH
  2. Replies
    22
    Views
    865

    Re: License Question (XP Pro)

    Thanks for the information ...
    I always thought that it was one computer one license as you have posted .. but someone tried to tell me different.
    I was just curious. I knew that it was legal to...
  3. Replies
    22
    Views
    865

    License Question (XP Pro)

    Is it legal to use a single copy of Windows XP and install on a desktop and a laptop that is for my exclusive use .. as it is with Microsoft Office ??
  4. Replies
    4
    Views
    351

    Re: Access (XP Professional)

    Try this user defined function:
    <pre>Public Function fGetAgeAsOf(dtDOB As Variant, dtAsOf As Variant) As Integer
    Dim dtBDay As Date
    If Not IsDate(dtDOB) Or Not IsDate(dtAsOf) Then Exit Function...
  5. Replies
    10
    Views
    545

    Re: Animated GIF (2000)

    That's an old FAQ at Tek Tips that I posted a long time ago.

    You can also find information on this at the location below.

    Animation with Animated GIF's in Access

    HTH
    RDH
  6. Replies
    4
    Views
    292

    Re: time calculation (97)

    If all you need is the elapsed hours between two Date/Time values ... then all you need is to use is the DateDiff() Function:

    DateDiff("h", [YourStartValue], [YourEndValue])

    HTH
    RDH
  7. Re: Reset AllowByPassKey property back to True (A2K/A2K2)

    The ShiftKey property can be set via a remote database.

    Go to the location below and download a Utility that will do what you need.

    ByPass Shift Key Utility

    HTH
    RDH
  8. Replies
    7
    Views
    406

    Re: Age in Year and Month (A2K)

    This user defined function should give you the results you are after.
    <pre>Function fGetAgeYMD(DOB As Variant) As String
    Dim intYears As Integer, intMonths As Integer, intDays As Integer
    Dim...
  9. Replies
    4
    Views
    243

    Re: Keystroke to jump to certain field (97)

    Here is one way to do this:

    First set the "Key Preview" property of the form to Yes (the default is No).

    Now place the following in the "On Key Down" event of the form:
    <pre>Private Sub...
  10. Replies
    4
    Views
    228

    Re: Update odd # to A and even # to B (2000)

    Mod 2 .... means divide the number by 2 and only return the remainder.

    So if you think about it .... any whole number that can be divided by 2 equally with no remainder is an "Even" number. The...
  11. Replies
    4
    Views
    228

    Re: Update odd # to A and even # to B (2000)

    A simpler way would be to use the Update Query. In the "Update To" section of the field you want the "A" or "B" .... use the following example:

    IIf([YourNumber] Mod 2=0,"B","A")

    "YourNumber"...
  12. Thread: List box (97)

    by R. Hicks
    Replies
    10
    Views
    467

    Re: List box (97)

    If you use a listbox to "multi-select" criteria for your report, you can not simply reference the list box from the query to retrieve the criteria.

    You have to use code to "Loop" through the...
  13. Replies
    1
    Views
    274

    Re: date stamping changes to records ('97)

    Add a Date/Time field to the table. Include the newly added field to the recorset query the form is bound to. Add a new txbox control on your form and set the Control Source of the txbox to the newly...
  14. Re: Access 97 Scroll Mouse Disabling Problem Solved!!! (Access 97)

    The code originally posted, at the start of the original thread, works in Access 2000 ... I have not tried it in Access 2002 yet but I suspect it will work in that verson also. It just will not work...
  15. Replies
    6
    Views
    257

    Re: Access 97 with Office 2k (97 vs 2000)

    Here is an added note to installing Office XP (2002) on a machine with Office 2000 already installed ......

    I also have all 3 versions installed on my development machine.

    You do not have to...
  16. Replies
    6
    Views
    257

    Re: Access 97 with Office 2k (97 vs 2000)

    I agree with Mark ......

    Make sure you choose to install Office 2000 in a different folder (I use C:Program FilesMicrosoft Office2k).
    Also make sure you choose to "keep older version" during...
  17. Replies
    6
    Views
    788

    Re: Shift Bypass Key (Access 2000)

    Let me just attach it to the post and save us all the trouble of emails.

    I need to add code to the app to detect if the database you want to set the "ShiftKey" property has a password. Currently...
  18. Replies
    6
    Views
    788

    Re: Shift Bypass Key (Access 2000)

    I easiest and simpliest way is not to add the code to the app. Instead use a remote database designed specifically for this pupose. You keep a copy of this application on your development machine and...
  19. Replies
    1
    Views
    232

    Re: Date Query? (XP)

    You need to extract the Year from your stored Date entry using a "Field Expression".
    You then set up a prompt in the Criteria section of this field expression to get the user to enter the Year to...
  20. Re: Looking for Backup Strategies (Access 2002)

    Hmmmm ........
    I just took a look in my Access 2002 help and went right to FileCopy. It is in the VBA help files. To access it you must be in the VBA code window then cilck on help from that window....
  21. Replies
    3
    Views
    1,179

    Re: Calculate age in query (Access 2000)

    Actually you should be using "yyyy" as the "Interval" argument in the DateDiff function ... not "y".
    The "y" argument returns the "Day of Year".

    Here is an expression I always use:
    ...
  22. Re: Looking for Backup Strategies (Access 2002)

    Here is a sample routine that should work for you:

    Public Sub BackUp()
    On Error GoTo Err_Backup
    Dim strMsg As String, strTitle As String
    Dim strSource As String, strDest As String
    Dim strError...
  23. Re: Looking for Backup Strategies (Access 2002)

    As long as the backup is performed from the frontend, from an unbound form with no bound forms open, you can use the "FileCopy" statement to copy the backend to another location.

    HTH
    RDH
  24. Replies
    4
    Views
    257

    Re: Splash Screen (97/2000/2002)

    Attempting to replace the standard splash screen with a .bmp file on todays faster machines is a totally useless venture. As you have found, it appears and disappears too fast to read ... and Access...
  25. Re: Turn off Command Menu Bar completely (Win2K, Access2K)

    You are very welcome.... <img src=/S/smile.gif border=0 alt=smile width=15 height=15>

    I was just hoping I understood the question .... LOL

    RDH
Results 1 to 25 of 95
Page 1 of 4 1 2 3 4