How To Change Value Of Caption Property Of Report Label In Data Report In Vb6 At Run

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jkdudhatra
    New Member
    • Oct 2007
    • 3

    How To Change Value Of Caption Property Of Report Label In Data Report In Vb6 At Run

    How To Change Report Caption Label Property Of Data Report In Visual Basic 6 ?
  • muddasirmunir
    Contributor
    • Jan 2007
    • 284

    #2
    add this line to initialize event of your datareport
    Datareport1.Sec tions("section5 ").Controls("la blename").Capti on = yourname

    where
    labelname=name of your label control
    yourname=the value which you want to give label

    Comment

    Working...