Vous pourriez essayer le code suivant, mais je ne sais pas exactement ce qui se produira :
tmpSubject : = sujet ;
@Command ([MailForward]) ;
@Command ([EditGotoField] ; « Sujet ») ;
@Command ([EditInsertText] ; « Expédition : » + tmpSubject) ;
@Command ([EditGotoField] ; « Corps »)
Quel était le code que vous avez essayé ?
Il y a une fonction obscure dont vous pourriez avoir besoin, mais je dois la regarder vers le haut, il est bien caché dans le DB d'aide… Ah, gotcha !
@UpdateFormulaContext
Peut-être le code devrait être comme ceci :
tmpSubject : = sujet ;
@Command ([MailForward]) ;
@UpdateFormulaContext ;
@Command ([EditGotoField] ; « Sujet ») ;
@Command ([EditInsertText] ; « Expédition : » + tmpSubject) ;
@Command ([EditGotoField] ; « Corps »)