Results 1 to 3 of 3

Thread: How to pass values in form1(texbox) to datareport1 label

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Apr 2006
    Location
    Philippines
    Posts
    177

    Exclamation How to pass values in form1(texbox) to datareport1 label

    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

  2. #2
    PoorPoster iPrank's Avatar
    Join Date
    Oct 2005
    Location
    In a black hole
    Posts
    2,729

    Re: How to pass values in form1(texbox) to datareport1 label

    You'll need a dummy database and something like the following code:
    VB Code:
    1. ' Inside Form1
    2.     With DataReport1
    3.         .Sections(1).Controls("Label1").Caption = Text1.Text
    4.         .Refresh
    5.         .Show
    6.     End With
    Usefull VBF Threads/Posts I Found . My flickr page .
    "I love being married. It's so great to find that one special person you want to annoy for the rest of your life." - Rita Rudner


  3. #3
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: How to pass values in form1(texbox) to datareport1 label

    Moved to reporting section

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width