Good afternoon to aal of you… i post that message because i need your lights
So i’ve a file attachment problem. i’ve a form on the net; on that form there are files related to a webpage (these files are the attachements and are choosable or not (checkbox)). I need to get every record of the form (one to one); so that i can get info from every record. How could i get the form id? i need it to retrieve the records here is the way i work:
Set FileDoc = Db.GetDocumentByUNID(Doc.AddDocRequestUNID(0))
Set MyRT3 = FileDoc.GetFirstItem("DocuRequestRequestedFile")
If Not MyRT3 Is Nothing Then
If MyRT3.ValueLength > 0 Then
Call Body.AddNewLine(2)
Call Body.AppendRTItem(MyRT3)
End If
End If
But the problem is that ‘AddDocRequestUNID(0))’ is the id of the page and not of the form. Could anyone help me please? Thanks in advance.