Results 1 to 13 of 13

Thread: [RESOLVED] Card printing

Threaded View

  1. #2
    Addicted Member Quizton's Avatar
    Join Date
    Dec 2005
    Location
    VB Forums
    Posts
    209

    Re: Card printing


    If youd like to randomly generate the numbers here is a simple sample using a commandbutton1 and a label label1

    VB Code:
    1. Private Sub Command1_Click()
    2. label1.caption = Int(Rnd * 50)'may change to set the max number to generate
    3. 'also can add label2,label3,label4,ect.....
    4. End Sub

    now you could place several labels in a picbox that has your image in it
    and set the textboxes to transparent backround
    (to blend in with your image) you could add diff font and sizes to the labels caption and then you could randomly generate the numbers and then print the picbox with
    picture1.print

    Is this generaly what your after?
    also this would be about as basic as it gets if youd like it to print full pages of the cards that would be a diff story

    _________________________________________________________________
    Please rate if I have been helpful
    Last edited by Quizton; Feb 9th, 2006 at 03:54 AM.

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