Hi All
Im newbie at LS so please be consider :)
I have an action in a form which call to another one at this way:
@DialogBox("CD003";[AutoVertFit]:[AutoHorzFit]);
Well, I'll work in the QueryClose Event:
In this new form I only put a field, but I need to update two forms.
I open the two forms well, but the problem is that one of this two forms is the first one (the one which call to CD003)
I dont see the changes in this one, and if I save it I get a beautiful conflict during recording.
Part of my code in F001 (the first one) and in CD003:
F001:
@SetEnvironment("PedidoID";"");
@SetEnvironment("PedidoID";ID_Pedido);
@DialogBox("CD003";[AutoVertFit]:[AutoHorzFit]);
@Command([ViewRefreshFields]);
@If(NAlbaran1="";@Do(@Prompt([OK];"Aviso";"Please fill this field.");@Return(""));@Success); 'The Prompt appears...
CD003:
...
Set DocF001 = Vista.GetDocumentByKey(PedidoID)
...
Call DocF001.ReplaceItemValue("NAlbaran1", NAlbaran)
I hope you understand my problem...
Sorry about my english, and thanks in advance

