Alright, i'm going through my first ever tutorial and i've done everything correctly, even by example. But, I keep getting a highlighted debug line (or whatever, lol) and I can't figure out what's wrong. Code (Text): Private Sub cmdClear_Click() txtHello.txt = "" End Sub Private Sub cmdExit_Click() End End Sub Private Sub cmdHello_Click() txtHello.Text = "Hello World!" With txtHello .Font = "Verdana" .FontSize = 16 .ForeColor = vbBlue End With End Sub It highlights txtHello.Text = "Hello World!" with the error, "Run-time error='424' Object Required" What am I doing wrong?
Are you sure your textbox Name property is set to txtHello? I don't think theres anything wrong with the code except under cmdClear it should be txtHello.Text not txtHello.txt
Like what ^^ he said "Object required" means you have called something off the form which isnt there. Check the spelling >.>