Several days of research and trial and error and I've answered my original question:
1) INFO: VB6 Designers Do Not Work in VB5
http://support.microsoft.com/default.aspx?scid=kb;EN-US;190253
2) HOWTO: Build an Office 2000 COM Add-In in Visual Basic...
Assuming you are using standard file I/O to open and read the file, you only need to modify your open statement slightly:
On Error GoTo FileLocked
Open "C:\temp\test.csv" For Input Lock Read Write As #1
On Error GoTo 0
Do While Not EOF(1)
'your processing code
Loop...
I've searched and found nothing posted similar or relevant to my problem so I'd thought I'd see if anyone has seen this behavior before.
I'm using VB5 to create a COM DLL add-in for Outlook. I have added the necessary references and designer, set it for Outlook, the version I'm using, load at...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.