Can any on explain me. what is the use of VBA
what is VBA
Collapse
X
-
Tags: None
-
Originally posted by pramodrepakaCan any on explain me. what is the use of VBA
its used for communication between application like vb with word
Good Luck -
Originally posted by vijaydiwakarVBA= visual basic for application
its used for communication between application like vb with word
Good LuckComment
-
VBA (Visual Basic For Applications) is a rather simple computer language Microsoft developed. Its original purpose was to allow users of Windows applications to create more advanced applications. This in turn snowballed into a language that is widely used and very flexible.
For example, using VBA - or VB if you prefer - I can run an Access program that opens Excel spreadsheets, runs Excel macros or saves data in Word, Excel, Access or even as PDF.
Using VBA you can also do things like create pictures via JPEG, add motion or animation to a program. Corel Draw is a more popular program that uses VBA to draw. VBA can also be used to create voices for computers, create CD players or music recorders, create and play games and a number of other functions.
Get down the basics of VBA and life is much easier. Here is a link to some basic VBA stuff that will help you get a taste of what its capable of doing. This link is specificly aimed at Excel, but still a good starting spot to get familiar with VB.
http://msdn2.microsoft .com/en-us/library/aa203714(office .11).aspxComment
-
Or to put it another way...
VB
Development environment/language with compiler to produce "standalone " programs/DLLs (they actually require some runtime stuff, so aren't really independent).
VBA
Basically the same language, without the compiler, built into various MS Office applications such as Word, Excel, Access. Mostly used to build "macros" to do things within the application, though it can do more.
Comment
Comment