Recent content by zoran.eremija

  1. Z

    pressing enter instead of button

    See the example attached.
  2. Z

    Copy of Field Names in Tables

    In the topic "Print a list of table Field names" you have an example.
  3. Z

    Question Insert to Access DB Hyperlink

    Try the following strsql = "INSERT INTO fs_attachment_tbl ( Attachment_Type_Id, Hyperlink, Site_id ) SELECT " & Me.cboAttachmentType & ", " & Me.txtFilePath & ", " & Me.Site_ID & ";"
  4. Z

    Simple Relational Database

    Your model is not good. The model that I have proposed is made in the IDEF1X methodology. See attached properly.
  5. Z

    Simple Relational Database

    Based on the above I suggest you the following model.
  6. Z

    testing to see if a Directory exists

    fBackup = BPath & "\Backup" If FolderExists(fBackup) = False Then MkDir fBackup End If Function FolderExists(strPath As String) As Boolean On Error Resume Next FolderExists = ((GetAttr(strPath) And vbDirectory) = vbDirectory) End Function
  7. Z

    One to Many relationship Access 2010

    For your problem I suggest you the following model as a basis
Back
Top Bottom