Ask Me Help Desk

Ask Me Help Desk (https://www.askmehelpdesk.com/forum.php)
-   Visual Basic (https://www.askmehelpdesk.com/forumdisplay.php?f=469)
-   -   Using UCase and LCase in vb6.0 (https://www.askmehelpdesk.com/showthread.php?t=598466)

  • Sep 22, 2011, 07:06 PM
    Y_Nessi
    Using UCase and LCase in vb6.0
    Private Sub cmdFindNext_Click()
    If txtFind <> "" Then
    txtFile.SelStart = txtFile.SelStart + 2
    If InStr(txtFile.SelStart, txtFile, txtFind) <> 0 Then
    txtFile.SelStart = InStr(txtFile.SelStart, txtFile, txtFind) - 1
    txtFile.SelLength = Len(txtFind)
    Else
    MsgBox "Not found", vbCritical, "Finding Problem"
    End If
    End If
    End Sub

  • All times are GMT -7. The time now is 07:51 PM.