Hello,
the down-mentioned program is ok, but only the last 2 lines don't work.
Is it possible that ActionEditCommands don't work in Forms or do I have
another problem ?
Thanks for your help
Klaus
method init(var eventInfo Event)
Var
siteForm Form
endVar
if siteForm.attach("Formular : KundForm.fsl") then
if siteForm.isVisible() then
siteForm.moveTo()
else
siteForm.show()
endif
else
siteForm.open("KundForm.fsl")
endif
siteForm.action(DataBegin )
siteForm.action(DataFastForward)
siteForm.action(FieldLast)
siteForm.action(FieldUp )
siteForm.action(DataBeginEdit)
siteForm.action(SelectSelectAll)
siteForm.action(EditDeleteSelection)
siteForm.action(EditPaste)
endMethod