Visual Basic 学习笔记
文章平均质量分 78
hawklixingyi
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
对VB6.0的第一步认识
VIsual 是什么意思? 它是指开发图形用户界面的方法,在Visual 下 不需要用大量的代码去描述界面元素的外观与位置.Basic 是什么意思? Basic是 Beginners All-Purpose Symbol Instruction Code的缩写 你一定还不晓得吧!Visual Basic 中的一些基本概念: 一;对象和类 二;属性原创 2006-09-11 22:17:00 · 1084 阅读 · 1 评论 -
projects types in Visual Basic 2005 Express Edition
Project template Used to create Windows Application Template Used t原创 2006-09-11 11:53:00 · 508 阅读 · 0 评论 -
The Basics: How Programming Works
Before you jump in and start learning the Visual Basic programming language, it may help you to understand what a programming language is and how it works, including some programming terminology. T原创 2006-09-14 21:26:00 · 1003 阅读 · 0 评论 -
Representing Words, Numbers, and Values with Variables
Variables are an important concept in computer programming. A variable is a letter or name that can store a value. When you create computer programs, you can use variables to store numbers, such as th原创 2006-09-14 21:39:00 · 710 阅读 · 0 评论 -
Arrays: Variables That Represent More Than One Value
In this lesson, you will learn how to use arrays to store groups of values.As you learned in the previous lessons, variables are used to store different types of data for use by your program. There原创 2006-09-14 22:11:00 · 791 阅读 · 0 评论 -
Arithmetic: Creating Expressions With Variables And Operators
In this lesson, you will learn how to create expressions to perform arithmetic and then return values.An expression is a segment of code that performs arithmetic and then returns a value. For examp原创 2006-09-14 22:17:00 · 1123 阅读 · 0 评论 -
Comparisons: Using Expressions to Compare Values
In this lesson, you will learn how to use comparison operators to create expressions that compare values.In the last lesson, you learned how to use arithmetic operators to create numeric expressions原创 2006-09-15 08:58:00 · 822 阅读 · 0 评论 -
Making Your Computer Do Something: Writing Your First Procedure
In this lesson, you will learn how to create a procedure, a self-contained block of code that can be run from other blocks of code, and then how to create parameters for your procedures.A procedure原创 2006-09-15 09:02:00 · 751 阅读 · 0 评论 -
Words and Text: Using String Variables to Organize Words
In this lesson, you will learn how to use the String data type to represent words and text.In the previous lesson, you learned how to use variables to store data in your program, and that each varia原创 2006-09-14 22:02:00 · 1440 阅读 · 0 评论
分享