Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 VB .net 中使用组合框来显示客户的姓名。如果愿意,他们还可以键入新名称。我可以以某种方式将这些新名称动态地保存在我的 sql 数据库中吗?
我的意思是如果名称是新的并且在我的数据库中不存在,它可以自动保存到数据库中吗?
我的组合框绑定到我的姓名表。
谢谢。
如果您的组合框绑定到数据表,那么您应该能够使用 DataAdapter 根据您的数据表更新数据库表。
您也可以通过将其绑定到组合框 Validated 事件中来自动执行此操作。