Mein Beispiel kann auch nur kurz sein, alldieweil dafür nicht viel erforderlich ist. Wie erwähnt - das eigentliche erfolgt ja dann eh per LS in PostRecalc:
FIELD DBServer := "";
FIELD DBFilePath := "";
vDBServerFilePath := @Prompt ( [ChooseDatabase]; ""; ""; ""; "");
@If (@Elements (vDBServerFilePath) = 1; @Return(""); "");
FIELD DBServer := @GetMembers (vDBServerFilePath; 1);
FIELD DBFilePath := @GetMembers (vDBServerFilePath; 2);
REM "Trigger the PostRecalc event:";
@PostedCommand ([ViewRefreshFields])
Bernhard