http://www.powerbasic.com/support/downloads/demos.htm
"DLL Example - Modal Dialog" InputDLL.zip is a broken link.
Anyone have that zip file they would like to upload here?
Or does anyone have an example of how to create a resource DLL in PB?
What I mean by "Resource DLL" is have a form popup.
Like as follows in C++:
Thanks.
"DLL Example - Modal Dialog" InputDLL.zip is a broken link.
Anyone have that zip file they would like to upload here?

Or does anyone have an example of how to create a resource DLL in PB?
What I mean by "Resource DLL" is have a form popup.
Like as follows in C++:
Code:
BOOL MyFunc(char *hello, char* hi) { //blah blah DoModal(); make form show return TRUE; }
Comment