microsoft visual basic for applications
... – For Each… E.4 Các lệnh cơ bản – For Each… For Each c in worksheets("Sheet1").Range("A1:D 10& quot;) If c.Value < .00 1 Then c.Value = 0 End If Next c Lặp trong vùng A1:D 10, ... c.Value = 0 End If Next c Lặp trong vùng A1:D 10, trong Sheet1, thay giá trị trong ô nhỏ hơn 0. 001 bằng 0. 9 22 E. Các khái niệm cơ bản E. Các khái niệm cơ bản Khai báo biến - Sử dụng mệnh đề ... Then (Get Married) End If 29 E.3 Các lệnh cơ bản – For Next E.3 Các lệnh cơ bản – For Next For counter = start To end [Step step] [statements] [Exit For] [statements] Next [counter] 41 Ví dụ 2: Bẫy...
Ngày tải lên: 28/05/2014, 18:24
... 0 255 1 Boolean Logic 0: false ; -1: true 2 Integer -3 276 8 3 276 7 2 Long -21 474 83648 21 474 836 47 4 Currency - 9223 372 03 68 577 4.5 808 9223 372 03 68 577 4.5 808 ... 9223 372 03 68 577 4.5 808 8 Single -3. 402 823E38 -1. 401 298E-45 (âm) 1. 401 298E-45 4 Double -1 .79 769313486232E 308 -4.9 406 5645841247E-324 (âm) 4.9 406 5645841247E-324 ... Public Const Max = 10 Const Ngay = #1 /7/ 200 6# 194 8. 10 ...
Ngày tải lên: 27/07/2014, 03:21
Ngày tải lên: 03/10/2014, 20:47
Visual Basic 6- Chương 7- Dùng Control List - Phần 2
... lstHexadecimal.AddItem Format(Now, "dd/mm/yyyy hh:nn:ss") & " " & Mess ' Keep only the latest 100 0 events If lstHexadecimal.ListCount >= 100 0 Then ' Remove ... then use this as an indication to force a new page If NumLines > 0 Then ' Add extra blank lines to make up a page before inserting page number For j = NumLines - 1 To MaxLinesPerPage ... index". Thủ phạm của cái Bug ác ôn nầy là statement For i = 0 To lstNames.ListCount - 1. VB6 chỉ tính value của lstNames.ListCount -1 một lần lúc khởi sự For Loop mà thôi (tức là lstNames.ListCount...
Ngày tải lên: 04/11/2013, 21:15
Tài liệu Khóa Hàm Thụ Visual Basic 6.0_Chương 7 ppt
... Những câu hỏi về Visual Basic Những mẹo vặt của Visual Basic Lập trình với VBA Được cung cấp từ Vivosoft Trong thí dụ nầy, Listbox lstNames có 7 hàng ( Items). Con số Items ... FileName For Output As FileNumber ' Now iterate through each item of lstNames For i = 0 To lstNames.ListCount - 1 anItem = lstNames.List(i) anItem = Trim(Left(anItem, 10) ) & ... though every item of lstTemp For i = 0 To lstTemp.ListCount - 1 anItem = lstTemp.List(i) ' Identify FistName and SurName sSurName = Left(anItem, 10) ' SurName now is on the...
Ngày tải lên: 15/12/2013, 15:15
Tài liệu Phần 2: VISUAL BASIC FOR APPLICATION (VBA) doc
... byte 0 … 255 Boolean 1 byte True/False Integer 2 bytes -32 .76 8 … 32 .76 7 Long 4 bytes -2.1 47. 483.648 … 2.1 47. 483.6 47 Single 4 bytes -3, 402 823E+38 …3, 402 823E+38 Double 8 bytes -1 ,79 76E+ 308 … 1 ,79 76E+ 308 Currency ... Tính tổng 10 số nguyên dương đầu tiên Cp1: Tong = 0: i =1 DO UNTIL (i > 10) Tong = Tong + i : i =i + 1 LOOP Cp2: Tong = 0: i = 0 DO Tong = Tong + i : i =i + 1 LOOP UNTIL ( i > 10) ... Giới thiệu chung Visual Basic là ngôn ngữ lập trình dùng để ràng buộc các đối tượng trong ứng dụng với nhau thành một hệ thống hợp nhất. Các chương trình của VBA (Visual Basic for Application)...
Ngày tải lên: 23/12/2013, 08:17
Tài liệu Visual Basic 6- Chương 7- Dùng Control List doc
... Open FileName For Output As FileNumber ' Now iterate through each item of lstNames For i = 0 To lstNames.ListCount - 1 anItem = lstNames.List(i) anItem = Trim(Left(anItem, 10) ) & ... FileNumber, anItem Dim sFirstName As String * 10 ' fixed length string of 10 characters Dim sSurName As String * 10 ' fixed length string of 10 characters ' Obtain Folder where this ... Listbox lstNames có 7 hàng ( Items). Con số Items nầy là Property ListCount của Listbox. Các Items của Listbox được đếm từ 0 đến ListCount-1. Trong trường hợp nầy là từ 0 đến 6. Khi User click...
Ngày tải lên: 24/01/2014, 02:20
Tài liệu Visual Basic 6- Chương 7- Dùng Control List-Bai 03 doc
... Then MsgBox "Please enter the Text Pattern to search for& quot; Exit Sub End If ' Clear all selected lines For i = 0 To EventList.ListCount - 1 EventList.Selected(i) = False ... hết ( tức là Index =0) trong List1 và xử lý Item ấy. Trong bài nầy ta chỉ Remove Item 0 rồi Add nó vào List2. Private Sub Timer1_Timer() Dim Item If List1.ListCount > 0 Then ' Look ... there's nothing in the list If List1.ListCount = 0 Then Exit Sub ' Iterate through every item of the checkBox Listbox For i = 0 To List1.ListCount - 1 ' If item is selected...
Ngày tải lên: 24/01/2014, 02:20
Visual Basic for Excel 97/2000/XP Practical workbook potx
... User’s Guide Tutorial: Learning to Program Amos with Visual Basic • 47 2. Remove Form1 If this is the first time you have used Visual Basic since its installation, the Visual Basic window ... Sub 50 • Tutorial: Learning to Program Amos with Visual Basic Amos 4 .0 User’s Guide The resulting Visual Basic window should look like this: 58 • Tutorial: Learning to Program Amos with Visual ... Amos Basic Help menu. 46 • Tutorial: Learning to Program Amos with Visual Basic Amos 4 .0 User’s Guide Basic Professional Edition is installed on your system. The Visual Basic files for this...
Ngày tải lên: 28/03/2014, 22:20
Visual Basic 6 - Chương 7 potx
... lstHexadecimal.AddItem Format(Now, "dd/mm/yyyy hh:nn:ss") & " " & Mess ' Keep only the latest 100 0 events If lstHexadecimal.ListCount >= 100 0 Then ' Remove ... lstNames có 7 hàng ( Items). Con số Items nầy là Property ListCount của Listbox. Các Items của Listbox được đếm từ 0 đến ListCount-1. Trong trường hợp nầy là từ 0 đến 6. 18 For i = 0 To EventList.ListCount ... FileNumber, anItem Dim sFirstName As String * 10 ' fixed length string of 10 characters Dim sSurName As String * 10 ' fixed length string of 10 characters ' Obtain Folder where...
Ngày tải lên: 22/07/2014, 05:20
Visual Basic 6 - chương 7 pot
... lstHexadecimal.AddItem Format(Now, "dd/mm/yyyy hh:nn:ss") & " " & Mess ' Keep only the latest 100 0 events If lstHexadecimal.ListCount >= 100 0 Then ' Remove ... " Next i HexDisplay = msg ' Return result string for Function End Function Trong program nầy, khi Listbox đạt đến 100 0 items thì mỗi lần một hàng mới được thêm vào, hàng cũ nhất ... Open FileName For Output As FileNumber ' Now iterate through each item of lstNames For i = 0 To lstNames.ListCount - 1 anItem = lstNames.List(i) anItem = Trim(Left(anItem, 10) ) &...
Ngày tải lên: 28/07/2014, 18:20
Visual Basic for Application docx
... Tháng 5 Tháng 6 áo phông thể thao 30 1 20 115 122 98 1 10 Bộ đồ thểthao 2 20 1 80 1 60 1 40 1 20 100 Bộ áo ma 93 90 101 105 200 2 20 Quần soóc 125 133 199 83 104 93 Hình 1 Xây dựng nội dung VBA ... "CumTotal_" Then 4 5 2 - 50 -16 -96 - 57 -8 ? 6 19161 389 90 52 97 -29889 19228 -16365 ?? 7 8 9 2 3 10 -54 60 75 ? 10 -4395 12541 162 -25 2 70 -23856 16 377 ?? 11 12 13 200 -43 - 57 -16 -63 -29 ? Resp ... End Function Bài 5 Ví dụ về hàm tự tạo A B C D E F G 1 123 -62 -39 102 98 - 50 ? 2 18589 -3 471 6 -283 10 - 100 65 -33145 205 88 ?? 3 'Nếu trờng note chứa tổng, câu lệnh sau sẽ cộng tổng...
Ngày tải lên: 07/08/2014, 17:22
Beginning microsoft Visual Basic 2010 phần 7 pdf
... to C:\Program Files\Microsoft Visual Studio 10. 0\Common7\VS 201 0ImageLibrary\ 103 3\VS 201 0ImageLibrary\ Objects\ico_format\WinVista\Favorites.ico . 4. Next, open the Code Editor for Form1. In the Class Name ... Windows Start menu, select Programs → Microsoft Visual Studio 201 0 ➪ Visual Studio Tools ➪ Visual Studio 201 0 Command Prompt. Navigate to the bin folder for your Internet Favorites 434 ❘ CHAPTER ... example, you will add a new project 1. Using Visual Studio 201 0, select File ➪ Add ➪ New Project from the menu and create a new Visual Basic 201 0 Windows Forms Application project called Favorites...
Ngày tải lên: 09/08/2014, 14:21
Kỹ năng lập trình ứng dụng với Visual Basic .NET part 7 pps
Ngày tải lên: 10/08/2014, 09:20
DATA STRUCTURES AND ALGORITHMS USING VISUAL BASIC.NET phần 7 ppsx
Ngày tải lên: 12/08/2014, 16:21
Network Programming in .NET With C# and Visual Basic .NET phần 7 ppsx
Ngày tải lên: 12/08/2014, 21:20