for   
Save 
Save 
   Join IIUG  

Informix News
14 August 08 - IIUG.org - Sellout Expected for the 2009 IIUG Informix Conference... Read
29 April 08 - IntelligentEnterprise.com - IBM Informix Upgrade Enhances Clustering, Database Management... Read
29 April 08 - itweek.com - IBM 'Cheetah 2' mauls data costs... Read
28 April 08 - eWeek.com - IBM Uncages Cheetah 2 Data Server... Read
28 April 08 - CNNMoney.com - IBM Helps Clients Reduce Data Management Costs With New Informix Dynamic Server... Read
09 April 08 - CNNMoney.com - MediaSpan Embeds IBM Informix Dynamic Server Software for Delivering News to Print, Web and Wireless Devices... Read
08 April 08 - IT-Director.com - Informix seeks developers... Read
18 February 08 - marketwire.com - Icarus Studios Partners With IBM to Upgrade Performance, Availability for Its Online Games... Read
17 January 08 - eWeek.com - IBM Adds Mac Support to IDS for Higher Education... Read
17 January 08 - informationweek.com - Lotus Notes For iPhone Signals Closer Ties Between IBM, Apple... Read
16 January 08 - marketwire.com - IBM Informix Dynamic Server to Deliver Support for Mac OS X... Read
16 January 08 - internetnews.com - IBM's IDS to Support Mac Platform... Read
28 June 07 - REG Developer - IBM and Informix tie down Cheetah... Read
27 June 07 - CBRonline.com - IBM corrects its own Informix customer figures... Read
14 June 07 - vnunet.com - IBM changes spots with Informix 'Cheetah' database... Read
14 June 07 - eChannelLine - IBM expands scope for IDS... Read
14 June 07 - Resellernews - IBM: Informix database alive and kicking... Read
13 June 07 - DB2 Magazine - Cheetah is now out of the gate... Read
12 June 07 - IBM - IDS 11 release announcement (pdf)... Read
12 June 07 - ChannelWeb Network - IBM Uncages IDS 11, Aka Cheetah, Database... Read
12 June 07 - eWeek.com - IBM's 'Cheetah' Ready to Pounce... Read
12 June 07 - InformationWeek - IBM Unleashes 'Cheetah' Database... Read
12 June 07 - WebWire - IBM Strengthens Database Portfolio With New Informix Dynamic Server... Read
12 June 07 - Intelligent Enterprise - IBM Unveils Informix Upgrade... Read
12 June 07 - ComputerWeekly.com - IBM's Cheetah IDS makes leap to better data centre clustering... Read
12 June 07 - ebiz - IBM Unveils Next Generation Informix Dynamic Server... Read
12 June 07 - computerworld.com - Will 'Cheetah' help IBM's Informix chase down market share?... Read
12 June 07 - Internetnews.com - No Data Can Outrun This 'Cheetah'... Read
12 June 07 - de.internet.com - IBM neuer Datenbank-Server mit Codenamen Cheetah ist fertig... Read
12 June 07 - verifox.de - IBM stärkt Datenbank-Portfolio mit neuem Informix Dynamic Server... Read
12 June 07 - golem.de - Informix 11 vorgestellt... Read
12 June 07 - Computerwoche.de - IBM stellt neue Informix-Version vor... Read
12 June 07 - IBM.de - IBM stärkt Datenbank-Portfolio mit neuem Informix Dynamic Server... Read
12 June 07 - Heise - IBM gibt Informix 11 frei... Read
25 May 07 - Taiwan.CNET.com - Local Taiwan Informix user group established... (Chinese language) ... Read
18 May 07 - ChannelWeb Network - IBM Musters Partners For Cheetah Release... Read
18 May 07 - eWeek.com - IBM Looks to 'Cheetah' to Speed Up Blade Servers... Read
7 May 07 - DB2 Magazine - SQL Shortcuts - Use these tricks to generate IDS SQL scripts... Read

Previous news items
 

Home Member Area About IIUG


Resources
IIUG Insider
IIUG Hotspots
IBM-Informix Links
IIUG RSS Feeds
Software Repository
Informix Products
Online Resources
Informix Library
Informix Books
IIUG Banners
Discussion
Technical SIGs
Non-technical
Other Discussion
Community
Events
Webcasts/Chat w Lab
IIUG TV
IIUG Sponsors
Informix Business Directory
IIUG Press Partners
Local User Groups
Job Board
Fun Stuff

[ Post Response ] [ Return to Index ] [ Read Prev Msg ] [ Read Next Msg ]

Classics Forum

Re: Help for 4gl development

Posted By:
Date:


Sorry have not had to do this for 4GL. Oh. forgot you will need to have the
SIGALARM handler issue a SIGINT to break out of the INPUT to the ON INTERRUPT
clause.

See 'man signal' for the function to set up the signal handler for SIGALRM,
'man alarm' to set up the timed interrupt to the handler or to disable it by
setting the timer to zero, and 'man kill' to send the SIGINT from the SIGALRM
handler. This should not be particularly difficult. See the 4GL manuals for
constructing 4GL callable 'C' functions.

Art S. Kagel

----- Original Message -----
From: Subba Rao Sunkavalli <ssvsunkavalli@yahoo.com>
At: 2/ 3 12:03

> Hi,
>
> Thank you for your information.
> It's very interesting.
> Do you have any example programs / scripts.
> Could you please forward to me.
>
> Thanks in advance.
>
> Thanks
> Rao
> --- "ART KAGEL, BLOOMBERG/ 65E 55TH"
> <KAGEL@bloomberg.net> wrote:
> > Write a SIGALARM handler, a function to set the
> > alarm for 5 minutes designating
> > the new handler function, and a function to reset
> > the SIGALARM handler to
> > SIG_IGNORE all in 'C' but 4GL callable. Either link
> > them into your 4GL program
> > if you use C4gl or into the pcode runner if you use
> > R4GL or D4GL. On entry to
> > the 'screen' function's INPUT statement call the
> > alarm setup function, in any
> > after field logic in the INPUT FORM call the setup
> > function again to reset the
> > timer. On exit from the INPUT block disable the
> > SIGALARM with the SIG_IGNORE
> > function. If the alarm timer expires between fields
> > due to idleness the
> > SIGALARM handler will execute and it should set the
> > 4GL interrupt flag and
> > return. In the INPUT function trap the interrupt in
> > an ON clause and exit the
> > function gracefully, perhaps logging the event or
> > popping up a message box.
> >
> > Art S. Kagel
> >
> > ----- Original Message -----
> > From: Subbarao Su.... <ssvsunkavalli@yahoo.com>
> > At: 2/ 3 9:32
> >
> > > Informix 4GL tool is using for Development. One of
> > the program accepts various
> > > input fields in the program, finally on the
> > confirmation, it validates and
> > > update the data and back to previous menu.
> > >
> > > There is a situation to exit from the Input Screen
> > when the system is idle for
> > 5
> > > minutes,
> > > wherever the cursor is in place either at field
> > acceptance or at confirmation
> > > pop window.
> > >
> > > What is the best way to develop program for this ?
> > > Any help can be highly appreciated.
> > > thanks
> > >
> > > subbarao
> >
> >
>
>
> __________________________________________________
> Do you Yahoo!?
> Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
> http://mailplus.yahoo.com


[ Post Response ] [ Return to Index ] [ Read Prev Msg ] [ Read Next Msg ]

Classics Forum is maintained by Administrator with WebBBS 5.12.

©2001 - 2007 International Informix Users Group.   All rights reserved.     Terms of use    
*** Powered By IBM Informix Dynamic Server V10.00 ***