![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#11 |
|
Expert Programmer
|
Can anyone tell me if my reply was right? I can't test it so I would like to know. Thanks
__________________
|
|
|
|
|
|
#12 |
|
Programming Guru
![]() ![]() ![]() |
From what I remember of VB, it appears to be correct.
__________________
http://jasonpowers.net "There are a thousand hacking at the branches of evil to one who is striking at the root." |
|
|
|
|
|
#13 |
|
Expert Programmer
|
Woohoo!
![]()
__________________
|
|
|
|
|
|
#14 |
|
Hobbyist Programmer
|
see that was just an example. i am going to be using Text1.Text that is where the id is coming from so would i just replace the Jimmy_ with this
Text1.Text & "_" dim i as integer
i = 1
for(i < 5)
List1 = "Text1.Text & "_" " + i
next ii am taking the ids and put them on a list. so is that set up right? |
|
|
|
|
|
#15 |
|
Hobbyist Programmer
Join Date: Apr 2006
Posts: 136
Rep Power: 0
![]() |
@all members: I am sorry for bashing on VB6. I shouldn't have done that.
|
|
|
|
|
|
#16 | |
|
Expert Programmer
|
Quote:
I think you meant dim i as integer
i = 1
for(i < 5)
List1 = Text1.Text + "_" + i
next i
__________________
|
|
|
|
|
|
|
#17 |
|
Hobbyist Programmer
|
so now with this code will it put it in the list i want it to go to?
dim i as integer
i = 1
for(i < 5)
List1 = Text1.Text + "_" + i
next iif you need the soucre code i will get it and post it here. |
|
|
|
|
|
#18 |
|
Newbie
Join Date: Jun 2006
Posts: 3
Rep Power: 0
![]() |
All wrong wrong wrong hehe. Avoid using +, use & instead.
Dim i As Integer For i = 1 To 10 List1.AddItem Text1.Text & "_" & i Next i :p
__________________
Who has the right to choose the path of someone's life? Last edited by Kiro; Jun 20th, 2006 at 7:24 AM. |
|
|
|
|
|
#19 |
|
Newbie
Join Date: Jun 2006
Location: Michigan
Posts: 13
Rep Power: 0
![]() |
Where I work, I have access to Microsoft Access (97) which has VB6 included in it for doing DBs (no other programmng lanuages are available as we're not an official programming department).
Concerning the free Visual C# Express Edition, how robust is it? How widely used is it? For a programmer on a budget, what other kind of programming languages would you recommend? |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|