Search results

  1. smercer

    Run Module within another database?

    This could also be done in a form, having the calculations in a text box, couldn't it?
  2. smercer

    Referencing Form properties with Access 2003 Nightmare

    It is a different form from the form name that is posted origanaly. Just trying to get it to work. I am starting to think that there may be something in the name or something that access 2003 doesn't like because other record source changes in my db do work.
  3. smercer

    Is there a way to check if the this year is a leap year with VBA?

    Nether have I, Until now.... Thanks anyway
  4. smercer

    Is there a way to check if the this year is a leap year with VBA?

    Thanks so much for that Miles. I have modified your code so that it is like this: Function Twenty_Ninth_Date() On Error GoTo Err_IsLeapYear Dim dteTemp As Date Dim IsLeapYear As Boolean dteTemp = DateSerial(Year(Date), 2, 29) If Day(dteTemp) = 29 Then IsLeapYear = True Err_IsLeapYear: If...
  5. smercer

    Is there a way to check if the this year is a leap year with VBA?

    Hi all I am creating a calender in the Access Data Pages and I was wondering if there is a way to check for whether the current year is a leap year with VBA? Thanks for your help!!!
  6. smercer

    How to show the last modified time of a table?

    The other thing I have not told you (and I did not think it was nesercery) is that I have for each text box or combo box a keypress event call a function which in turn would call the Backup_Log_stamp function. At the time I thought that having a keypress on the form would do all combo boxes...
  7. smercer

    Drop-down Combo box problems

    It all depends on what you mean by "save". when users enter data into or edit a record they are saved immediately when they go to next record, so a save button is not needed. however if you have the record restricted so that the user is only being able to edit his/her record, then a save button...
  8. smercer

    Run Module within another database?

    If all you want is to show the data in different ways, what is wrong with having a plain select query instead of making a heap of tables?
  9. smercer

    How to show the last modified time of a table?

    Two other things you are doing wrong: the first is you are missing a "end sub" after you call the Backup_Log_Stamp line. The other thing you are doing wrong is that the function must be in a module, which can be in the same module as the public variable "Previous_Time_Saved", but if you have it...
  10. smercer

    How to show the last modified time of a table?

    See attachment
  11. smercer

    Using Data Access Page with calender events

    Sorry, It's working now.
  12. smercer

    Using Data Access Page with calender events

    Hi all I am using the Data Access page for creating a events page in calender format. I am setting it up so that the present month, and the following month will be visible on the web with each month on a different page. I am using list boxes to display the events for each day so that more...
  13. smercer

    Get current Windows 98 Username

    Thats what the problem is, you are using Access 97 and I am using access XP. Thanks for your help.
  14. smercer

    How to show the last modified time of a table?

    Try this: Private Sub Form_Current() Previous_Saved_Time = False End Sub Make sure that it is a public or global variable otherwise it won't work like it should.
  15. smercer

    Drop-down Combo box problems

    I was wondering, would it be better for you to record the times they log on to computer for the times they start, and record the times they logoff for when they finish. This could be accomplished by having the database autostart when the workstation starts, however when the workstation is shut...
  16. smercer

    Can a query do this?

    in the criteria for fields you want only with an entry do this: Is Not Null
  17. smercer

    Return a Zero Value

    Yes it can be done, but it would be better to just calculate the value when you need it. This is very easy to do. if you just want it in a form it is better to do it there then in a query. Just create a text box and when in design view, type in it: In a main form type...
  18. smercer

    Newbie needs help

    Larry, do you want to use barcodes to find your criteria? eg a voter comes in and shows a Voter ID card, you scan it and there it is. Is this how you want it? Politics sucks.
  19. smercer

    Referencing Form properties with Access 2003 Nightmare

    There must be a better way, because that will cause my database to become bloatware. And all the coding would be all over the place, so I don't think that is a option. Interestingly this works: Forms!frm_Book_Entry_form!.sfrm_Book_Entry_Book_Description_Record_selected.Form.RecordSource =...
  20. smercer

    Drop-down Combo box problems

    This should get you started
Back
Top Bottom