Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: An Administrative Security Hole?

    the human factor is always a weak place.

    nobody can be sure its treasure is in a safety, if someone else have access to it even as a DB admin or...

  • RE: Access

    this question should be rewritten, becuase of the ambigious reading!

  • RE: SPLIT function in VBA

    Split in VBA for Access will not help you in this case

    The only Mid () function is usefull here:

     

    Dim strText as String

    Dim varChars() as string

    strText="abcdefghijklmn"

    Redim varChars(Len(strText)-1)

    For i=1 to Len(strText)

     ...

  • RE: Run-Time error 429 on CreateObject("Outlook.Application")

    the correct disclaimers are:

    1. late-binding -

    Dim olApp As Object

    Set olApp = CreateObject("Outlook.Application")

     

    2. Earlier binding

    Dim olApp As New Outlook.Application

    but in both ways you need to connect the Outlook library into Reference list...

Viewing 4 posts - 1 through 4 (of 4 total)