Tip Bank

DevX - Software Development Resource

Creating Long Delays

Question: I’ve been trying to create a simulator – it requires as close to real-time operation as possible. I have a couple of questions about timers.How do I activate a

DevX - Software Development Resource

Putting More Controls on a Form

Question: If you are designing a program, but there is not enough room on a form even when it is maximized, what can you do? Answer: If you use a

DevX - Software Development Resource

FRX Files

Question: Could you (easily) please tell me what .FRX files are in VB?I’d be forever grateful. Answer: FRX Files are displayed in Windows 95 as Visual Basic Form Stash Files.

DevX - Software Development Resource

Getting Entries from INI Files

Question: I want to read the MSMAIL.INI file to get information for my program when it starts, and write information there when the program is terminated. I am looking at

DevX - Software Development Resource

Painting as 3D

Question: How do I use 3D effects on message boxes and common dialogs? Answer: Here is the code you need, in the form of two simple functions. Please note that

DevX - Software Development Resource

Using SelText Property

Question: I can’t figure out how to add (runtime) a string variable into a textfield that already contains text.My thought was: Text1.Text = Text1.Text + “STRING VAR”this will obviously only

DevX - Software Development Resource

Aligning Columns in a List Box

Question: I have a List with names and addresses from a database.I want to have the list as shown below.Mr. Smith Street 10Mr. Andersson Street 25I’ve tried aligning them by

DevX - Software Development Resource

Getting CD Track Information

Question: I would like to read audio CD information directly from VB.At this point I have no idea how it is done, but as I want to writea database program,

DevX - Software Development Resource

Cancelling a Window During Load

Question: Supposing that in Form_Load I determine that I wish to cancel the load of the form (so that nothing is in memory and nothing is displayed to the user).