B
Bernie Yaeger
I have a simple mailsys solution that works splendidly.
I decided to add a listview with file association icons to replace a listbox
that displays the full path only of an attachment. But when I add this
(which I need to get the file association icons):
Private Declare Ansi Function SHGetFileInfo Lib "shell32.dll" (ByVal pszPath
As String, ByVal dwFileAttributes As Integer, ByRef psfi As SHFILEINFO,
ByVal cbFileInfo As Integer, ByVal uFlags As Integer) As IntPtr
The system now runs but hangs once I call sendmail. Without this call in
the declarations section above the load event, the system works fine. Any
ideas why just having a call like this in the declarations section would
hang up sendmail?
Thanks for any help.
Bernie Yaeger
I decided to add a listview with file association icons to replace a listbox
that displays the full path only of an attachment. But when I add this
(which I need to get the file association icons):
Private Declare Ansi Function SHGetFileInfo Lib "shell32.dll" (ByVal pszPath
As String, ByVal dwFileAttributes As Integer, ByRef psfi As SHFILEINFO,
ByVal cbFileInfo As Integer, ByVal uFlags As Integer) As IntPtr
The system now runs but hangs once I call sendmail. Without this call in
the declarations section above the load event, the system works fine. Any
ideas why just having a call like this in the declarations section would
hang up sendmail?
Thanks for any help.
Bernie Yaeger