Hi,
I've got a flowfield showing on a Sales Order form but when I change something in the flowfield (OnDrillDown) then tab off the control the value in the control does not update immediately. It only updates if I close the sales order form and re-open it.
How can I get the flowfield control to refresh immediately?
Thanks in advance.
0
Answers
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!
how can i set filters on this form and then run it?
myform.SETTABLEVIEW(Rec)????
I ended up doing it this way:
myrecord.SETFILTER(myrecord."Sales Doc. No.","No.");
myrecord.SETFILTER(myrecord."Carton Type",'BoxA');
myform.SETTABLEVIEW(myrecord);
myform.RUN;
CurrForm.UPDATE(false);
Try to avoid SETFILTER. SETRANGE is better!
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!
Does SETFILTER do bad things? #-o
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!
That's good to know - thanks again.