H harish Aug 25, 2003 #1 Hi friends Can any one know how can i load text box run time in vb application.
W Wai Kong [MSFT] Aug 25, 2003 #2 Dim txtBox as new textBox() txtBox.location = new point(8, 30) txtBox.size = ... txtBox.text = ... Form1.AddControls(txtBOX) Hope it helps.
Dim txtBox as new textBox() txtBox.location = new point(8, 30) txtBox.size = ... txtBox.text = ... Form1.AddControls(txtBOX) Hope it helps.
H Herfried K. Wagner [MVP] Aug 25, 2003 #3 Hello, Wai Kong said: Dim txtBox as new textBox() txtBox.location = new point(8, 30) txtBox.size = ... txtBox.text = ... Form1.AddControls(txtBOX) Click to expand... Shouldn't the last line read something like that: \\\ Me.Controls.Add(txtBox) /// HTH, Herfried K. Wagner
Hello, Wai Kong said: Dim txtBox as new textBox() txtBox.location = new point(8, 30) txtBox.size = ... txtBox.text = ... Form1.AddControls(txtBOX) Click to expand... Shouldn't the last line read something like that: \\\ Me.Controls.Add(txtBox) /// HTH, Herfried K. Wagner
H harish Aug 25, 2003 #4 this code is not working with Visual Basic. Dim txtBox as new textBox() I am using Visual Basic 6.0
H Herfried K. Wagner [MVP] Aug 25, 2003 #5 Hello, harish said: I am using Visual Basic 6.0 Click to expand... This is a VB .NET ng. Please turn to the VB6 ngs: news://news.microsoft.com/microsoft.public.vb.controls HTH, Herfried K. Wagner
Hello, harish said: I am using Visual Basic 6.0 Click to expand... This is a VB .NET ng. Please turn to the VB6 ngs: news://news.microsoft.com/microsoft.public.vb.controls HTH, Herfried K. Wagner