Hi
I have this code
Private Sub cmdSend_Click()
'Range("b2").Value = txtName
'Range("c2").Value = txtAddress
'Range("d2").Value = txtPhone
'Range("e2").Value = txtZip
'Range("f2").Value = txtEmail
erow = Φύλλο1.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
Cells(erow, 2).Value = txtName.Text
Cells(erow, 3).Value = txtAddress.Text
Cells(erow, 4).Value = txtPhone.Text
Cells(erow, 5).Value = txtZip.Text
Cells(erow, 6).Value = txtEmail.Text
End Sub
The red part of the code says :Φύλλο1. This is the translate of Sheet1 in our launquage!
In my sample example i have also a picture of the module to see it.
So Sheet2(Φύλλο2) is called "DataEntry" and
Sheet1(Φύλλο1) is called "DataBase"
The code works fine when i use sheet2-Φύλλο2, but not at all for sheet1-Φύλλο1!!
This getting me crazy.!
Any ideas pls?
Bookmarks