Estou fazendo isso... Private Sub Command3_Click() Rs.ActiveConnection = Con Rs.Open "insert into tiago_teste (Nome,Tel) values('& txtnome.Text &','& txttel.Text &')" Rs.AddNew Rs("Nome").Value = txtnome.Text Rs("tel").Value = txttel.Text End Sub A estrutura da tabela é essa: create table tiago_teste ( Nome varchar(20) not null, Tel int null ) Só que tá dando erro de tipo, tá dizendo que não pode converter um valor VARCHAR que deve ser (txttel.text) para uma coluna do tipo INT, que é a da minha tabela...