I have a login screen that allows the user access to the Main Application. If the user successfully logs in, the Main App displays a list of command buttons that when clicked, will execute another application. Now what I need is to pass the application being launched the username of the user logged in. Which in turn checks the database to see if the user has access to open the application. If the user has access, the application will launch and vice versa. I DON'T want to do this using the registry or by reading an external file. Is there a certain API call that I can make that will allow me to pass such a parameter as this. I looked at ShellExecute but couldn't see how this would work. I also looked at WindowsMessaging and couldn't figure out how to handle it once I got it. Thanks in advance...