P
Peter Judge
Guest
Peter, I think you going to want to do something like the below. /* this internal proc or method will typically launch and :Show() a form (login-window, whatever) */ run InitializeApplication. /* note no form passed in. once this wait-for runs, the screens show and the user can interact with the app. */ wait-for System.Windows.Forms.Application:Run(). /* once you're done ... kill wait-for so that the application doesn't hang. This should be called from the closing of a (the last) form. */ System.Windows.Forms.Application:Exit(). There's also the OpenEdge GUI for .NET Task Map that has a section on using WaIT-FOR's -- peter
Continue reading...
Continue reading...