I am trying to get this HTML:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
into a text box with the proper formatting.
Private Sub Command3_Click()
Text9.Text = "<form action=" & "https://www.paypal.com/cgi-bin/webscr" & "method=" & "post" & ">"
End Sub
I cannot get "https://www.paypal.com/cgi-bin/webscr" and
"post" to correctly format using the " "
Thanks for any help.
