CDLL Function and visual basic
CDLL Function and visual basic
Has anyone built a visual basic project that creates a dll that RRW can call and get a value from?____I have tried it with no luck, the result is just ******^s____Here is what I tried;__(Purpose: to send a path & filename and return if it exists back to rrw)____made an activex dll in vb5 pro with this code:____Option Explicit__Public Function IsFile(ByVal FileName As String) As Boolean__ IsFile = Dir(FileName) > " "__End Function__