Re: win32lib: IDE
- Posted by David Cuny <dcuny at LANSET.COM> Oct 08, 2000
- 364 views
Judith Evans wrote: > David, when you say VB has a monitor visualizer in the > bottom right corner, do you mean something like a > thumbnail view of the screen? Yeah, I think it's fairly worthless. Some of these windows (perhaps all of them) can be toggled on and off. I *think* the center window toggles between holding the form and the code window. I could be wrong here; it's been a while since I've used it. > Are menus (open, save, save as, etc) on the Tools pallate > or at top as we are used to seeing? Or better yet, pass along > the screenshot locations and I'll take a look. I'll go browsing later and see if I can find an example. > I played a bit incorporating your property sheet and now I > can't use the delete key to remove a control. Does VB > have that as one of the tools? No, I should have warned you. With the Property Sheet, Focus moves to a hidden SLE (EditText), so the window no longer gets key events. It might be a good idea to create a hidden control for the Design window, so focus can be shifted between all these emulated controls. That way, you can trap keys in the real, hidden control instead of the Design window itself, and the two emulated controls can live in harmony. Tab focus would also work. I should have coded it that way in the first place. -- David Cuny