Showing posts with label click. Show all posts
Showing posts with label click. Show all posts

Monday, March 19, 2012

crystal report.. on network application

i m using crystal report with vb...

i have designed a report with a table on it..
the table creates when user click on the preview button on the form..
named tmpAccountLedger..

but when 2 or more users click at the same time..with the different account specifie.d...
the report shows the same for all users..

what should i do..
plz suggest..
regards.What's the underlying database? Can you use a session table? Can you use some sort of id to uniquely name each table creation? I assume you drop it at the end somehow?|||For MSSQL, I use global temporary tables for such purposes. When developing a report, I create a normal "dummy" table with prefix "_tmp_" that can be used for building report. At runtime, I create global temporary table like "##SF93DXU2" with same structure, and replace the name of original dummy table with the name of actual temporary table. Works fine. You can even forget to drop the table afterwards and SQL will clean it up for you. In fact, there are situations where you can't drop the table yourself (for example, if temporary table is used in a subreport at the end of the report, then it is not queried immediately but only when the user reaches the page that contains subreport).

Sunday, March 11, 2012

Crystal Report Factors

hi guys!
i just want to ask my problem about my exporting file under vb code applications...
when i click the export button it doesnt work... nothing happen...
i wonder if you can give an idea how to fix this problems...
ASAP!
thank you very much!
benjzMake sure you have the correct dlls installed on the machine you want to Export from. In Crystal Reports 8.5, there's a file called runtime.hlp that tells you what files are required and whee to put them.|||do i need to install those dll in every client that are using the application? i thought its automatically deploy by setup app...

is it ok if you can give me the list of this dll's?

thankz a lot!

benjz|||Depending on what app you're using to create your setup file, you may have to specify that you want Export capabilities included.

See my post here (http://www.dev-archive.com/forum/showthread.php?t=318504) for a list of the Export dlls required (for CR 8.5).

Thursday, March 8, 2012

Crystal Report 8 with Vb 6.0 [parameters screen]

Hi,
I m using crystal in vb 60. and showing all the reports from a folder in the list and when user double click any report it ask for parameter which i fine

but if user click on the cancel button on paramter screen then it should exit but still it open the crystal report with blank page.

How i can stop this if user click on cancel button or can i can hide the cancel button on the parameter screen?

Thanks In advanceTry posting this question in the Crystal Reports Forum (http://www.dev-archive.com/forum/forumdisplay.php?s=&forumid=64)|||[ Moved to Crystal Report forum ]

Crystal Report & PDF Format

hello
I need 10-15 reports on one button click from the database, all the reports should be print in a PDF Format. so pl. tell how i can do this in dot net envoirnment.
ASAP
Shoaib ShaikhHave you tried doing a search on this board? There are lots of examples. I have posted several for VB 6 and CR 8.5 which you might be able to tweak a bit to use with .NET.

Also, look at Crystal Report's Search (http://support.businessobjects.com/search/advsearch.asp) or Crystal Report's Forum (http://support.businessobjects.com/forums/default.asp).