Enough excitement (for the moment) on object capabilities in the next release: here’s a technical question to start off this new forum regarding current PB/Win COM features.
Whilst executing a call to COM method, my PB app is frozen. The message loop is totally suspended and it doesn’t even repaint the screen. This isn’t too much of a problem for most COM calls that execute reasonably quickly, but if I call something that waits for user input, for example:
the user might task switch back to my PB app (perhaps for inspiration on what name to use) and find a messy partially updated but mainly blank dialog.
Is there a recognised way to avoid this problem?
Whilst executing a call to COM method, my PB app is frozen. The message loop is totally suspended and it doesn’t even repaint the screen. This isn’t too much of a problem for most COM calls that execute reasonably quickly, but if I call something that waits for user input, for example:
Code:
OBJECT CALL oExcelApp.GetSaveAsFilename(FileFilter=vFileMask,Title=vText) TO oVnt
Is there a recognised way to avoid this problem?
Comment