EX:
TextBox1.Text = TextBox1.Text & vbNewLine & "CONTRACT FOR : " & BrideNameBox.Text
TextBox1.Text = TextBox1.Text & vbNewLine & "DATE OF WEDDING : " & MonthBox.Text & " " & DayBox.Text & " " & YearBox.Text
TextBox1.Text = TextBox1.Text & vbNewLine & "TIME OF WEDDING : " & hourBox4.Text & ":" & MinBox4.Text & " " & ampmBox4.Text
TextBox1.Text = TextBox1.Text & vbNewLine & "LOCATION : " & LocationBox.Text
EVERYTHING in grouped into textbox1.text
where it gets its data for combo boxes is in a sheet
hourBox4.Text [ Row source List!h1:h13 cell 1 blank for if we do not know the time and wish to leav it blank upto 13 to cover all 12 digits in hour ]
not sure where to pop in the formatting
~~copying all data from textbox1.text~~
Private Sub Copy_Click()
Set MyData = New DataObject
MyData.SetText TextBox1.Text
MyData.PutInClipboard
~~opening word to to be pasted with ctrl+v~~
Set wordapp = CreateObject("word.Application")
wordapp.documents.Open "C:\beautiful faces\Beautiful Faces Wedding Contracts\Blank.docx"
wordapp.Visible = True
End Sub
sooooo VERY ugly i know but..... where do i put in format
TIME OF WEDDING : " & hourBox4.Text & <--- in here ? " & (Format(Cells(1, 1).Value, "00") hourBox4.Text &
?_?
it has been a to long..
Bookmarks