Lahey Support
08-15-2003, 01:33 AM
Dear Bill,
thank you.
Dear all: has anybody similar solutions for LAHEY LF95 (e.g. 5.5 pro)
with WiSK (or Winteracter, or Windows API, or RealWin) ?
Regards,
Uwe Boehnke
Hannover Germany
[address removed]
----- Original Message -----
From: Bill Dowsland
To: [address removed]
Sent: Thursday, August 30, 2001 8:18 AM
Subject: [CWPUG] Solutions
Detailed below are solutions to some problems I have posted on the list in
the last 3 months. Thanks to all those that responded.
Subjects: GIF/JPEG files; HTML Help files; 'Enter' and Tab keys.
These solutions have been used in Pallet Loading and Container Loading
software - see http://www.goweralg.co.uk/
GIF/JPG - Whilst it is possible to produce GIF files from a graphics
surface by copying to the clipboard and then using 3rd party products to
create and save a GIF the far simpler way is to use JPG:
call [address removed]
This very effectively produced some 7000 files + associated HTML support
files written from Fortran.
HTML Help Files.
Whilst using Windows Help files for most application screens we also
wanted to produce full application documentation in HTML using Frontpage and
allow users to view relevant parts from any screen.
By determing where the application had been installed:
cpath = [address removed]
lenpath = leng(cpath)
htmlfile = cpath(1:lenpath) // 'manualsection5.htm'
and then providing appropriate callback this worked well.
[address removed]
[address removed] YPERLINK',htmlfile)
ii = [address removed] help_file)
Tab and Enter.
On input screens, when using: %co[check_on_focus_loss]&')
and defining limits for %rf etc one normally is restricted to moving
between entries using Tab (not Enter).
By defining an accelerator key
c
ii = [address removed]
c
and using
c
integer function godown()
include <windows.ins>
call keybd_event(VK_TAB,0,0,0)
godown = 2
end
c
Both Tab and Enter can be used.
Hope these help someone!
Bill Dowsland.
_______________________________________________ cwpug mailing list
[address removed]
http://lists.salfordsoftware.co.uk/listinfo/cwpug
This message has been sent to you because you have subscribed to the cwpug
Mailing List. The mailing list is provided "as is" with no warranty either
expressed or implied.
Views expressed in this list may or may not be those of Salford Software
Ltd.
----------------------------------------------------------
To unsubscribe, send to [address removed] the following
as the first and only line of the message body:
unsubscribe fortran
----------------------------------------------------------
thank you.
Dear all: has anybody similar solutions for LAHEY LF95 (e.g. 5.5 pro)
with WiSK (or Winteracter, or Windows API, or RealWin) ?
Regards,
Uwe Boehnke
Hannover Germany
[address removed]
----- Original Message -----
From: Bill Dowsland
To: [address removed]
Sent: Thursday, August 30, 2001 8:18 AM
Subject: [CWPUG] Solutions
Detailed below are solutions to some problems I have posted on the list in
the last 3 months. Thanks to all those that responded.
Subjects: GIF/JPEG files; HTML Help files; 'Enter' and Tab keys.
These solutions have been used in Pallet Loading and Container Loading
software - see http://www.goweralg.co.uk/
GIF/JPG - Whilst it is possible to produce GIF files from a graphics
surface by copying to the clipboard and then using 3rd party products to
create and save a GIF the far simpler way is to use JPG:
call [address removed]
This very effectively produced some 7000 files + associated HTML support
files written from Fortran.
HTML Help Files.
Whilst using Windows Help files for most application screens we also
wanted to produce full application documentation in HTML using Frontpage and
allow users to view relevant parts from any screen.
By determing where the application had been installed:
cpath = [address removed]
lenpath = leng(cpath)
htmlfile = cpath(1:lenpath) // 'manualsection5.htm'
and then providing appropriate callback this worked well.
[address removed]
[address removed] YPERLINK',htmlfile)
ii = [address removed] help_file)
Tab and Enter.
On input screens, when using: %co[check_on_focus_loss]&')
and defining limits for %rf etc one normally is restricted to moving
between entries using Tab (not Enter).
By defining an accelerator key
c
ii = [address removed]
c
and using
c
integer function godown()
include <windows.ins>
call keybd_event(VK_TAB,0,0,0)
godown = 2
end
c
Both Tab and Enter can be used.
Hope these help someone!
Bill Dowsland.
_______________________________________________ cwpug mailing list
[address removed]
http://lists.salfordsoftware.co.uk/listinfo/cwpug
This message has been sent to you because you have subscribed to the cwpug
Mailing List. The mailing list is provided "as is" with no warranty either
expressed or implied.
Views expressed in this list may or may not be those of Salford Software
Ltd.
----------------------------------------------------------
To unsubscribe, send to [address removed] the following
as the first and only line of the message body:
unsubscribe fortran
----------------------------------------------------------