Click here to Skip to main content
16,005,120 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Inserting Data In SQL Database Pin
Vimalsoft(Pty) Ltd16-Aug-07 23:43
professionalVimalsoft(Pty) Ltd16-Aug-07 23:43 
QuestionCharacters other than english Pin
ejaz_pk10-Aug-07 6:40
ejaz_pk10-Aug-07 6:40 
AnswerRe: Characters other than english Pin
i gr810-Aug-07 20:19
i gr810-Aug-07 20:19 
QuestionVisual Basic Code Highlighting in Visual Studio 2003 Pin
Michaeljd10-Aug-07 6:37
Michaeljd10-Aug-07 6:37 
AnswerRe: Visual Basic Code Highlighting in Visual Studio 2003 Pin
Dave Kreskowiak10-Aug-07 6:58
mveDave Kreskowiak10-Aug-07 6:58 
GeneralRe: Visual Basic Code Highlighting in Visual Studio 2003 Pin
Michaeljd10-Aug-07 7:03
Michaeljd10-Aug-07 7:03 
QuestionAdding Textboxes at Run Time Pin
ejaz_pk10-Aug-07 6:28
ejaz_pk10-Aug-07 6:28 
AnswerRe: Adding Textboxes at Run Time Pin
Luc Pattyn10-Aug-07 6:47
sitebuilderLuc Pattyn10-Aug-07 6:47 
No problem, you should keep the references of the new TextBoxes in some kind of collection;
it could be an array, an ArrayList, a generic List, whatever. You can not have individual
identifiers ("variable names") for each of your TextBoxes when you create them in a loop;
if that is what you want (why should you?) then you need to use explicit statements
without a loop.

Dim myTBList as New ArrayList     ' or some other list...
for i=1 to 10
    Dim txtbox1 As New TextBox
    Me.Controls.Add(txtbox1)
    myTBList.Add(txtbox1)
next


Smile | :)

Luc Pattyn [Forum Guidelines] [My Articles]


this weeks tips:
- make Visual display line numbers: Tools/Options/TextEditor/...
- show exceptions with ToString() to see all information
- before you ask a question here, search CodeProject, then Google


AnswerRe: Adding Textboxes at Run Time Pin
Dave Kreskowiak10-Aug-07 6:47
mveDave Kreskowiak10-Aug-07 6:47 
QuestionMonth week Number and dates Pin
ejaz_pk10-Aug-07 5:19
ejaz_pk10-Aug-07 5:19 
AnswerRe: Month week Number and dates Pin
Guffa10-Aug-07 5:40
Guffa10-Aug-07 5:40 
AnswerRe: Month week Number and dates Pin
ejaz_pk10-Aug-07 6:32
ejaz_pk10-Aug-07 6:32 
AnswerRe: Month week Number and dates Pin
Guffa10-Aug-07 6:39
Guffa10-Aug-07 6:39 
QuestionBinary conversion for CRC-16 Pin
Cory Kimble10-Aug-07 4:55
Cory Kimble10-Aug-07 4:55 
AnswerRe: Binary conversion for CRC-16 Pin
Luc Pattyn10-Aug-07 5:28
sitebuilderLuc Pattyn10-Aug-07 5:28 
AnswerRe: Binary conversion for CRC-16 Pin
Guffa10-Aug-07 6:36
Guffa10-Aug-07 6:36 
GeneralRe: Binary conversion for CRC-16 Pin
Cory Kimble10-Aug-07 7:13
Cory Kimble10-Aug-07 7:13 
GeneralRe: Binary conversion for CRC-16 Pin
Luc Pattyn10-Aug-07 7:41
sitebuilderLuc Pattyn10-Aug-07 7:41 
QuestionNested Listview In datagrid Pin
ejaz_pk10-Aug-07 3:11
ejaz_pk10-Aug-07 3:11 
AnswerRe: Nested Listview In datagrid Pin
leckey10-Aug-07 3:56
leckey10-Aug-07 3:56 
QuestionCreating references Pin
Ahmad Zaidi10-Aug-07 1:22
Ahmad Zaidi10-Aug-07 1:22 
AnswerRe: Creating references Pin
Dave Kreskowiak10-Aug-07 1:40
mveDave Kreskowiak10-Aug-07 1:40 
QuestionModify AVI file Pin
Rupesh Kumar Swami9-Aug-07 23:33
Rupesh Kumar Swami9-Aug-07 23:33 
AnswerRe: Modify AVI file Pin
'Drew10-Aug-07 11:53
'Drew10-Aug-07 11:53 
QuestionTransparent Mdi Pin
errorfunktion9-Aug-07 23:02
errorfunktion9-Aug-07 23:02 

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.