アドレスの表示はメモ編集で行ったので、4行あります。この 4 行を取得する方法と Access データベースに保存する方法は? 通常、その EditText の場合、このコードを使用して保存しました
string inno = textEdit12.Text.ToString();
OleDbCommand top = new OleDbCommand("INSERT INTO invoice_top(invoice_number,order_number,customername,status,subtotal,tax,total,[date]) VALUES (" + inno + "," + odrno + ",'" + name + "',"+ chk1 +" ,"+ subtottal +","+ tax +","+total+",'"+date+"')", conn);
top.ExecuteNonQuery();
このコードは EditText で機能します。メモエディット用に取得して保存する方法??? 助けて。