VB6_UserDataset_Demo
I am testing FastReport Studio in VB6 and I want to use this with dhRichClient3 sqlite COM wrapper.
Since I can't use the default ADO bindings of FastReport I see that the only alternative is the UserDataset.
But the example provided in the trial package only works when the app is compiled, as this post described the same behavior in 2009.
If you know how to solve this issue please kindly inform.
Since I can't use the default ADO bindings of FastReport I see that the only alternative is the UserDataset.
But the example provided in the trial package only works when the app is compiled, as this post described the same behavior in 2009.
If you know how to solve this issue please kindly inform.
Comments
Ok, the problem is really solved now with this workaround:
Instead of:
<!--fonto:Courier New--><span style="font-family:Courier New"><!--/fonto-->report.ShowReport<!--fontc--></span><!--/fontc-->
Use:
<!--fonto:Courier New--><span style="font-family:Courier New"><!--/fonto-->report.PrepareReport True
report.ShowPreparedReport<!--fontc--></span><!--/fontc-->