<code> Du har glömt att ange startpositionen.
Varför funkar inte detta ?
Svara
Option Explicit
Private Sub Command1_Click()
Dim Pos As Long
Pos = InStr("Sven", "E", vbTextCompare)
MsgBox Pos
End Sub
</code>
Sv: Varför funkar inte detta ?
Svara
<code>
Option Explicit
Private Sub Command1_Click()
Dim Pos As Long
Pos = InStr(1, "Sven", "E", vbTextCompare)
MsgBox Pos
End Sub
</code>