Uploaded by JHONNY.NARVAEZ

codigonotastxt

advertisement
 comando = New OleDbCommand("Insert into Notas(FECHA,EQUIPO,MARCA,MODELO,SERIE,ECG3,ECG5,ECG12,INT ECG,LA,RA,RL,LL,V,R,L,N,F,C,SENSOR SPO2,INT SPO2,TEMP,IBP,MAN NIBP,BRA NIBP,AM NIBP,AH NIBP,PALA,SUCCION,SF INSP,SF EXP,O2,FILTRO,BATERIA,OBSERVACIONES)" &
"values(main.fecha,main.txtequipo,main.txtmarca,main.txtmodelo,main.txtserie,Me.CH2SN.Text,Me.CH3SN.Text,Me.CH4SN.Text,Me.CH5SN.Text,Me.CH6SN.Text,Me.CH7SN.Text,Me.CH8SN.Text,Me.CH9SN.Text,Me.CH10SN.Text,Me.CH11SN.Text,Me.CH12SN.Text,Me.CH13SN.Text,Me.CH14SN.Text,Me.CH15SN.Text,Me.CH16SN.Text,Me.CH17SN.Text,Me.CH18SN.Text,Me.CH19SN.Text,Me.CH20SN.Text,Me.CH21SN.Text,Me.CH22SN.Text,Me.CH23SN.Text,Me.CH24SN.Text,Me.CH25SN.Text,Me.CH26SN.Text,Me.CH27SN.Text,Me.CH28SN.Text,Me.CH29SN.Text,Me.BATERIASN.Text,Me.observaciones)", myConnection)
comando.Parameters.AddWithValue("@FECHA", main.fecha.Value)
comando.Parameters.AddWithValue("@EQUIPO", main.txtequipo.Text)
comando.Parameters.AddWithValue("@MARCA", main.txtmarca.Text)
comando.Parameters.AddWithValue("@MODELO", main.txtmodelo.Text)
comando.Parameters.AddWithValue("@SERIE", main.txtserie.Text)
comando.Parameters.AddWithValue("@ECG3", Me.CH2SN.Text)
comando.Parameters.AddWithValue("@ECG5", Me.CH3SN.Text)
comando.Parameters.AddWithValue("@ECG12", Me.CH4SN.Text)
comando.Parameters.AddWithValue("@INT ECG", Me.CH5SN.Text)
comando.Parameters.AddWithValue("@LA", Me.CH6SN.Text)
comando.Parameters.AddWithValue("@RA", Me.CH7SN.Text)
comando.Parameters.AddWithValue("@RL", Me.CH8SN.Text)
comando.Parameters.AddWithValue("@LL", Me.CH9SN.Text)
comando.Parameters.AddWithValue("@V", Me.CH10SN.Text)
comando.Parameters.AddWithValue("@R", Me.CH11SN.Text)
comando.Parameters.AddWithValue("@L", Me.CH12SN.Text)
comando.Parameters.AddWithValue("@N", Me.CH13SN.Text)
comando.Parameters.AddWithValue("@F", Me.CH14SN.Text)
comando.Parameters.AddWithValue("@C", Me.CH15SN.Text)
comando.Parameters.AddWithValue("@SENSOR SPO2", Me.CH16SN.Text)
comando.Parameters.AddWithValue("@INT SPO2", Me.CH17SN.Text)
comando.Parameters.AddWithValue("@TEMP", Me.CH18SN.Text)
comando.Parameters.AddWithValue("@IBP", Me.CH19SN.Text)
comando.Parameters.AddWithValue("@MAN NIBP", Me.CH20SN.Text)
comando.Parameters.AddWithValue("@BRA NIBP", Me.CH21SN.Text)
comando.Parameters.AddWithValue("@AM NIBP", Me.CH22SN.Text)
comando.Parameters.AddWithValue("@AH NIBP", Me.CH23SN.Text)
comando.Parameters.AddWithValue("@PALA", Me.CH24SN.Text)
comando.Parameters.AddWithValue("@SUCCION", Me.CH25SN.Text)
comando.Parameters.AddWithValue("@SF INSP", Me.CH26SN.Text)
comando.Parameters.AddWithValue("@SF EXP", Me.CH27SN.Text)
comando.Parameters.AddWithValue("@O2", Me.CH28SN.Text)
comando.Parameters.AddWithValue("@FILTRO", Me.CH29SN.Text)
comando.Parameters.AddWithValue("@BATERIA", Me.BATERIASN.Text)
comando.Parameters.AddWithValue("@OBSERVACIONES", Me.observaciones.Text)
Download