Page 1 of 1
Viewer Error using DLLs
Posted: Wed May 12, 2004 4:56 pm
by jgabuardi
I am almost finish a customer app, I convert the accounting system from Clipper to Xbase running over MS-IIS, and I want to reuse the R&R reports. I am using Viewer by DLLs and all calls work fine exept for SetScopeUsage & SetFilterUsage.____if I use:__ SetScopeUsage(nReport, "O") //Overwrite__ SetFilterUsage(nReport, "O") // Overwrite__I get:__ cSSU:=cSFU:=" "__ GetScopeUsage(nReport, @cSSU) //extrange caracter__ GETFilterUsage(nReport, @cSFU) // extrange caracter____I try diferent to send the "O" in variables or by reference but is not working.____Any idea?____Regards____Jorge
=> RE: Viewer Error using DLLs
Posted: Thu May 13, 2004 2:34 pm
by kfleming
"O" to override the saved report setting should be a valid entry.__Does the report have a saved filter or scope?__DO you see the error with any report?____Kathleen__R&R Support
==> RE: Viewer Error using DLLs
Posted: Mon May 17, 2004 10:29 pm
by jgabuardi
Kathleen____I found the problem, I was using (as documented)____SetScopeUsage(nReport, "O" )//Overwrite__SetFilterUsage(nReport, "O" ) // Overwrite____but it works with ____SetScopeUsage(nReport, asc("O")) //Overwrite__SetFilterUsage(nReport, asc("O")) // Overwrite____thank you any way____Regards____Jorge____>"O" to override the saved report setting should be a valid __>entry. __>Does the report have a saved filter or scope? __>DO you see the error with any report? __>__>Kathleen __>R&R Support __