Viewing 4 posts - 1 through 4 (of 4 total)
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...
February 9, 2010 at 1:46 am
this question should be rewritten, becuase of the ambigious reading!
September 15, 2009 at 3:54 am
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)
...
September 18, 2007 at 9:35 am
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...
September 18, 2007 at 9:17 am
Viewing 4 posts - 1 through 4 (of 4 total)