R
Robert Martinez
I am getting the following error:
Compiler Error Message: BC30451: Name 'InStr' is not declared.
with the following code:
Dim startpos, endpos As Integer
startpos = InStr(strSource, StartString)
endpos = (InStr(strSource, EndString) - InStr(strSource, StartString))
I don't know if this might be the problem, but I am basically trying to get
some vb.net code to work in a c# project. I've done this before, where I
just exclude the vb code from the project, and change all the "Codebehind="
to "Src=" and add the <% @Assembly Name="" %> directive to each vb file.
Any help would be appreciated.
REM
Compiler Error Message: BC30451: Name 'InStr' is not declared.
with the following code:
Dim startpos, endpos As Integer
startpos = InStr(strSource, StartString)
endpos = (InStr(strSource, EndString) - InStr(strSource, StartString))
I don't know if this might be the problem, but I am basically trying to get
some vb.net code to work in a c# project. I've done this before, where I
just exclude the vb code from the project, and change all the "Codebehind="
to "Src=" and add the <% @Assembly Name="" %> directive to each vb file.
Any help would be appreciated.
REM