How to Insert string in another string in visual basic

Posted by magh on Stack Overflow See other posts from Stack Overflow or by magh
Published on 2010-05-18T12:58:58Z Indexed on 2010/05/18 13:00 UTC
Read the original article Hit count: 261

Filed under:
|
|

the following code shows invalid qualifier when executed

Dim strs As String Dim insStr As String Dim strRes As String

       strs = "This is VB.NET Test"
       insStr = "Insert"
       strRes = strs.Insert(insStr) 

Thanks in advance

© Stack Overflow or respective owner

Related posts about visual-studio

Related posts about vb