Hi TrentI use a routine from this post http://forum.strataframe.net/Topic13603-6-3.aspx for duplicate a record. In one windows I have a Maintenance form, and after duplicate I manually remove text form some fields that must have differente information.
My problem is that in another Window I use a ListView, when users select a row can copy to a new record and then the edit form opens, but I need to exclude some fields than must contain new information
How do I exclude some fields from being copied?
If col.ColumnName = Me.PublicacionesBO1.PrimaryKeyField ThenContinue ForEnd IfIf col.ColumnName = Me.PublicacionesBO1.Ofertas Then Continue ForEnd If... some other fields here
Me
.PublicacionesBO1.CurrentRow(col) = copyRow(col) Do you have some ideas?
Regards