Consulting

Results 1 to 2 of 2

Thread: wordvba

  1. #1
    Banned VBAX Regular
    Joined
    Jul 2018
    Posts
    9
    Location

    wordvba

    Dim studentName(10) As String
    Dim num As Integer
    private sub addName()
    For num = 1 to 10
    studentName(num) = InputBox("Enter the student name","Enter Name", 1500, 4500)
    If studentName(num) <> "" then
    Form1.print studentName(num)
    Else
    End
    End if
    Next
    End sub

    Private sub commandbitton1_click()
    Form1.Cls
    addName
    End sub

    Private sub commandbitton2_click()
    End
    End sub

    'In this code what is form1 or form1.Cls I found this code in pdf this code creates dialog box with start(commandbitton1)and exit(commandbutton2) buttons in userform according to me but I don't know actually where to insert this code or its part in module1 or class module or userform . Please.....help






  2. #2
    Knowledge Base Approver VBAX Guru macropod's Avatar
    Joined
    Jul 2008
    Posts
    4,435
    Location
    This thread is a duplicate of http://www.vbaexpress.com/forum/showthread.php?63158-vba
    Kindly don't post the same topic multiple times. Thread closed. You may continue the discussion in your original thread.
    Cheers
    Paul Edstein
    [Fmr MS MVP - Word]

Posting Permissions

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