Okay, I need a function that'll just tell me whether a file is in my resources or not.
I'd prefer not to use LoadResData with error trapping because some of my resource files are somewhat large. Therefore, my first idea was to use the FindResource API call. However, this only works once the program is compiled.
So, what I'd like as a ResourceExists(sFileName As String, sResourceType As String) As Boolean function that works the same in the IDE as compiled.
I'm going to do it with error trapping (and LoadResData) for now, but I'd sure like a better solution.
Thanks In Advance,
Elroy
I'd prefer not to use LoadResData with error trapping because some of my resource files are somewhat large. Therefore, my first idea was to use the FindResource API call. However, this only works once the program is compiled.
So, what I'd like as a ResourceExists(sFileName As String, sResourceType As String) As Boolean function that works the same in the IDE as compiled.
I'm going to do it with error trapping (and LoadResData) for now, but I'd sure like a better solution.
Thanks In Advance,
Elroy