how to make unlimited id(1rimjim,2rimjim,3rimjim....etc)
login grp chat pogram for jabber?



how to make unlimited id(1rimjim,2rimjim,3rimjim....etc) login grp chat pogram for jabber?..

Answer / Manoj Kumar Paswan

In Visual Basic, you can create unlimited IDs by using a loop that increments a counter and concatenates the counter with a fixed prefix (e.g., 'rimjim'). Here is an example of how to do it:

```vbnet
Dim id As String = "rimjim"
For i As Integer = 1 To MaxID
id = id & i.ToString()
Next
```
Replace `MaxID` with the maximum number of IDs you want to generate.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Visual Basic Interview Questions

what is the Property used to count number of items in a combobox?

1 Answers  


How do I implement an accelerator key for a text box?

1 Answers  


What is the purpose of the ClipControls property on a form or container?

1 Answers  


Scope of API's can be of types, what are they?

1 Answers  


What are constructors and destructors?

1 Answers  


When/Why should I use Option Explicit?

1 Answers  


What are the new events in textbox that has been included in VB6.0

1 Answers  


What is DBFailError?

1 Answers  


What are the new events in textbox that has been included in VB ?

1 Answers  


What is the diff between the Create Object and Get object?

2 Answers  


Is Visual Basic case sensitive in general?

3 Answers  


How do I make a text box not beep but do something else when I hit the Enter key?

1 Answers  


Categories