Author |
|
Gabriel Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 09 February 2006 at 5:10pm | IP Logged
|
|
|
Basically, if i develop a little program using MailBee. Do my friends need special files like dll files or something like that to make the program operate successfully on their computer? If so, how can i put that into my program so my friends doesnt need to think about it, it will just work perfectly for them? Im developing my program in visual basic, so help there would be appriciated
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 10 February 2006 at 6:27am | IP Logged
|
|
|
You need to redistribute MailBee.dll file (you can find it in C:\Program Files\MailBee folder if you installed into default location).
Also, you must register it in Windows using the following call in command line or .bat file:
regsvr32 "path to MailBee.dll"
for example, if you install your app and MailBee.dll at C:\MyApp, you should call:
regsvr32 "C:\MyApp\MailBee.dll"
The above procedure is required for all components VB can use, it's not MailBee's particular requirement.
Regards,
Alex
|
Back to Top |
|
|