Forum: Visual Basic 4 / 5 / 6 Aug 9th, 2009 |
| Replies: 4 Views: 614 I have not seen any significant disadvantages of using control array except it slightly increase difficulty in managing your controls. Moreover, control array is not applicable in every program. |
Forum: Visual Basic 4 / 5 / 6 Aug 6th, 2009 |
| Replies: 4 Views: 614 Control array simply is a group of control that share the same name, same type, and same event procedures that increase flexibility of Visual Basic 6:
Being share the same name and same event... |
Forum: Visual Basic 4 / 5 / 6 Dec 25th, 2007 |
| Replies: 24 Views: 6,014 frmsummary.lblfname0.Caption = frmWage.lblfirstname.Caption |
Forum: Visual Basic 4 / 5 / 6 Jun 1st, 2005 |
| Replies: 7 Views: 7,457 try use DoEvents , this function will provide a few processing resource for the rest of the system tasks such as screen update.
here is Example
For i = 0 To 100
DoEvents
Next i
Second... |
Forum: Visual Basic 4 / 5 / 6 Apr 15th, 2005 |
| Replies: 10 Views: 26,766 MDI (Multi Document Interface) Form is form that can hold multi forms inside it. |
Forum: Visual Basic 4 / 5 / 6 Mar 26th, 2005 |
| Replies: 6 Views: 8,603 you can't do it there no easy to set command button forecolor. but you can use CheckBox instead, set Style = Graphical (it exactly look like button) , and copy this code in
Private Sub... |
Forum: Visual Basic 4 / 5 / 6 Mar 7th, 2005 |
| Replies: 3 Views: 7,370 changing color it really easy
Form1.BackColor = vbBlack '// Black Color
Form1.BackColor = vbRed '// Red Color
Form1.BackColor = vbBlue '// Blue Color
Form1.BackColor = vbWhite '// White Color... |