Mar 23, 2004 #1 joseprez Vendor Sep 7, 2002 19 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!!!
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!!!
Mar 23, 2004 #2 bdreed35 Programmer Mar 2, 2003 1,549 US Perhaps you could help us by showing us the actual string that you are trying to pass? ~Brian Upvote 0 Downvote
Mar 23, 2004 Thread starter #3 joseprez Vendor Sep 7, 2002 19 PA 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." Upvote 0 Downvote
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."