Apr 16, 2007 #1 baharehresidegan Programmer Joined Apr 16, 2007 Messages 8 Location IR I want to insert date(today) on on header report in datareport (vb6) but i can't please resolve my problem tanx
I want to insert date(today) on on header report in datareport (vb6) but i can't please resolve my problem tanx
Apr 16, 2007 1 #2 Swi Programmer Joined Feb 4, 2002 Messages 1,981 Location US Put a label in the header section and do something like this: Code: rptMain.Sections("Section4").Controls("lblToday").Caption = Date That should do it for you. Swi Upvote 0 Downvote
Put a label in the header section and do something like this: Code: rptMain.Sections("Section4").Controls("lblToday").Caption = Date That should do it for you. Swi