Search results for query: *

  1. P

    Change a value in a string

    Hi I want to change the value of a charecter within a string Private Sub ASC(ByRef MyStartString As String) Dim temp As String Dim x As Integer = 2 temp = MyStartString Dim MyChar As Char Dim MyAsc As Integer Dim strLength As Integer...
  2. P

    Edit a text string

    Okay. I solved this. Thanks.
  3. P

    Edit a text string

    Hi. I am trying to call a subrouten and return a value to string. I have a rich text box with the text. Private Sub BtnOriginal_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnEncript.Click Dim temp As String temp = txtOriginal.Text temp...
  4. P

    Edit a text string

    Hi. This is more for interest as a beginer. I used to edit strings in old fashend VB6. This simply involved changing a charecter in a string. E.G. MySting[4] = "Z" Can someone tell me how to get a string like "ABCDEFG" and swap B and E over. Very usefull when using information posted in a...
Back
Top