Visual Basic

Moderators: None (Apply to moderate this forum)
Number of threads: 18011
Number of posts: 55384

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
What does runtime exactly mean? Posted by honest_dude on 21 Feb 2005 at 10:08 PM
What does runtime files such as vbrunxx.dll, msvbvmxx.dll exactly/really means, whats is their importance for a developer?

Thanks.

Zela

Report
Re: What does runtime exactly mean? Posted by poetfreak on 22 Feb 2005 at 1:03 AM
: What does runtime files such as vbrunxx.dll, msvbvmxx.dll exactly/really means, whats is their importance for a developer?
:
: Thanks.
:
: Zela
:
:
They are standard libraries included by visual basic which contain the common commands and functions that make up your VB program. When your program executes a line saying:

Center.Me 'Stupid example but good enough for here

Your program just calls the libraries center method on the active form.

visual basic must actually get the screens width and height. Then get the get the windows handle (like an ID number) of the active form (ME) and then the forms width and height. then it does:
me.left = screen.width/2 - me.width/2
me.top = screen.height/2 - me.height/2

Without the library it doesn't know what center, me, left, top, or width
mean or are. Your program can't run without the libraries, they are the brains under your code.


Report
Re: What does runtime exactly mean? Posted by BitByBit_Thor on 22 Feb 2005 at 11:49 AM
: : What does runtime files such as vbrunxx.dll, msvbvmxx.dll exactly/really means, whats is their importance for a developer?
: :
: : Thanks.
: :
: : Zela
: :
: :
: They are standard libraries included by visual basic which contain the common commands and functions that make up your VB program. When your program executes a line saying:
:
: Center.Me 'Stupid example but good enough for here
:
: Your program just calls the libraries center method on the active form.
:
: visual basic must actually get the screens width and height. Then get the get the windows handle (like an ID number) of the active form (ME) and then the forms width and height. then it does:
: me.left = screen.width/2 - me.width/2
: me.top = screen.height/2 - me.height/2
:
: Without the library it doesn't know what center, me, left, top, or width
: mean or are. Your program can't run without the libraries, they are the brains under your code.
:
:
:

The only thing in VB that isn't library bound is are the actual operators and declaration of functions, variables and also the If and Select statements (oh and don't forget the loop). So actually only the structure plus some simple operators are NOT runtime library defined. The rest is all made possible by Runtimes.
Each high level language these days has runtime (Microsoft languages anyway)

Greets...
Richard




 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.