Recent content by TanisAgain

  1. T

    got warning everytime opening an access file

    You see this message because the macro security level in Access is set to High and the file that you are trying to open is not digitally signed. If you or a member of your workgroup created this database, you should consider obtaining a certificate and digitally signing the database. You and...
  2. T

    Update Query with Rnd (random numbers) question

    This SQL picks out 30 random records from a table. This is a make table query. SELECT TOP 30 tblRandomRecords.ID, tblRandomRecords.FirstName INTO Newtable FROM tblRandomRecords ORDER BY Rnd([ID]);
  3. T

    Linking from Switchboard to Switchboard on two or more databases

    I can't see why the code is not working? I must admit, I havn't used it with workgroups. but the code looks right. What error messages are you getting?
  4. T

    avoid repetitive values in several fields

    The fields do not have to be primary keys. In the table design you will find property called Indexed. Change it to 'Yes(No Duplicates)' Having said that, it would be better if the values were checked in a form. You could still perform data validation there.
  5. T

    Linking from Switchboard to Switchboard on two or more databases

    If you simply want to open another DB from already open db, then there are a couple of ways to go. You may have to change the path to the application. Private Sub cmdOpenAnotherDatabase_Click() Dim stAppName As String stAppName = "C:\Program Files\Microsoft Office\Office\msaccess.exe DBPath"...
  6. T

    Using VBA to send an email.

    Have a look here. It may well provide the answer. http://support.microsoft.com/kb/263084/en-us
  7. T

    Using VBA to send an email.

    Column count in a combo box starts from (0). Try changing your column count to (1)
  8. T

    Matching two fields in two tables

    Create a new query with the wizard and choose 'Find unmatched query wizard'
  9. T

    Can't enter info into query

    Post the SQL
  10. T

    Creating Forms

    What do you mean by 'system' Is it a table in an Access database? You don't need a form, you would do a comparision by query.
  11. T

    setting query search criteria from a form

    Try the query by form technique. Example here. http://support.microsoft.com/kb/209645/en-us
  12. T

    OpenArgs, two parameters

    Thanks folks, problem solved.
  13. T

    OpenArgs, two parameters

    I have used the OpenArgs method to pass a parameter to another form, but I now need to psss two parameters, and I am not sure how to do this. On Error GoTo Err_CmdOpenForm_Click Dim stDocName As String Dim stLinkCriteria As String stDocName = "frmName" DoCmd.OpenForm...
  14. T

    list displaying wrong value

    The code you are using would be helpful.
  15. T

    log off automatically

    Try here. http://support.microsoft.com/kb/210297/en-us
Back
Top Bottom