Learn More
Search site for:
News »
Scroll Up for Recent News
Appx 5.0 Released!
The long awaited Release 5 of Appx is available ...

[Read Full Article]


Appx 5.0 Beta for Windows is Ready!
The Windows version of Appx Release 5.0 Beta is ready...

[Read Full Article]


Appx 5.0 Linux Beta is Ready!
Appx Release 5.0 Beta is ready. This Release includes ...

[Read Full Article]


Caylx Retires from Distribution
Following 33 years of working with the SPEED I, SPEED II and APPX...

[Read Full Article]


Appx Blog
Appx Blog Online
ASI has started a blog! This is an excellent way...

[Read Full Article]


Appx Conference 2007
We're pleased to report that our first European APPX Conference proved to be...

[Read Full Article]


Appx Conference 2007
Still haven't decided if the Appx Conference is for you? First of all, it's a great way...

[Read Full Article]


CWI Hosts European Conference
For some years now, ASI has been hosting tremendously successful APPX conferences in the USA...

[Read Full Article]


4.2.a Patch
ASI announces the APPX 4.2.a Patch Release is now available for download ...

[Read Full Article]


New Registration Format
ASI provides a new format for emailed APPX registrations. Registrations are now being sent as text file attachments to...

[Read Full Article]


Conference Results
Another conference is over, and once again it provided an excellent opportunity to network, learn and socialize with VARs and customers from around the world...

[Read Full Article]


Appx Conference
You are cordially invited to join your APPX colleagues and friends at the newest "episode" of the bi-annual conference, called "APPX EX-ZOO-BERATION 2006"!...

[Read Full Article]


Minicom Joins CWI
CWI is delighted to welcome Minicom Software House Ltda, located in Brazil, to its reseller network!

For over 25 years, Minicom's team of consultants has been involved in the development and...

[Read Full Article]


Sadden Joins CWI
Sadeen Computerized Systems is an integrated solutions provider which has been offering management control software, security systems and access control software to SMEs for a number of years. Now, however...

[Read Full Article]


SWS Joins CWI
CWI is pleased to welcome SWS Software Service in Austria to its reseller network! SWS has been a very successful SPEED II reseller since 1983 and has been working with APPX since...

[Read Full Article]


Sintec Joins CWI
CWI is pleased to welcome Sintec, S.A. de C.V. from Mexico to its reseller network!

[Read Full Article]


Scroll Down for Archived News


A | B | C | D | E |F | G | H | I | J | K | L | M | N | O | P
Q | R | S | T | U | V | W | X | Y | Z


Child Id

Most developers are familiar with using CHILD ID to control the execution order of processes within a JOB. Simply fill in a value for CHILD ID on a job step, and set --- NEXT CHILD ID to that value in the Post Invocation Event Point, and APPX will jump to that child instead of executing the next sequential job step. However, you can also use this to pass information to the child process, in both automatic and optional children. When you fill in CHILD ID on an Automatic or Optional Child, those four characters are also passed to the child process in the --- CHILD ID field. You can use this in place of manually setting a flag. For example, you might invoke the same Optional Child from different places, and want it to behave slightly differently each time. You can fill in CHILD ID in the various parent processes, and test for that in the child itself, and modify the behaviour as required.




COMPUTE Statement

There are two little known parameters in the COMPUTE statement, the P operator (hash addition) and the M operator (hash subtraction). There are normally used when computing hash totals on non numeric fields (i.e., account numbers that contain dashes or other alpha characters). When used with the P or M operator, APPX will first change all non numeric bytes to a 0, and then add or subtract. The COMPUTE statement will also ignore overflow in this case. This can be handy if you have a sequence number field that you manually increment. Instead of adding and then checking to see if you have reached the maximum for that field, you can simply use COMPUTE with 'P' instead of '+', and when it overflows, APPX will simply wrap around to zero and continue. This approach makes your code less dependant on field sizes. If you don't want a sequence of zero, you can always check for zero after the compute and increment again.

Convert to GUI and Retain Character Mode

There is an option on the 'Utilities' tab in Application Design called 'Char to GUI Conversion' that will convert all your character images to GUI Widgets. The disadvantage is that it removes all the character mode data, which means you are now completely committed to using the GUI. You can work around this by saving the ROW and CHR files from your application before running this utility, then copying them back after the conversion. This will preserve all the character mode attributes and still keep the GUI Widgets. Users that run a non GUI client will not see the GUI elements, and for the users that run the Java Client, the Widget data will cover the underlying character mode data. Note: Make a full backup of your Application before trying this!




For additional information, contact tips@cwi-appx.com

[back to top]