Ok, my variable is a HUGE HTML block. It also containes ' blah" & txt1.text & " balh... how can I make my program substuate the variables, then add it to a textbox? Like, can I do this? dim strhtml as string strhtml = <<<<<<<<<<< until >>>>>>>>>. <<<<<<<<<<<<"BIG HTML BLOCK" (200 lines down)>>>>>>>>>>>>>>>. thanks
You can do that using the vbCr or vbNewLine command!!! If you write Code (Text): strExample = "Hello!!!" & vbCr & "This is a test" MsgBox strExample The result will be a messageBox saying: Hello!!! This is a test
No u dont just push CTRL + F and then put in what ever ur looking for and it should do it for u or go to word and Push CTRL + H and type in what u want to replace and it will do it for u
You can just use VB. You can make a simple text editor, create 3 textboxes with multiline Enabled. Then paste the code in the first textbox and add the code to a button click: Code (Text): Text1.Text = Replace(text1.Text, Text2.Text, Text3.Text) Done!!!