ScottishFencer
Technical User
Hi There,
When I start a legacy database I see that some code is kicked off. I'm not sure what it does:
What does this code do?
I've had a look through the MS help pages and can figure out that it is acessing "user32.dll"; quite why I can't figure out.
I am looking for the source of some odd behaviour I am getting with this DB. We have a finance section that deals with Direct Debits. So long as the direct debit(DD) run is performed on machine it works fine. If it is done on any other then it doesn't work. The way that the DB connects with the DD software is by placing file on a network share. It does this by using some fairly standard code:
When we get to this line it crashes out. However - do it on the correct pc and everything is ok. My feeling is that there is some old legacy code that is locking this down. Any help would be appreciated.
When I start a legacy database I see that some code is kicked off. I'm not sure what it does:
Code:
Option Compare Database
Option Explicit
' Declare necessary API routines:
Declare Function FindWindow Lib "user32" Alias _
"FindWindowA" (ByVal lpClassName As String, _
ByVal lpWindowName As Long) As Long
Declare Function SendMessage Lib "user32" Alias _
"SendMessageA" (ByVal hWnd As Long, ByVal wMsg As Long, _
ByVal wParam As Long, _
ByVal lParam As Long) As Long
What does this code do?
I've had a look through the MS help pages and can figure out that it is acessing "user32.dll"; quite why I can't figure out.
I am looking for the source of some odd behaviour I am getting with this DB. We have a finance section that deals with Direct Debits. So long as the direct debit(DD) run is performed on machine it works fine. If it is done on any other then it doesn't work. The way that the DB connects with the DD software is by placing file on a network share. It does this by using some fairly standard code:
Code:
DoCmd.TransferText acExportDelim, , "Q_BACSOutput", "R:\SFQCDBs\SSSFA\bacs\BACS.dat"
When we get to this line it crashes out. However - do it on the correct pc and everything is ok. My feeling is that there is some old legacy code that is locking this down. Any help would be appreciated.