is your question the Title?
you can use the combo's AfterUpdate event:
Code:
private sub combo_afterupdate()
if [combo].listindex > -1 then
with me.recordsetclone
.findfirst "[pkFieldName] = " & [combo]
me.bookmark = .bookmark
end with
end if
end sub
is your question the Title?
you can use the combo's AfterUpdate event:
Code:
private sub combo_afterupdate()
if [combo].listindex > -1 then
with me.recordsetclone
.findfirst "[pkFieldName] = " & [combo]
me.bookmark = .bookmark
end with
end if
end sub
normally on Main table you don't do like that (see form 1).
you need another table, a transaction in which you can add New Name to the table (see Transaction form).
add an index to the table that prevents duplicated names. Then you won't be able to add a new name, or amend a name in a way that would cause a duplicate. How you handle this is a different mater.
normally on Main table you don't do like that (see form 1).
you need another table, a transaction in which you can add New Name to the table (see Transaction form).