|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
How to create data reports ?
hello friends,
i want to need ur help, plz. i want to create data reports in vb.how i can do this? i need the simplest code for this. thanks in advance. |
|
#2
|
|||
|
|||
|
How simple will that be? A datareport without using a dataenvironment? Thats what I like to use.
Hope this is simple enough. <code> 'Adodc1 connection & recordsets Private sub PrintReport() With DataReport1.Sections("Section4").Controls .Item("Label1").Caption = Adodc1.Recordset.Fields("username").Value .Item("Label2").Caption = Adodc1.Recordset.Fields(12).Value .Item("Label3").Caption = pposition 'variables you can pass End With With DataReport1.Sections("Section1").Controls .Item("Text1").Caption = Adodc1.Recordset.Fields("accountrecord").Value End With Set DataReport1.DataSource = Adodc1 DataReport1.Show End sub <code:> |
|
#3
|
|||
|
|||
|
thanks for nice reply.
the code is working. thank you again. |
![]() |
| Viewing: ASP Free Forums > Programming > Visual Basic Programming > How to create data reports ? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|