I need ideas of how to make visual basic programs perform faster without compromising its details and efficiency.
Ways to Optimized Visual Basic Softwares
Collapse
X
-
Tags: None
-
-
Yes, its all about retrieving database files and storing them.
Originally posted by debasisdasWhat the program is all about ?
Anything related to database or file handling ?Comment
-
Originally posted by mariussevenYes, its all about retrieving database files and storing them.
Then, use the $ functions while working with strings, for example.Comment
-
Is that option available in Visual Basic 6.0 or only in newer versions? I have this idea of emptying the memory of the computer after every event, does this help?
Originally posted by kadgharit might require some work, but you can check what in newer versions is "Option Strict" which means you'll always work with the correct variable type, so no implicit conversions will be made.
Then, use the $ functions while working with strings, for example.Comment
-
Originally posted by mariussevenIs that option available in Visual Basic 6.0 or only in newer versions? I have this idea of emptying the memory of the computer after every event, does this help?
well, sure, it's something you must do when working with huge calculations.
But with small ones, i dont think it'll optimize your code very much.
And no, VB6 doesnt have Option Strict, but you can imagine you have it, its just a restriction that wont compile your code, unles you're using the right variable conversion type.
HTHComment
-
Comment