Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. drkclw

    Problem with checking Text and KeyUp

    I'd like it to check after a keyboard input is made
  2. drkclw

    Problem with checking Text and KeyUp

    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...
  3. drkclw

    center text vertically

    bump for some help
  4. drkclw

    center text vertically

    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...
  5. drkclw

    removing duplicate characters in a string

    Thanks for all the help. Both pieces of code work great.
  6. drkclw

    removing duplicate characters in a string

    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)...
  7. drkclw

    removing duplicate characters in a string

    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

Part and Inventory Search

Back
Top