can someone make a sample on how to pass values from form1(texbox) to datareport1 label by using a databse dummy. ( it means no database needed)
thanx :wave: :wave: :wave: :wave: :wave:
Printable View
can someone make a sample on how to pass values from form1(texbox) to datareport1 label by using a databse dummy. ( it means no database needed)
thanx :wave: :wave: :wave: :wave: :wave:
You'll need a dummy database and something like the following code:
VB Code:
' Inside Form1 With DataReport1 .Sections(1).Controls("Label1").Caption = Text1.Text .Refresh .Show End With
Moved to reporting section