VB 6.0 How to display report with pic.
How to display reports with pictures for each record along with other data saved in my database?
Please help me.
How to display reports with pictures for each record along with other data saved in my database?
Please help me.
Visual Basic Data Reports cannot display Images stored for each record in database. However some fixed images can be displayed. In order to display such records you may try to create files in HTML format from Visual basic and open the report using Internet Explorer. The best way is to
1. Open files in text mode
2. Assign necessary html elements and tags.
3. Put the database variables in proper position in the html document.
4. Save it and open with Internet Explorer.
5. Dim xx as new Internet Explorer
6. xx . openUrl(< file name>)
Else Another option Is to Install Crystal Reports which is easily accessible through Visual Basic.
Thanks.
Since you want visual representations of your database, you can use Crystal Report. It is a reporting program that will let you produce reports coming from different data sources. With it you can make reports, print preview as well as print. It works on SQL Server and VB.NET. For an example, here is a brief explanation of creating a Crystal Report using VB.NET.