Windows Vista --how does it work with visual basic programming language?
Q. Windows Vista --how does it work with visual basic programming language?
Asked by 2852525414 - Wed Aug 27 19:35:36 2008 - - 1 Answers - 0 Comments
A. Exactly the same way if works with XP!
Answered by Lapband Man - Thu Aug 28 18:01:49 2008
Q. Windows Vista --how does it work with visual basic programming language?
Asked by 2852525414 - Wed Aug 27 19:35:36 2008 - - 1 Answers - 0 Comments
A. Exactly the same way if works with XP!
Answered by Lapband Man - Thu Aug 28 18:01:49 2008
What do you think of this poem I made about the Visual Basic programming language?
Q. Public Property FullName() As String Between Get and End Get return a String No args for get But there is for set It's not a difficult thing
Asked by intellectual dude - Mon Apr 7 06:24:11 2008 - - 2 Answers - 0 Comments
A. you should add... BillGattenSpeak gives me a license to use, Microsoft says we can stop if we want, You say, I've got miles of code to peruse, And economics will point out: we have a bolt-on product to flaunt.
Answered by blessed_thang - Mon Apr 7 06:37:49 2008
Q. Public Property FullName() As String Between Get and End Get return a String No args for get But there is for set It's not a difficult thing
Asked by intellectual dude - Mon Apr 7 06:24:11 2008 - - 2 Answers - 0 Comments
A. you should add... BillGattenSpeak gives me a license to use, Microsoft says we can stop if we want, You say, I've got miles of code to peruse, And economics will point out: we have a bolt-on product to flaunt.
Answered by blessed_thang - Mon Apr 7 06:37:49 2008
can someone please describe visual basic programming language?
Q. i have a project due in tomorrow and need to know this it would also help if you could describe this languages also: AutoIt Java F# C# basic html gml javascript C Shell Thanks
Asked by Ashley Richards - Tue Jun 8 11:32:28 2010 - - 1 Answers - 0 Comments
A. VB: 3rd Gen, Event driven language and IDE. Made by microsoft, fairly easy because its derived from BASIC AutoIt: Language to create "macros" for windows. Has alot of built in windows functions F# .net oriented lanugage C# Dialect of C, object oriented, developed by MS BASIC: Stands for Beginner's All-purpose Symbolic Instruction Code, Considered easiest programing language HTML: Hypertext markup language, used for creation of web pages. Do the rest yourself, Wikipedia
Answered by josh - Tue Jun 8 11:40:42 2010
Q. i have a project due in tomorrow and need to know this it would also help if you could describe this languages also: AutoIt Java F# C# basic html gml javascript C Shell Thanks
Asked by Ashley Richards - Tue Jun 8 11:32:28 2010 - - 1 Answers - 0 Comments
A. VB: 3rd Gen, Event driven language and IDE. Made by microsoft, fairly easy because its derived from BASIC AutoIt: Language to create "macros" for windows. Has alot of built in windows functions F# .net oriented lanugage C# Dialect of C, object oriented, developed by MS BASIC: Stands for Beginner's All-purpose Symbolic Instruction Code, Considered easiest programing language HTML: Hypertext markup language, used for creation of web pages. Do the rest yourself, Wikipedia
Answered by josh - Tue Jun 8 11:40:42 2010
Is Visual Basic 6 a program or a programming language?
Q. I heard that it was a language, but I keep seeing things about how to use a program called Visual Basic 6. Can you help me straight out the differences?
Asked by maciac13 - Tue Dec 30 14:43:28 2008 - - 4 Answers - 1 Comments
A. Its BOTH a language and a program... The program VB6 is an IDE (Integrated Development Environment) which allows a programmer to layout the graphics portions of their program. It also provides an editor for the programmer to write thier code and check its syntax. VB6 is part of a suite of development software called Visual Studio 6. Microsoft sold VB6 both seperatly and as part of the Visual Studio package. The VB6 Language is the written instructions for the computer to follow that the programmer writes. The VB6 language is also used in Microsoft Office as its scripting language known as VBA (Visual Basic for Applications). Once the programmer uses the VB6 program to write the VB6 code, the code can be compiled into a stand… [cont.]
Answered by Mark G - Tue Dec 30 15:14:04 2008
Q. I heard that it was a language, but I keep seeing things about how to use a program called Visual Basic 6. Can you help me straight out the differences?
Asked by maciac13 - Tue Dec 30 14:43:28 2008 - - 4 Answers - 1 Comments
A. Its BOTH a language and a program... The program VB6 is an IDE (Integrated Development Environment) which allows a programmer to layout the graphics portions of their program. It also provides an editor for the programmer to write thier code and check its syntax. VB6 is part of a suite of development software called Visual Studio 6. Microsoft sold VB6 both seperatly and as part of the Visual Studio package. The VB6 Language is the written instructions for the computer to follow that the programmer writes. The VB6 language is also used in Microsoft Office as its scripting language known as VBA (Visual Basic for Applications). Once the programmer uses the VB6 program to write the VB6 code, the code can be compiled into a stand… [cont.]
Answered by Mark G - Tue Dec 30 15:14:04 2008
What are the codes of cut,copy and paste in visual basic language of programming?
Q. What are the codes of cut,copy and paste in visual basic language of programming?
Asked by Felix M - Thu Nov 20 04:23:01 2008 - - 0 Answers - 0 Comments
A. Start looking for "clipboard" (AFAIR) object...
Answered by Germann A - Thu Nov 20 04:42:41 2008
Q. What are the codes of cut,copy and paste in visual basic language of programming?
Asked by Felix M - Thu Nov 20 04:23:01 2008 - - 0 Answers - 0 Comments
A. Start looking for "clipboard" (AFAIR) object...
Answered by Germann A - Thu Nov 20 04:42:41 2008
In Visual Basic programming language what is the difference between properties & methods?
Q. Hiya I'm trying to teach myself Visual Basic 2008 from video tutorials i downloaded. I'm finding it a little hard but am persevering. I'm stuck at the bit where it tries to explain about the difference between properties & methods? The video tutorial starts giving analogies about verbs, nouns, adjectives etc etc, and i don't understand all that. Can anybody help me understand with a much simpler explanation and in a way a beginner like myself would understand. Thank you so much. btw the complete video course im following is downloadable (for free) from:
Asked by paul b - Mon Feb 1 16:29:42 2010 - - 4 Answers - 0 Comments
A. In Object Oriented Design (not just Visual Basic), a property is an attribute of an object, wheras a method is a message or command to an object. There, did that clear it up? I didn't think so. So let me give a few examples. A property is a (virtual) value associated with an object. I say virtual because there may or may not really be a variable behind it, but you can *treat* it like a variable. It's how you use it that makes it a property. A method is a function associated with an object. It may do little more than change a variable itself, but syntactically you treat it as a function call. Here are some examples of properties and methods of the listbox class in VB (there are dozens, I just grabbed a few): properties name --… [cont.]
Answered by Mantis - Mon Feb 1 17:01:22 2010
Q. Hiya I'm trying to teach myself Visual Basic 2008 from video tutorials i downloaded. I'm finding it a little hard but am persevering. I'm stuck at the bit where it tries to explain about the difference between properties & methods? The video tutorial starts giving analogies about verbs, nouns, adjectives etc etc, and i don't understand all that. Can anybody help me understand with a much simpler explanation and in a way a beginner like myself would understand. Thank you so much. btw the complete video course im following is downloadable (for free) from:
Asked by paul b - Mon Feb 1 16:29:42 2010 - - 4 Answers - 0 Comments
A. In Object Oriented Design (not just Visual Basic), a property is an attribute of an object, wheras a method is a message or command to an object. There, did that clear it up? I didn't think so. So let me give a few examples. A property is a (virtual) value associated with an object. I say virtual because there may or may not really be a variable behind it, but you can *treat* it like a variable. It's how you use it that makes it a property. A method is a function associated with an object. It may do little more than change a variable itself, but syntactically you treat it as a function call. Here are some examples of properties and methods of the listbox class in VB (there are dozens, I just grabbed a few): properties name --… [cont.]
Answered by Mantis - Mon Feb 1 17:01:22 2010
can i insert visual basic programming language in dreamweaver? how?
Q. i need to incorporate a password login feature into the website i'm developing. can somebody recommend something or tell me how to do it?
Asked by vepalejandro - Wed May 16 21:01:22 2007 - - 1 Answers - 0 Comments
A. If you are a programmer...you probably should know this. The answer is no, VB can only be compiled by a VB compiler, not a webauthoring program. You cannot use the program in the website, you can add a download to the .exe though. If you need a password login, you can use javascript (which isn't very secure), you can use forms with a database, or try finding a server with some form of encryption.
Answered by Silencer - Wed May 16 21:39:58 2007
Q. i need to incorporate a password login feature into the website i'm developing. can somebody recommend something or tell me how to do it?
Asked by vepalejandro - Wed May 16 21:01:22 2007 - - 1 Answers - 0 Comments
A. If you are a programmer...you probably should know this. The answer is no, VB can only be compiled by a VB compiler, not a webauthoring program. You cannot use the program in the website, you can add a download to the .exe though. If you need a password login, you can use javascript (which isn't very secure), you can use forms with a database, or try finding a server with some form of encryption.
Answered by Silencer - Wed May 16 21:39:58 2007
What programming language is Visual Basic based on?
Q. Is there a core language that the VB language is run in?
Asked by dvc214 - Wed Mar 5 09:50:38 2008 - - 5 Answers - 0 Comments
A. Visual Basic (VB) is it's own language. In fact it is the only language that Microsoft owns. C, and all of its derivatives, is a standard, with compilers created by Borland, Microsoft and others. It is loosely based on Quick Basic, but it's major claim to fame(RAD development, speed to market) is a major extension on that original specification. For a complete history if VB, and where it started, check this out:
Answered by Michael D - Wed Mar 5 09:58:33 2008
Q. Is there a core language that the VB language is run in?
Asked by dvc214 - Wed Mar 5 09:50:38 2008 - - 5 Answers - 0 Comments
A. Visual Basic (VB) is it's own language. In fact it is the only language that Microsoft owns. C, and all of its derivatives, is a standard, with compilers created by Borland, Microsoft and others. It is loosely based on Quick Basic, but it's major claim to fame(RAD development, speed to market) is a major extension on that original specification. For a complete history if VB, and where it started, check this out:
Answered by Michael D - Wed Mar 5 09:58:33 2008
How can I learn visual Basic Programming Language by myself? Is there any free guidance/instructions for that.
Q. How can I learn visual Basic Programming Language by myself? Is there any free guidance/instructions for that.
Asked by Nokman S - Tue Jun 6 06:47:08 2006 - - 2 Answers - 0 Comments
A. This is a completely FREE Visual Basic online tutorial for beginners and intermediate users .www.vbtutor.net/vbtutor. html
Answered by jamal - Tue Jun 13 06:12:35 2006
Q. How can I learn visual Basic Programming Language by myself? Is there any free guidance/instructions for that.
Asked by Nokman S - Tue Jun 6 06:47:08 2006 - - 2 Answers - 0 Comments
A. This is a completely FREE Visual Basic online tutorial for beginners and intermediate users .www.vbtutor.net/vbtutor. html
Answered by jamal - Tue Jun 13 06:12:35 2006
Is the programming language Visual Basic (VB.NET) really powerful or not so quite?
Q. What are some good apps that have been made from VB.NET?
Asked by Noob! - Mon Aug 9 11:38:18 2010 - - 4 Answers - 0 Comments
Q. What are some good apps that have been made from VB.NET?
Asked by Noob! - Mon Aug 9 11:38:18 2010 - - 4 Answers - 0 Comments
Which programming language is Visual Basic Express Edition Teaching Me?
Q. Well ime learning the programming language for visual express and wondering what programming language its teaching me for express edition 2008... Is it C or c ++ or C#? or soemt else? ime abit new to all this and learned little from the actual programming course... so i dont know much about the other type language. according to the first answer, is Visual Basic "VB" classes as a programming language then?
Asked by Alan F - Tue Jan 8 02:51:09 2008 - - 3 Answers - 0 Comments
A. Visual Basic is a programming language (hence the title visual basic express edition). That is the programming language it is teaching you.
Answered by JustMe68_86 - Tue Jan 8 10:04:05 2008
Q. Well ime learning the programming language for visual express and wondering what programming language its teaching me for express edition 2008... Is it C or c ++ or C#? or soemt else? ime abit new to all this and learned little from the actual programming course... so i dont know much about the other type language. according to the first answer, is Visual Basic "VB" classes as a programming language then?
Asked by Alan F - Tue Jan 8 02:51:09 2008 - - 3 Answers - 0 Comments
A. Visual Basic is a programming language (hence the title visual basic express edition). That is the programming language it is teaching you.
Answered by JustMe68_86 - Tue Jan 8 10:04:05 2008
what is the source code for print used in visual basic programing language?
Q. i need to make a form with pritnting option in vb
Asked by Anas K - Wed May 13 08:31:59 2009 - - 1 Answers - 0 Comments
A. Printer.print is the simple answer, are you looking to print the entire form contents or just particular text?
Answered by aaron b - Wed May 13 09:11:49 2009
Q. i need to make a form with pritnting option in vb
Asked by Anas K - Wed May 13 08:31:59 2009 - - 1 Answers - 0 Comments
A. Printer.print is the simple answer, are you looking to print the entire form contents or just particular text?
Answered by aaron b - Wed May 13 09:11:49 2009
What website can teach me all about visual basic language?
Q. I am a beginner at programming and i have found this program called visual basic 2008. I have downloaded and Installed it. I find it easy to use but I want to know a bit more about the language (visual basic language). Remember that I am a beginner and i want something easy to understand.
Asked by Joseph - Mon Jun 22 13:53:23 2009 - - 1 Answers - 1 Comments
A. You can try Microsoft's MSDN site:
Answered by DaveTheFave - Mon Jun 22 13:58:00 2009
Q. I am a beginner at programming and i have found this program called visual basic 2008. I have downloaded and Installed it. I find it easy to use but I want to know a bit more about the language (visual basic language). Remember that I am a beginner and i want something easy to understand.
Asked by Joseph - Mon Jun 22 13:53:23 2009 - - 1 Answers - 1 Comments
A. You can try Microsoft's MSDN site:
Answered by DaveTheFave - Mon Jun 22 13:58:00 2009
What programming language was Visual Basic written in?
Q. What programming language was Visual Basic written in?
Asked by JC - Sun Dec 17 12:45:36 2006 - - 3 Answers - 0 Comments
A. Visual Basic was written in C++, as was every other programming tool inside of Visual Studio. (Yes, this means Visual C++ was written in C++)
Answered by Bill C - Mon Dec 18 20:41:35 2006
Q. What programming language was Visual Basic written in?
Asked by JC - Sun Dec 17 12:45:36 2006 - - 3 Answers - 0 Comments
A. Visual Basic was written in C++, as was every other programming tool inside of Visual Studio. (Yes, this means Visual C++ was written in C++)
Answered by Bill C - Mon Dec 18 20:41:35 2006
how to take a software out from the programming language in visual basic?
Q. I designed a employee database software in VB and now i want to take it out of VB as a separate software. but the problem is that i dont know how to do it. so now i am using it on VB. so if any one out there knows how to take it out as a separate soft please tell me...
Asked by boyzrock - Mon Mar 19 02:10:01 2007 - - 2 Answers - 0 Comments
A. The term you're looking for is "Compile". When you compile your code you're transforming it into an EXE file, that is executable in Windows. Depending on your programming environment, it's usually invoked with the F5 key. If your programming environment doesn't offer you an option to compile, then you'll need a VB compiler - such as the Visual Basic compiler from Microsoft.
Answered by DNA-Groove - Mon Mar 19 02:21:26 2007
Q. I designed a employee database software in VB and now i want to take it out of VB as a separate software. but the problem is that i dont know how to do it. so now i am using it on VB. so if any one out there knows how to take it out as a separate soft please tell me...
Asked by boyzrock - Mon Mar 19 02:10:01 2007 - - 2 Answers - 0 Comments
A. The term you're looking for is "Compile". When you compile your code you're transforming it into an EXE file, that is executable in Windows. Depending on your programming environment, it's usually invoked with the F5 key. If your programming environment doesn't offer you an option to compile, then you'll need a VB compiler - such as the Visual Basic compiler from Microsoft.
Answered by DNA-Groove - Mon Mar 19 02:21:26 2007
What is the easiet programming language to learn? Visual Basic,Cobol or Java?
Q. I am going to be starting back to college this summer to get a Bachelors in Computer Info Systems. I am 43 years old and I will be required to take one of the above mentioned program languages. Which one would be good for one of us older students to learn. I am leaning towards Java since my interest is in Web Development possibly.
Asked by artgrl8163 - Fri Mar 23 15:00:10 2007 - - 5 Answers - 0 Comments
A. I wouldn't bother with Cobol (though some cobol programmers might disagree). Kind of dying out due to better techniques. Of the 3 you listed, it seems like Java will get you further because its used in a lot of web development and it pretty powerful. But... a little hard to learn I think for a first language. VB is great, but unless it's VB.NET, it will almost be useless for web based techniques. .NET is not listed, but encompasses, VB, ASP, C# (c-sharp). Commonly used in the web world. You will notice many sites end with .aspx (they are using .NET) One you didn't mention is PHP which is free to download and a good start to learning how to program web scripts. Has all the things you need to start doing that.
Answered by SoulRebel79 - Fri Mar 23 15:47:39 2007
Q. I am going to be starting back to college this summer to get a Bachelors in Computer Info Systems. I am 43 years old and I will be required to take one of the above mentioned program languages. Which one would be good for one of us older students to learn. I am leaning towards Java since my interest is in Web Development possibly.
Asked by artgrl8163 - Fri Mar 23 15:00:10 2007 - - 5 Answers - 0 Comments
A. I wouldn't bother with Cobol (though some cobol programmers might disagree). Kind of dying out due to better techniques. Of the 3 you listed, it seems like Java will get you further because its used in a lot of web development and it pretty powerful. But... a little hard to learn I think for a first language. VB is great, but unless it's VB.NET, it will almost be useless for web based techniques. .NET is not listed, but encompasses, VB, ASP, C# (c-sharp). Commonly used in the web world. You will notice many sites end with .aspx (they are using .NET) One you didn't mention is PHP which is free to download and a good start to learning how to program web scripts. Has all the things you need to start doing that.
Answered by SoulRebel79 - Fri Mar 23 15:47:39 2007
EMI programming Language for visual basic?
Q. EMI programming Language for visual basic?
Asked by Jenish - Sat Nov 7 07:08:17 2009 - - 1 Answers - 0 Comments
A. Nope
Answered by CatNip - Tue Nov 10 18:15:59 2009
Q. EMI programming Language for visual basic?
Asked by Jenish - Sat Nov 7 07:08:17 2009 - - 1 Answers - 0 Comments
A. Nope
Answered by CatNip - Tue Nov 10 18:15:59 2009
Best programming language to study after Visual Basic.?
Q. I have been studying visual basic for the past year, and i was wondering what language would be the easiest transition to learn for me.
Asked by Matt - Sat Mar 20 21:55:39 2010 - - 5 Answers - 0 Comments
A. If you are looking for the easiest transition and like to learn something really new, then look for visualFORTH -
Answered by Dirk - Sun Mar 21 01:08:25 2010
Q. I have been studying visual basic for the past year, and i was wondering what language would be the easiest transition to learn for me.
Asked by Matt - Sat Mar 20 21:55:39 2010 - - 5 Answers - 0 Comments
A. If you are looking for the easiest transition and like to learn something really new, then look for visualFORTH -
Answered by Dirk - Sun Mar 21 01:08:25 2010
How to add an excel workbook to a visual basic program?
Q. I am making a steam table calculator and i want to add the file of the table to the Visual Basic program so that i can search on the properties depending on the state(i.e. sat. vapor, saturated liquid, superheated vapor). Also what code i am going to use to perform the searching on the table using Visual Basic Language. Another one, i will have to interpolate if the given quantity is not really found in the table but between the data of the table.
Asked by fnat - Mon Nov 17 06:20:38 2008 - - 1 Answers - 0 Comments
A. If you just need to search a table and do calculations, you can do all this in Excel VBA, which is a programming language that interfaces with Excel. I cannot give you specific code to use without more specific details about your problem. However, I highly recommend reading "VBA for Modelers" by S. Christian Albright. It is very easy to read, with plenty of examples and problems to work through.
Answered by Math Wizard Level 23 - Mon Nov 17 22:09:39 2008
Q. I am making a steam table calculator and i want to add the file of the table to the Visual Basic program so that i can search on the properties depending on the state(i.e. sat. vapor, saturated liquid, superheated vapor). Also what code i am going to use to perform the searching on the table using Visual Basic Language. Another one, i will have to interpolate if the given quantity is not really found in the table but between the data of the table.
Asked by fnat - Mon Nov 17 06:20:38 2008 - - 1 Answers - 0 Comments
A. If you just need to search a table and do calculations, you can do all this in Excel VBA, which is a programming language that interfaces with Excel. I cannot give you specific code to use without more specific details about your problem. However, I highly recommend reading "VBA for Modelers" by S. Christian Albright. It is very easy to read, with plenty of examples and problems to work through.
Answered by Math Wizard Level 23 - Mon Nov 17 22:09:39 2008
In Visual BASIC, what does the MID function do?
Q. What information does it require from the user? What kind of information does it return? Please give examples and use nontechnical language to describe. The easiest to understand explanation will receive 10 points. I'm trying to find out more about Visual Basic programming language, in this case, Winwrap Visual Basic 6.0 and I would like to know more about the mid command and its uses.
Asked by redjellolover - Thu May 15 15:09:54 2008 - - 2 Answers - 0 Comments
A. It returns a string containing a specified number of characters from a string. Mid( _ ByVal str As String, _ ByVal Start As Integer, _ Optional ByVal Length As Integer _ ) As String str Required. String expression from which characters are returned. Start Required. Integer expression. Starting position of the characters to return. If Start is greater than the number of characters in str, the Mid function returns a zero-length string (""). Start is one based. Length Optional. Integer expression. Number of characters to return. If omitted or if there are 'Creates text string. Dim TestString As String = "Mid Function Demo" ' Returns "Mid". Dim FirstWord As String = Mid(TestString, 1, 3) ' Returns "Demo". Dim LastWord As… [cont.]
Answered by CatNip - Thu May 15 15:49:19 2008
Q. What information does it require from the user? What kind of information does it return? Please give examples and use nontechnical language to describe. The easiest to understand explanation will receive 10 points. I'm trying to find out more about Visual Basic programming language, in this case, Winwrap Visual Basic 6.0 and I would like to know more about the mid command and its uses.
Asked by redjellolover - Thu May 15 15:09:54 2008 - - 2 Answers - 0 Comments
A. It returns a string containing a specified number of characters from a string. Mid( _ ByVal str As String, _ ByVal Start As Integer, _ Optional ByVal Length As Integer _ ) As String str Required. String expression from which characters are returned. Start Required. Integer expression. Starting position of the characters to return. If Start is greater than the number of characters in str, the Mid function returns a zero-length string (""). Start is one based. Length Optional. Integer expression. Number of characters to return. If omitted or if there are 'Creates text string. Dim TestString As String = "Mid Function Demo" ' Returns "Mid". Dim FirstWord As String = Mid(TestString, 1, 3) ' Returns "Demo". Dim LastWord As… [cont.]
Answered by CatNip - Thu May 15 15:49:19 2008
From Yahoo Answer Search: 'visual basic programming language'
Sun Sep 5 23:22:23 2010 [ refresh local cache ]
[Hide]▼
101 Microsoft Visual Basic .NET Applications : E-Books & Tutorial
unknown
hu, 08 Jul 2010 07:00:00 GM
Language. : English File type: CHM Pages: 561. Size (for download): 9.2 MB The 101 sample applications that make up this book contain code that answers many common questions a beginner-to-intermediate-level Microsoft . Visual Basic. . ... Each code sample demonstrates core features and functions of . Visual Basic. .NET and the .NET Framework, explains the underlying . programming. concepts, and provides a complete code walkthrough. From creating basic data entry forms to drilling ...
unknown
hu, 08 Jul 2010 07:00:00 GM
Language. : English File type: CHM Pages: 561. Size (for download): 9.2 MB The 101 sample applications that make up this book contain code that answers many common questions a beginner-to-intermediate-level Microsoft . Visual Basic. . ... Each code sample demonstrates core features and functions of . Visual Basic. .NET and the .NET Framework, explains the underlying . programming. concepts, and provides a complete code walkthrough. From creating basic data entry forms to drilling ...
[Hide]▲
