carruina respondió:
Una manera es construir una sentencia INSERT SQL y ejecutarla. Dim strSQL strSQL = "INSERT INTO TBL_EJEMPLO (Campo1, Campo2) " strsql = strSQL & "(SELECT " & txtCamponumerico & ", '" & txtCampoTexto & "');" Msgbox StrSQL Currentdb.Execute(strSQL)...