Yuppers such as a quick and dirty way to check to see if the current minute is a multiple of 5 without all the fancy if minute/5 = int(minute/5) and so forth. Use it for all sorts of cool stuff. Glad to be of help...
Don Trainer
Posts
-
MOD Operator -
MOD OperatorMOD Returns the remainder left over after the first number is divided by the second number 12/5 is 2 with a remainder of 2 Therefore 12 MOD 5 is 2 10/3 is 3 with a remainder of 1 Therefore 10 MOD 3 is 1 and so forth. Don
-
Workflow Tracking When Workflow is hosted as a Web ServiceHey out there, I have a Sequential workflow I have written and published as a web service. I need to implement tracking for the workflow. However, every example I have found shows hosting the workflow inside another ASPNet application. I have tried multiple iterations and variations on this theme and nothing seems to work correctly. I don't get any faults running the WF, however, Microsofts "WorkflowMonitor" sample app crashes with a "GetWorkflow" error every time I fire up the workflow. I then have to MANUALLY clean up the tracking database before it will run properly again. Does anyone out ther have a SIMPLE VB.Net based example of doing this? Thanks, Don Trainer