txgeekgirl1
Programmer
I have a string stored in an array that feeds an electronic signature device and then later needs to feed an iTextSharp PDF doc. It has to have the spacing to appear correctly on the ESig device but I want to strip it for the report.
"Were your HIPAA Privacy Rights explained and were you given a copy of them?"
Code:
MyQ = strQs(i, 1)
While InStr(MyQ, " ") > 0
Replace(MyQ, " ", " ")
End While
MsgBox(MyQ)
I was hoping something like this would work. In VFP I could use Transtr function - VB doesn't have that.
"Were your HIPAA Privacy Rights explained and were you given a copy of them?"
Code:
MyQ = strQs(i, 1)
While InStr(MyQ, " ") > 0
Replace(MyQ, " ", " ")
End While
MsgBox(MyQ)
I was hoping something like this would work. In VFP I could use Transtr function - VB doesn't have that.