I have a series of TextBoxes with a Label next to each one. On the KeyUp event a check is performed to see if the values in each textbox is different to each corresponding label. I have it such that I can Tab through each textbox and the text is automatically highlight. This makes it fast and...
I'm writing a program that has textboxes in a column going down the left side of my form. To the right of each of these is a label that I'm using to display the text that was in the textbox to the left after it is sent through the serial port. My problem is that the text in both controls are...
Tony,
the code works great, my numbers are in a squence.
I have another question.
Is it possible to go through the original SampleStr and replace a 3, 4, or 5 with a 2? How would i do this without changing a number like 24 into 22? I tried:
For i = 3 to 5
NewStr = replace (SampleStr, i, 2)...
I need a way to go through an array and remove duplicate chars. I'm working with strings that contain only numbers from 0 to 27.
SampleStr = 0 2 2 5 8 9 9 12 15 27 27
I would like that to become:
NewStr = 0 2 5 8 9 12 15 27
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.