Click here to Skip to main content
15,886,518 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Bizarre problem with VBA in an Access Form Pin
Dave Kreskowiak20-Jul-20 7:59
mveDave Kreskowiak20-Jul-20 7:59 
GeneralRe: Bizarre problem with VBA in an Access Form Pin
CHill6021-Jul-20 2:21
mveCHill6021-Jul-20 2:21 
GeneralRe: Bizarre problem with VBA in an Access Form Pin
Dave Kreskowiak21-Jul-20 5:00
mveDave Kreskowiak21-Jul-20 5:00 
GeneralRe: Bizarre problem with VBA in an Access Form Pin
CHill6021-Jul-20 5:07
mveCHill6021-Jul-20 5:07 
QuestionVB Script Using Com Interface with Out String Pointer Pin
Thomas Andreas Kocher9-Jul-20 23:40
Thomas Andreas Kocher9-Jul-20 23:40 
AnswerRe: VB Script Using Com Interface with Out String Pointer Pin
Dave Kreskowiak12-Jul-20 14:45
mveDave Kreskowiak12-Jul-20 14:45 
QuestionHow to get one I have multiple objects of the same type at run time with VB 2010 Pin
Member 1487052122-Jun-20 18:01
Member 1487052122-Jun-20 18:01 
AnswerRe: How to get one I have multiple objects of the same type at run time with VB 2010 Pin
Dave Kreskowiak23-Jun-20 13:55
mveDave Kreskowiak23-Jun-20 13:55 
The New keyword does work. All it does is create an instance of a type, be it a class or a COM type, or the like.

You create a new TextBox just by "newing one up":
VB.NET
Dim myNewTextBox As New TextBox

You then have to set it's properties, like Top, Left, Height, Width to set the size and position on the Form or in another container.

Then you have to add it to the Controls collection of the container you're adding it to, like your Form:
VB.NET
myForm.Controls.Add(myNewTextBox)


AnswerRe: How to get one I have multiple objects of the same type at run time with VB 2010 Pin
Ralf Meier23-Jun-20 20:47
mveRalf Meier23-Jun-20 20:47 
AnswerRe: How to get one I have multiple objects of the same type at run time with VB 2010 Pin
Member 1487052124-Jun-20 3:54
Member 1487052124-Jun-20 3:54 
GeneralRe: How to get one I have multiple objects of the same type at run time with VB 2010 Pin
Richard MacCutchan24-Jun-20 4:27
mveRichard MacCutchan24-Jun-20 4:27 
GeneralRe: How to get one I have multiple objects of the same type at run time with VB 2010 Pin
Dave Kreskowiak24-Jun-20 7:02
mveDave Kreskowiak24-Jun-20 7:02 
GeneralRe: How to get one I have multiple objects of the same type at run time with VB 2010 Pin
Ralf Meier24-Jun-20 19:55
mveRalf Meier24-Jun-20 19:55 
GeneralRe: How to get one I have multiple objects of the same type at run time with VB 2010 Pin
Gerry Schmitz25-Jun-20 3:44
mveGerry Schmitz25-Jun-20 3:44 
QuestionUpdater for multi-user program Pin
Member 1487021322-Jun-20 6:32
Member 1487021322-Jun-20 6:32 
QuestionRe: Updater for multi-user program Pin
Maciej Los22-Jun-20 6:42
mveMaciej Los22-Jun-20 6:42 
AnswerRe: Updater for multi-user program Pin
Member 1487021322-Jun-20 6:52
Member 1487021322-Jun-20 6:52 
GeneralRe: Updater for multi-user program Pin
Maciej Los22-Jun-20 7:04
mveMaciej Los22-Jun-20 7:04 
AnswerRe: Updater for multi-user program Pin
David Mujica24-Jun-20 7:42
David Mujica24-Jun-20 7:42 
GeneralExcel vba userform video game project Pin
Member 1483176618-Jun-20 4:20
Member 1483176618-Jun-20 4:20 
GeneralRe: Excel vba userform video game project Pin
Dave Kreskowiak18-Jun-20 10:19
mveDave Kreskowiak18-Jun-20 10:19 
GeneralRe: Excel vba userform video game project Pin
Member 1483176618-Jun-20 20:31
Member 1483176618-Jun-20 20:31 
GeneralRe: Excel vba userform video game project Pin
Dave Kreskowiak19-Jun-20 3:17
mveDave Kreskowiak19-Jun-20 3:17 
QuestionGenerate XML file in VB6 Pin
Member 148580729-Jun-20 5:02
Member 148580729-Jun-20 5:02 
AnswerRe: Generate XML file in VB6 Pin
Richard MacCutchan9-Jun-20 5:28
mveRichard MacCutchan9-Jun-20 5:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.