
[英]Add one hour to Access table field, and save the value in another field
[英]Enrich the information of one field with another table field
创建一个表单,其记录源是Comprobado
表(您当前正在通过在网格视图中打开表来编辑其记录)。
然后,在表单上插入一个 Combobox 并将组合框的Control Source设置为Num_Expediente
字段,将Row Source设置为包含Num_Expediente
字段和Nombre_OT
字段的查询,例如:
select t.Num_Expediente, t.Nombre_OT from Expedientes t order by t.Num_Expediente
将Column Count属性设置为 2 并使用Column Widths属性为您的数据适当调整列的大小。 将绑定列属性设置为第1 列,以便使用正确的数据填充Num_Expediente
。
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.