Author |
Message |
Topic: Attaching user data (%ud) to a delay timer (%dl) |
PaulLaidler
Replies: 4
Views: 136
|
Forum: ClearWin+ Posted: Sat Sep 23, 2023 3:31 pm Subject: |
Bill
You can have multiple timers for a given parent window either with multiple %dl's or by adding timers at runtime. The routine SET_TIMER@ adds a new timer at runtime and KILL_TIMER@ removes a t ... |
Topic: Clearwin based message for warnings/infos |
PaulLaidler
Replies: 20
Views: 673
|
Forum: ClearWin+ Posted: Sat Sep 23, 2023 1:09 pm Subject: |
I have fixed that particular error report so that you will get a message with the option to continue. |
Topic: Clearwin based message for warnings/infos |
PaulLaidler
Replies: 20
Views: 673
|
Forum: ClearWin+ Posted: Sat Sep 23, 2023 9:42 am Subject: |
Dan
If you post some code illustrating the failure then someone will be able to identify where the error occurs.
Likewise I would be able to see if ClearWin+ could respond in a better way. |
Topic: Attaching user data (%ud) to a delay timer (%dl) |
PaulLaidler
Replies: 4
Views: 136
|
Forum: ClearWin+ Posted: Sat Sep 23, 2023 6:53 am Subject: |
%dl doesn't create a control. It makes a call to the Microsoft API SetTimer for the given callback function.
The internal list of ClearWin+ timers could be extended to include a user data member bu ... |
Topic: Clearwin based message for warnings/infos |
PaulLaidler
Replies: 20
Views: 673
|
Forum: ClearWin+ Posted: Sat Sep 23, 2023 6:37 am Subject: |
Plato will usually find the help for the format codes when you put the text cursor in the code and press F1. |
Topic: Clearwin based message for warnings/infos |
PaulLaidler
Replies: 20
Views: 673
|
Forum: ClearWin+ Posted: Fri Sep 22, 2023 2:21 pm Subject: |
%siX provides a 16x16 hazard icon.
%ld is documented under "Format code reference".
If we are able to extend %si in order to provide for a show/hide control variable (ctrl say) then it ... |
Topic: Clearwin based message for warnings/infos |
PaulLaidler
Replies: 20
Views: 673
|
Forum: ClearWin+ Posted: Thu Sep 21, 2023 1:23 pm Subject: |
It might be possible to add a grave accent to %si which would then take an integer argument. The argument would specify the show state, either show or hide. |
Topic: Clearwin based message for warnings/infos |
PaulLaidler
Replies: 20
Views: 673
|
Forum: ClearWin+ Posted: Thu Sep 21, 2023 7:17 am Subject: |
winapp
module mm
use clrwin
integer(7) hwnd
integer state
contains
integer function cb()
state = 1 - state
call SET_CONTROL_VISIBILITY@(hwnd, state)
cb = 2
end ... |
Topic: Allocate on assignment for CHARACTER variables |
PaulLaidler
Replies: 1
Views: 153
|
Forum: Support Posted: Wed Sep 20, 2023 2:56 pm Subject: |
It looks like the use of CHARACTER variables in this way has not be considered.
I have added these to the list of missing features. |
Topic: Clearwin based message for warnings/infos |
PaulLaidler
Replies: 20
Views: 673
|
Forum: ClearWin+ Posted: Wed Sep 20, 2023 11:55 am Subject: |
One way is to use a Fortran print statement in the old way.
The printing appears in a DOS box or in a separate window but this serves the purpose if it is just for your own information.
Otherwis ... |
Topic: Matching named DO/ENDDO |
PaulLaidler
Replies: 2
Views: 165
|
Forum: Plato Posted: Wed Sep 20, 2023 11:47 am Subject: |
Ken
Thanks for the bug report. I have made a note that this needs fixing. |
Topic: Windows 11? |
PaulLaidler
Replies: 3
Views: 231
|
Forum: General Posted: Sat Sep 16, 2023 7:45 am Subject: |
There are no known issues with Windows 11 and FTN95 is fully supported for this operating system. |
Topic: When a crash is not a crash |
PaulLaidler
Replies: 14
Views: 656
|
Forum: General Posted: Fri Sep 15, 2023 6:57 am Subject: |
Bill
Most Win32 C++ code will compile with SCC /64 but it is not "supported" in the sense that we will promise to fix any failures. Having said that we are willing to accept proposed bug ... |
Topic: When a crash is not a crash |
PaulLaidler
Replies: 14
Views: 656
|
Forum: General Posted: Thu Sep 14, 2023 11:59 am Subject: |
Bill
It might be worth considering a change to x64. In some cases the change is quite easy. |
Topic: %pl dx and dy values |
PaulLaidler
Replies: 13
Views: 6502
|
Forum: ClearWin+ Posted: Thu Sep 14, 2023 8:22 am Subject: |
Ken
I can see in the ClearWin+ code where this value is limited but a change might affect user's existing code.
I have added an option CLEARWIN_OPTION@("no_pl_dy_limit") that will allo ... |
|