Recent content by eason

  1. E

    Outlook email for data entry???

    I'm send out about 1,000 emails to employees via a VBA code. I need to find a way to have them reponed in a certain format so I can import the replys. They email will be a sarvay of employ info. I do know that the Outlook forms has been turn off as I can not use it. Is there any way for me...
  2. E

    Data Access Pages for Data Entry

    I need the basic of how to creat a single data entry DAP that populates into a single table. I have one day to do this and I have never used DAP. I used the wizard and it created the page (all 8 fields), and set the DataEntry property to True, but I can not enter data. What am I missing...
  3. E

    Execute a Command Button on Diff Form

    I have a main form that contains a sub form. On the main form I have a commad button that refreshes and requeries the sub form. I also have a command button that opens a popup form to add new contracts. What I would like to do is have the popup form execute the requery command button on the...
  4. E

    FindRecord

    I have a popup form that is opened by users to add a new record into the table. When the popup form is closed I have if saving the records. What I want it to do is requery the main form and find the new record just added to the table. Here is my code tha is not working. If Me.CompanyID <> ""...
  5. E

    WorkGroup

    :confused: I have a .mdb app that I want to set up to a workgroup. I have a workgroup in the same folder/network on the drive that has a different name then my system.mdw. I have added a new Admin to my .mdb app and removed all the rights of the old Admin. When I run Security Wizard, it does...
  6. E

    WorkGroup: Incorrect Password or UserName

    It is not that I have tried it with the drive name in the path but get the same error. I use the \\ because different computers have differant paths. By using \\ it will connect no matter what the drive is. Any one else have an idea?????
  7. E

    WorkGroup: Incorrect Password or UserName

    I have set up a workgroup for an Access 2K db. It is on a network server (NT 4.0 sp5 with Novell). I created the shortcut and put in the path to both the work group and db: "C:\Program File\Microsoft Office\Office\MSACCESS.EXE" "\\Path to .mdb" /WRKGRP "\\Same Path to .mdw" When I copy the...
  8. E

    Date() as default value is error #Name?

    That worked!!! The =DateValue(Now()) solve the problem. Thank you very much.
  9. E

    Date() as default value is error #Name?

    I tried the Format also and I still get the same error proble????
  10. E

    Date() as default value is error #Name?

    The field name is Datetxt. I also tried the Now() function but that put the date and time in which makes it harder to query.
  11. E

    Date() as default value is error #Name?

    I have a form in Access 2000 that was updated from Access97. The field Date in the table is set to Date/Time with ShortDate as the format. This table is link to an input form and the first field is Date. I have Date() set as the Defualt Value for this field. If works find on some of the...
  12. E

    Currently Locked by another session on this machine!!!

    You may be getting this error if you have not set your recordset to nothing. Dim rst as Recordset set rst = currentdb.openrecordset("") 'When done with rst set to nothing Set rst = Nothing After you are do with the recordset in you code set it to nothing. You if you don't you will lock your...
  13. E

    Refreshing linked tables with password

    I have 2 mdb databases. One is the backend that hold all the information, while the second has the linked table in it and is the front-end. I'm trying to write a code that will relink to the back end if the link is lost for some reason. (The back in is on a cd.) All of this is read only...
  14. E

    Page size change on export

    I have a report that is in Legal Landscape. I export to a snapshot(to save the lines) and e-mail it to my client using a VB program. I have save the setting to Legal and most of the time it exports OK. Sometimes when I export the report it changes to Letter from Legal in Access. Is there a...
  15. E

    Import file from excel

    I have a Access DB and an Excel spread sheet. What I need to do is have the information, that is enter into the spread sheet, append to my DB. I did not design the spread sheet, and I know there is no table in the spread sheet. This is in a multi-user envoriment. When the user enters info to...
Top Bottom