i try to make a "workflow" under navision (i'm not sure if it's called "workflow"
)
all i want to do is to show a bmp (saved in a blob-field of course
) of a record in a picture-box and run codeunit x ... after codeunit x finished i want to read the next record (to show another bmp) and run the next codeunit.
my code looks something like this:
record.find('-');
codeunit.run;
record.next;
codeunit2.run;
record.next;
codeunit3.run;
and so on ...
instead of showing every picture the form just shows the first and the last (but not the step's between the first and the last step)
Comments
2)What about CurrForm.UPDATE?
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
2.) currform.update tries to save the record
currform.updatecontrols just changes anything
hmm ... :roll:
CurrForm.UPDATE(false) dont save record... :-)
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
(but i tried to make a calcfields anyway - no changes )
"currform.update(false);" changes anything
(where Controlname is the name of the Picture Box)
It helps.... :-)
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
"Picturebox" is the name of my control (it's a pictrue box )
"Picture" is the name of the blob-field in my table
CodeunitX is a variable (type "codeunit")