Quote Originally Posted by Always_Confused View Post
Yes! But I can not get the app to recognize the args. When I enter say PSA100. intellisense only shows the form names. How can I get it to see a function in the main module?
Based on the code you posted above, the function "Main" has no access modifer, so its default is private. You can't see private members in a referenced assembly, they are internal only. Try making it public.