Assign to text boxes in to another text box

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Venu gopal
    New Member
    • Jul 2006
    • 3

    Assign to text boxes in to another text box

    I am getting month and year in two text boxes but I want to both in one text boxe. I have tried using both ways but I have faield.
    Example: 012006
    'MonthYear = "imonth" & "iyear"
    Month3.Text = imonth & iyear

    'Month3.Text = (month1.Text & Year1.Text)

    Please any suggestions that would be great help.
    Thanks.
    Last edited by Venu gopal; Jul 18 '06, 11:58 PM. Reason: spelling mistake
  • candice
    New Member
    • Jul 2006
    • 11

    #2
    actually i don't understand what u want. Isn't u want to show the date of month and year.if yes u can use Dtpicker calender.
    or you just want to display the month or year into text box. If yes u can try this coding below:

    Private Sub Form_Load()
    Text1 = Format(Date, "mm.yyyy")
    End Sub

    hope my suggestion can help u . Good luck! :)

    Comment

    Working...