vb.net and crystal report print label if exist - vb.net

I am using vb.net and crystal report for printing. What i want to do is if the item exists with the database then label and value were display in crystal report printing. It is possible? can anyone give an idea on how to do this.
thanks in advance
tirso

Add a section in you report for these fields and write formula in supress to show or hid this section
ISNULL({tablename.fieldname})

Related

Multiline textbox does not display properly in Crystal Report

I have a multiline textbox saving into database as data type text. When trying to print it out on crystal report, the format is always off whenever I use tab within the textbox. Is there a way to counter this?

Show 'None in picture' when report (table) is empty in Crystal Reports

I would like to know how to display the image 'Nothing' when there is no data on the table, here is a picture of what I would like to do on crystal reports
Use suppress property of image. Add formula like below that if no-result suppress false else suppress true.
ISNULL({Class;1.Img})
See this link How to Show Blank Image In Crystal report

can grow field object not working in crystal report

I am working with crystal report in visual studio , the report contains data from the data base . the Problem is that the field object height in the report it is fine for short text length but for long text some characters that exceed the field object height will be hidden.
I have been used can grow property by checking it in the format object window but it didn't work the section height didn't increase automatically to wrap all text .
please how can i solve this problem ? any help would be appreciated
thanks in advance
In crystal reports, create a new formula. (it can be done by right-mouse clicking on Formular Fields in the "Field Explorer". In this formula field, drag and drop the notes field so the formula would look something like this {Command.Notes} or {TableName.Notes}. Then back in your report, right mouse click in the Details section and select Insert --> Text Object. Then drag and drop that newly created Formula field into the newly created blank text object.

sub report header need to show were ever sub report is shooing in crystal report

I have a crystal report like this:
In this crystal report i have 2 sub reports
1.Delparkingtype.rpt
2.DelivaryDetailedrpt
i want to show DelivaryDetailedrpt headers where ever showing DelivaryDetailedrpt report
i try to set property repeat on horizontal pages..but that is not affecting any where..
so what i have to do
if any one know how to show subreport header to show where ever sub report showing..please help me
Subreports don't have Page Headers or Footers, but there is a workaround to getting them displayed by creating a "dummy" group. A great tutorial on how to do this can be found here.

How can I print a Crystal Report when a button is clicked?

How can I print a report when a button is clicked?
How can I make a total of a single column data in Crystal Reports?
Can anyone give me some sort of hint?
How to Print a Crystal Report Programmatically
http://www.c-sharpcorner.com/UploadFile/mahesh/CRPrinting10062006161454PM/CRPrinting.aspx
Printing Crystal Reports from VB.Net
http://social.msdn.microsoft.com/forums/en-US/vscrystalreports/thread/2d2232d0-af39-438b-930a-ce758dc98ed3
Choosing a printer when printing from Crystal Reports in C#.try to do it VB.Net
http://www.codeproject.com/KB/printing/printtoprinter.aspx