User Profile
Collapse
-
Sorry, I am using VB.Net version 2003 -
Radio Button Choice Displaying in a MessageBox
Hello, I have a group box (grpButtons) with four radio buttons (radAbortRetryI gnore, radOK, radOKCancel, radYesNo) what I am trying to do is display the buttons in the messagebox based on the selection the user makes with the radio buttons.
MessageBox.Show (txtTitle.Text, txtMessage.Text , grpButtons())
where I have grpButtons() is where Im having the problem, Im trying to have the message box display what the user chooses.... -
Killer42, thanx for the response:
Here is what I am wanting to do merge intX and intY into intZ and show the result in a messagebox:
Dim intX() As String = {4, 9, 12, 15, 22, 33, 44, 66, 72, 84, 87, 92, 96, 98, 99}
Dim intY() As String = {6, 8, 12, 16, 24, 31, 68, 71, 73, 74, 81, 93, 94}
Dim intZ(27) As String
I am wanting to merge the two arrays intX and intY into intZ and place...Leave a comment:
-
Thanx for the reply Killer42, I tried the code and I get an error of outside bound os the array, here is the whole thing I am trying to do:
Dim intX() As String = {4, 9, 12, 15, 22, 33, 44, 66, 72, 84, 87, 92, 96, 98, 99}
Dim intY() As String = {6, 8, 12, 16, 24, 31, 68, 71, 73, 74, 81, 93, 94}
Dim intZ(27) As String
I am wanting to merge the two arrays intX and intY into intZ and place the...Leave a comment:
-
Merging Two 1D Arrays into One
Good Afternoon All, I am working with Visual Studio.Net 2003
If I have Two 1D Arrays:
Dim intX() As Integer = {1, 3, 5, 7, 9, 11, 13, 15, 17}
Dim intY() As Integer = {2, 4, 6, 8, 9, 10, 12, 14, 16}
Dim intZ(17) As Long
and need to merge array intX with array intY to form a new array intZ, is this possible?????
Any Help would be appreciated, Thanx In Adavance!
...
No activity results to display
Show More
Leave a comment: