Search results

  1. C

    TreeView control

    I would like to insert a TreeView control in to one of my forms, the help file did not provide me with much help so I figured I'll ask you guys if you know of any sample DB or some kind of help source to assist me. Thanks a million.
  2. C

    Startup Page

    click on the code button in order to see the code behind the form and use this code (just copy and paste). Private Sub Form_Load() DoCmd.Maximize End Sub this should do the trick.
  3. C

    DatePart Function

    Try this: Days As Integer Days = DateDiff("d", DOB, Date) Days = Days / 365 Age.Value = Days This should work for you. [This message has been edited by CST9999 (edited 02-04-2000).]
  4. C

    Automatic Fill

    By your questions I understand that you dont have much experience with VB, and in order to do what you want, you will have to code in VB, so, I just made an example for you and I sent it by e-mail. Now, I've not yet seen a good tutorial on-line (a free one) but, if you are looking for a good...
  5. C

    Enter today's date in form field automatically.

    It happened to me also. There is a sure way of making it work: 1. create a new database (brand new) 2. copy all your forms, reports, tables, etc. 3. make sure your relashionship is the same 4. compact database Thats all, this error message seems to appear if you transfer your database to a...
Top Bottom