Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

The matching " for this string is mising.

Status
Not open for further replies.

joseprez

Vendor
Sep 7, 2002
19
0
0
PA
I send a variable string from VB6 to a report made in Crystal 8.5

when I do this send me this message

"The matching " for this string is mising."

help me to fixed!!!
 
Perhaps you could help us by showing us the actual string that you are trying to pass?

~Brian
 
Public rChkNum as double
Public rChkMSG, rLineMSG as string

rChkNum = CHK0!ChkNum
rChkMSG = Trim(CHK0!Memo)
rLineMSG = "This Check#: " & cStr(rChkNum) & " (" & rChkMSG & ")"
....
crxReport.FormulaFields.Item(19).Text = Chr(34) & rLineMSG & Chr(34)

after this line, send me the message:

"The matching " for this string is mising."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top