Products & Solutions
Why DriveWorks
How to Buy
Resources
About
Log InTry Demos

‘The Power of Generic Rules for Scalability’ by Paul Gimbel of Razorleaf

In this blog Paul Gimbel, Business Process Sherpa at Razorleaf, discusses how they use intelligent rules in DriveWorks to help their customers extend their implementations.

Its no secret that at Razorleaf, we do a lot ofDriveWorks implementations and every implementation is always the start of something larger for our clients. There is no such thing as a completed automation project because you will always want to add new options, new products, new outputs, just adding more and more value. With every implementation being totally different, how can we help our clients to extend their implementations moving forward? Easy, we use intelligent, generic, reusable rules.

Use Generic, Reusable Rules

I can hear your question right now. Youre thinking, OK, Paul, what in the blazes does that mean? Fair enough. That does sound like a bunch of business lingo bingo. The bottom line is that if we intelligently plan for what we will want to change or grow, we can use functions in DriveWorks that are completely independent of the specific control or variable or SOLIDWORKS dimension that they are determining. Make these rules smart enough and Ctrl+C then Ctrl+V will be all you need to expand your implementation. So at this point, youre either very curious or very confused. Ill try to address both.

First of all, what do we mean by generic? And why do I ask so many questions when Im supposed to be answering yours?

Well, generic rules and functions mean that they can be used for multiple calculations, without being changed. At the root of most of these is the function MyName(). Ever since invertebrates emerged from the primordial ooze, we have been asking for our DriveWorks rules to know who they are. MyName() will return to us (depending upon the rule context) the name of a variable, a control name AND property, or a component path and parameter. So if I want to control a macro button (look, location, function), I can write a rule that knows that buttons name and whether Im looking for its top or width or tooltip text.

Well, thats great, but I often dont want to know something from MyName(), but rather SomeoneElsesName(). Three more functions exist to make this possible. Indirect() is a function brought over from Microsoft Excel that allows us to get the value of another variable. So if I have the value =DWVariableFlowArea, I could also get that using =Indirect(DWVariableFlowArea). Well, thats pretty silly when its a static string, but this allows you to build a string because maybe you dont know if youre going to need the flow area or the flow volume or the flow speed. Indirect will allow us to build the name of the variable and return its value.

Substitute ()

That is where my favorite function (EVER!) comes to light, Substitute(). We can use Substitute() to replace or remove a portion of a string. So I can use Substitute(MyName(), .Left, .Width) to change DimensionImage.Left into DimensionImage.Width. Put that inside of Indirect() and I can have the rule for my left location look for my width, critical if you want to center a control on your form.

ExtractNumber()

And the final link in the chain is ExtractNumber(). If a string contains a number or numbers, ExtractNumber() can return just that number for use in another function. A second parameter exists in ExtractNumber() that allows you to tell the rule to retrieve the 2nd or 3rd (or 8th) number in a string, and with positive or negative, which direction to start counting. .

This means that ExtractNumber() can be used to parse a value like Qty of 9 M8-1.2545 to pull out any value that you like.

So this is where the intelligent planning comes in. Very often, we will want to write a rule that refers to n-1, that is, the variable or control before me. This could be a running total in aBOMor locating controls in a form.

For example, link all of the components listed above and we can use Indirect() to return the value of a control that has the same name that I do, except (here comes Substitute()) the number in the name (theres ExtractNumber()) is one less than mine. Here is one of the most frequently used rules in my forms:

=Indirect(
Substitute(MyName(),
ExtractNumber(MyName(), -1),
ExtractNumber(MyName(), -1) 1)
)
)
+ Indirect(
Substitute(
Substitute(MyName(),
ExtractNumber(MyName(), -1),
ExtractNumber(MyName(), -1) 1)
),
.Top,
.Height)
)
+ DWVariableControlVerticalGap

Don’t Panic! We’ll Walk Through It…

This rule locates the top of a control based on the location and height of the control before it. The rule simply adds the top location of the previous control plus the height of the previous control plus a gap value.

Heres how it works. We use indirect() twice, to get the top location value, then the height value. The value is MyName(), which lets say is Button9, but we replace the number at the end of my name

[ExtractNumber(MyName(), -1)]

with the number at the end of my name minus 1

[ExtractNumber(MyName(), -1) 1]

So that lets me (Button9.Top) get the top location value of the button before me (Button8.Top). To that, Im going to add the height of the button above me. The method is the same, but this time, after we get the string Button8.Top the way that we did above, were going to use another substitute() to replace .Top with .Height. So now we have the top of the button before me plus the height of the button before me, which is the bottom of the button before me, and add in a little bit of a gap, and presto-magic, you now have this button tied to the button above.

This gets even more helpful when you realize that doing a COPY/PASTE of a control or variable that ends with a number, will create a new control or variable with the number at the end incremented. And since our rule is completely generic, it will automatically work with the new control. Do you need a field of 60 macro buttons? Just create one with all the right rules, and paste away.

(Note: If you copy/paste controls and they do not update properly, save and reload your project. This will often reset the values and make everything right with the world.)

The rules are longer this way. The rules take a bit of thought until you get used to them. But you only need to write them once and you are done. All our implementations use a group table with settings from fonts to paths to colors and database information. Reusing a single rule allows us to retrieve any setting by just having the name of the setting match the name of the variable. So, get started with utilizing generic rules to make your implementation more flexible and more scalable. And extra credit if you combine it with a calculation table. But thats another discussion altogether.

For more information about Razorleaf, visithttps://www.razorleaf.com/