Tip Bank

DevX - Software Development Resource

What do I need?

Question: A new user, no experience, but a self motivator, I need to know if I need a data base program, or is there one included in VB 5. How

DevX - Software Development Resource

Locking a Form in Position

Question: How do you lock down a form so that when the program is run, you can not move it. What I want to do is have one main form,

DevX - Software Development Resource

Documenting the contents of a .PBL file

Question: Is there a third-party tool (or a functionalitynative to PB) with which I can print the *entire*contents of a .PBL file, preferablyin a way that’s meaningful? I have in

DevX - Software Development Resource

Parse string to float or double

Question: Is there a command Float.parseNumbers(s) that returns a float? Answer: Sure, parseInt(s) is simply: Integer temp = Integer.valueOf(s); int x = temp.intValue();which has an equivalent for floats Float temp