... a menu End If End Sub Private Sub DrinkList_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) DrinkList.drag ' Displaying a drag icon to start the drag process ... variables. ' Get search string from user. Search = InputBox("Enter text to be found:") Where = InStr(Text1.Text, Search) ' Find the given string in Text1.Text. If Where ... trong container. Một cách khác là thử kéo OptionButton ra khỏi container. Nếu kéo ra được thì nó không nằm trong container.Muốn di chuyển một OptionButton từ container nầy sang container khác,...
Ngày tải lên: 15/12/2013, 15:15
... X1 As Integer, ByVal Y1 As Integer, ByVal X2 As Integer, ByVal Y2 As Integer) ' Draw a rectangle Line (X1, Y1)-(X2, Y1) Line -(X2, Y2) Line -(X1, Y2) Line -(X1, Y1) End Sub Ta ... Shade(ByVal X1 As Integer, ByVal Y1 As Integer, ByVal X2 As Integer, ByVal Y2 As Integer) ' Shade a roundcorner rectangle by plotting dots using method Pset Const Delta = 50 Dim i As Integer ... X1 As Integer, ByVal Y1 As Integer, ByVal X2 As Integer, ByVal Y2 As Integer) Const Delta = 50 ' Draw a rectangle with round corner Line (X1 + Delta, Y1)-(X2 - Delta, Y1) Line -Step(Delta,...
Ngày tải lên: 24/12/2013, 21:15
Tự học thiết kế chương trình cho học sinh làm toán bằng Visual Basic 6.0 (tập 1) pdf
Ngày tải lên: 16/03/2014, 03:20
Visual Basic for Excel 97/2000/XP Practical workbook potx
... Visual Basic since its installation, the Visual Basic window will probably look something like this: Many of the elements in the Visual Basic window are useful only when you are writing ... on Module : 54 ã Tutorial: Learning to Program Amos with Visual Basic Amos 4.0 User’s Guide 5. Tell Visual Basic how to find the Amos Engine In order to let Visual Basic know that you want ... display Visual Basic s Object Browser . In the Classes listbox, click on AmosEngine . 52 ã Tutorial: Learning to Program Amos with Visual Basic Amos 4.0 User’s Guide In the Add Module window,...
Ngày tải lên: 28/03/2014, 22:20
Drawing of eyes in coloured pencils tutorial pdf
... scanned.) Step 1 : Outline Figure 2: Basic outline of the eyes drawn on A4 paper with border around it. Step 2 : Work in progress Figure 3: Scanned image of work in progress where I have ... quick tutorial that I have done and others might find useful in coloured pencils of how to make eyes look realistic. Figure 1: Image reference of a pair of eyes from the “Nat west” magazine ... brows. I started on the left part of the face. Step 3 : Finished piece Figure 4: The finished piece in landscape. I have added some yellow in the eye brows and used black for the darker areas...
Ngày tải lên: 29/06/2014, 00:20
Visual Basic 6 Vovisoft part 4 pdf
... (minimized). Nếu bạn không muốn cho phép User minimize hay maximize form thì set value của property MinButton, MaxButton ra False. Nếu property ControlBox là False thì form sẽ không có nút minize, ... QueryUnload event. Syntax của Sub nầy như dưới đây: Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer) End Sub Event nầy cho ta một dịp để cancel Close action của form (tức là ... là click lên toolbox icon trên toolbar chính của VB6. Nên nhớ rằng Toolbox cũng là một window như các window khác. Khi nó hiện lên rồi bạn có thể nắm (bấm nút trái của con chuột và giữ như vậy...
Ngày tải lên: 03/07/2014, 11:20
Visual Basic 6 Vovisoft part 6 pdf
... trong container. Một cách khác là thử kéo OptionButton ra khỏi container. Nếu kéo ra được thì nó không nằm trong container. Muốn di chuyển một OptionButton từ container nầy sang container khác, ... container có value True (vòng tròn có chấm ở giữa). Muốn biết một OptionButton có thật sự nằm trong một container, bạn thử kéo cái container đi chỗ khác. Nếu OptionButton bị dời theo container ... nhóm, chứa trong một container. Container là một Control có khả năng chứa các controls khác. Frame, PictureBox, hay chính Form đều là Container. Sau khi đặt một Container lên Form, nếu muốn để...
Ngày tải lên: 03/07/2014, 11:20
Visual Basic 6 Vovisoft part 8 pdf
... đầu của text string TString: ResultString = Trim(TString) Ta đưa cho Function Trim một text string called TString. Sau khi Function Trim được executed, ta có kết quả nhưng TString không hề ... WantedTotal = CInt(txtWantedTotal.Text) ' Convert Text string ra internal number b?ng Function CInt Total = 0 ' Initialise Total value to zero i = 1 ' Intialise at the ... i, 1) <> " ") i = i - 1 ' Keep walking to the left Loop PriceInCents = Mid(TStr, i + 1) ' String including character "c" ' Discard the rightmost...
Ngày tải lên: 03/07/2014, 11:20
Visual Basic 6 Vovisoft part 15 pdf
... string ra Hexadecimal string. Function HexDisplay(InASCII) As String ' Convert an ASCII string to HEX string Dim InLen, i, msg, HexStr InLen = Len(InASCII) ' Get length of input ... Printer.Print msg ' Output all data of this page End If If HasSome Then Printer.EndDoc ' Initiate the actual Print. Else Beep MsgBox "Nothing to print, try selecting ... ' Get here after going thru all lines in the listbox If NumLines > 0 Then ' complete the last page by inserting page number For i = NumLines To MaxLinesPerPage msg = msg &...
Ngày tải lên: 03/07/2014, 11:20
Visual Basic 6 Vovisoft part 20 pdf
... Window, dùng Menu command View | Immediate Window. Thay vì đánh "Print ICounter" bạn cũng có thể đánh "? ICounter". Nhớ là mỗi VB Statement bạn đánh trong Immediate Window ... tình cờ ở đây là của chính cái Form: Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) ' Popup the Edit Menu if User clicked the Right Button of ... Log một Event message: Sub LogEvent(ByVal GivenFileName, ByVal Msg As String, HasFolder As Boolean, IncludeTimeDate As Integer) ' Append event message Msg to a text Logfile GivenFileName...
Ngày tải lên: 03/07/2014, 11:20
Visual Basic 6 Vovisoft part 32 pdf
... clear (làm trắng) hết các textboxes bằng cách assign Empty string vào text property của chúng như sau: ' If Editing existing record then AddNewRecord = False ' Else AddNewRecord ... Private Sub CmdEdit_Click() ' Place controls in Edit Mode SetControls (True) ' Remember that this is Editing an existing record AddNewRecord = False End Sub Sau khi dùng ... cmdNew_Click() ' Remember that this is Adding a new record AddNewRecord = True ' Clear all textboxes ClearAllFields ' Place controls in Edit Mode SetControls (True) End Sub...
Ngày tải lên: 03/07/2014, 11:20
Giáo trình hướng dẫn phân tích ứng dụng lập trình bằng ngôn ngữ visual basic trên excel p1 pptx
Ngày tải lên: 23/07/2014, 17:21
Giáo trình hướng dẫn lập trình bằng ngôn ngữ visual basic trên excel p1 ppt
Ngày tải lên: 25/07/2014, 15:20
Hướng dẫn tự học và thực hành Visual Basic C++ 2008 part 3 pdf
Ngày tải lên: 10/08/2014, 18:21
Hướng dẫn tự học và thực hành Visual Basic C++ 2008 part 7 pdf
Ngày tải lên: 10/08/2014, 18:21
Professional ASP.NET 3.5 in C# and Visual Basic Part 6 pdf
... having everything in a single viewable instance makes working with the ASP.NET page easier. Another great thing is that Visual Studio 2008 provides IntelliSense when working with the inline coding ... the examples in this book use an inline coding model because it works well in showing an example in one listing. Even though the example is using an inline coding style, it is my recommendation ... types have options for both inline and code-behind styles. The following table shows your inline options when selecting files from this dialog. File Options Using Inline Coding File Created Web Form .aspx file AJAX...
Ngày tải lên: 05/07/2014, 18:20