CompuServe Archive

This is an archive of CompuServe forum messages from 1985 to 1995, as saved in transcripts by John Foust.

Search Results (9 messages)

#9506 Windows Help Files Message #9507
From: paul bonner Windows Sources Forum · General Info May 10, 1994 9:33 AM
Doug, No matter what development tool you're using, the process of calling a custom help file is fairly similar. Your applications responds to a user request for Help (clicking a Help button, pressing F1, or whatever) by calling WinHelp and instructing it to open a specific compiled Help file. In…
From: paul bonner MS BASIC Forum · Visual Basic October 16, 1991 11:16 AM
Thanks for the tips. I don't know if that's a perfect solution, but it's good advice. Paul
From: paul bonner MS BASIC Forum · Visual Basic October 15, 1991 5:02 PM
I'm working on a couple of applications which, as part of their miscellaneous options, offer the user the option to use either a small or large font (actually they toggle between 8.25 and 9.75 points) for displaying text boxes, listboxes, etc. However, I've noticed that when the switch is made,…
#2968 #VB Install routine Message #2979
From: paul bonner MS BASIC Forum · Visual Basic October 14, 1991 12:21 PM
I'd like to butt in here with the opposite view. I think the documentation of the API is totally inadequate. The ability to make API calls is essential to the ability to create decent programs with VB (as demonstrated by the heavy use of API calls in the sample programs…
#2403 faster FRAME routine Message #2427
From: paul bonner MS BASIC Forum · Visual Basic October 10, 1991 11:48 AM
You're right, I sort of backed into the solution and ended up doing more than was necessary. All you really need to do is put the ctrols inside a Picture box–the frame isn't needed. The Picture box lets you set AutoDraw to TRUE, eliminating the need to redraw the Framing…
#2176 faster FRAME routine Message #2177
From: paul bonner MS BASIC Forum · Visual Basic October 9, 1991 9:44 AM
The three lines of code in my previous message should read: IF PICTURE1.AUTODRAW=TRUE THEN EXIT SUB PICTURE1.AUTODRAW = TRUE CALL PicFrame(FORM1.PictureControl, ControlToFrame)
From: paul bonner MS BASIC Forum · Visual Basic October 9, 1991 9:41 AM
I liked the VBTIPS viewer so much I started playing around with its FRAME routine for a project of my own. I discovered you can speed up FORM.SHOW commands considerably by putting all the controls that you want to FRAME on top of a Frame control which is covered entirely…
#1727 #Windows messages Message #1803
From: paul bonner MS BASIC Forum · Visual Basic October 7, 1991 12:11 PM
Thanks, it worked like a charm. Well, actually I spent a couple of hours figuring out how to popup a menu that didn't appear on the form's main menu bar, but once I did it worked fine. It's certainly easier letting VB's menu routine handle menu selections and jump you…
#1727 Windows messages Message #1734
From: paul bonner MS BASIC Forum · Visual Basic October 7, 1991 1:09 AM
Jonathan, Thanks for the info. Paul