Hi all,
I am new to
VB and inherited some code.
It was requested of me to change some code in a dll and recompile the dll for testing. When I try to compile the
VB code to see if I get the desired effect on the application,
VB gives me a complie error and then pulls up the reference table for me after telling me it cannot find the project or library. I even added the VBA library but that didn't help
I understand enough to know that
VB is looking at the string passing a value below. However it can't find the library to look up what (Right$) does in the function below:
Public Function RemoveCDATA(ByVal strData)
strData = Right$(strData, Len(strData) - Len("<![CDATA["))
strData = Left$(strData, Len(strData) - Len("]]>"))
RemoveCDATA = strData
End Function
any help?
Thanks