Forum: Visual Basic 4 / 5 / 6 Apr 4th, 2006 |
| Replies: 7 Views: 6,950 make sure you are doing MSFlexGrid1.Rows -1. You need to subtract one from the total number of rows as it starts with row 0 not 1. So if you have 10 rows, your loop should only go to 9. I just ran... |
Forum: Visual Basic 4 / 5 / 6 Apr 4th, 2006 |
| Replies: 7 Views: 6,950 I don't think you need the vIndex variable if your intent is to number the resulting rows in sequence.
For R = 1 To MSFlexGrid1.Rows - 1
MSFlexGrid1.TextMatrix(R, 0) = R
Next R
If your... |
Forum: Visual Basic 4 / 5 / 6 Apr 4th, 2006 |
| Replies: 7 Views: 6,950 When you use the RemoveItem command it adjusts the total rows (MSFlexGrid1.Rows) so you may want to just use the good ole for/next loop that uses MSFlexGrid1.Rows as it's max value. Actually, you... |
Forum: Networking Hardware Configuration Mar 29th, 2006 |
| Replies: 6 Views: 6,878 Make sure you aren't trying to connect to a neighbors network. On occation with my linksys, it avoids my router and tries to bum off of a neighbor that uses encryption. |