Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I began to study VBA just from yesterday. I strike in a program from
the book, the code is like this: [code]: Private Sub CommandButton1_Click() Range("D8").Select Selection.End(xlDown).Select Selection.End(xlToLeft).Select ActiveCell.Offset(1, 0).Range("A1") = TextBox1.Text ActiveCell.Offset(1, 0).Range("B1") = TextBox2.Text ActiveCell.Offset(1, 0).Range("C1") = TextBox3.Text ActiveCell.Offset(1, 0).Range("D1") = TextBox4.Text ActiveCell.Offset(1, 0).Range("E1") = TextBox5.Text End Sub Private Sub CommandButton2_Click() End End Sub Private Sub CommandButton3_Click() TextBox1.Text = "88" TextBox2.Text = "Michael" TextBox3.Text = "123455" TextBox4.Text = "1322" TextBox5.Text = "Record for test" End Sub when I try to run it. it reports an error: Run time error '1004' application-defined or object-defined error . When I debug it, it shows something wrong with this sentence: ActiveCell.Offset(1, 0).Range("A1") = TextBox1.Text. But after doublecheck, I still can not find any problem. I copy it from the book exactly. Anybody's help is appreciated! |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Hello, fresh here! | Excel Worksheet Functions | |||
Need a fresh pair of eyes | Excel Worksheet Functions | |||
Fresh pair of Eyes required | Excel Worksheet Functions | |||
PIVOT LEARNER - Field Entry | Excel Worksheet Functions | |||
Just a learner...!!! | Excel Programming |