Obj.dbEditGridAddSQL = "SQL statement with [[..]] macros"
QuickProp Keyword Abbreviation
egaq
Remarks
NewID() must be used for GUID in EditAdd.
{{Criteria value}} is the existing value of the record that governs which field to update and [[New Value]] will be filled with the User input(s). The [[..]] and {{..}} wrappers are non-negotiable. User is responsible for the correct wrappers for the different data types.
Example
Obj.dbEditGridAddSQL = "INSERT INTO Table (Fld1,Fld2,fld3,GUID) VALUES
('[[Val1]]',#[[Val2]]#,Val3,NewID())
<script language="VB" runat="server">
Sub Page_Load(Src As Object, E As EventArgs)
End Sub
</script>