I have Asprunner setup when users all a document that it adds a records ( Note ) to a table called Notes. This notes table has a column called Noteid. I am wanting to have the field LeadingNoteid=Noteid.
'** Insert a record into another table ****
dal.Notes.PatientID=Session(strTableName & "_masterkey1")
dal.Notes.Note="Document added via Website"
dal.Notes.Date=[Date]
dal.Notes.Priority="Provider Note"
dal.Notes.Enteredby="System Generated Note"
dal.Notes.Followup=[Date]
dal.Notes.LeadingNoteID=[Notes.Noteid] or should it be dal.Notes.LeadingNoteID=value [Notes.Noteid]
dal.Notes.Add()
Can this be done