Author |
Message |
Topic: Adding focus to edit boxes |
kdangel
Replies: 13
Views: 17242
|
Forum: ClearWin+ Posted: Thu Jan 15, 2009 3:22 am Subject: |
I want to add focus w/o the user manually selecting the edit box. For instance, I have 12 check boxes associated with 12 options. The edit boxes are used to enter file names, and they are invisible un ... |
Topic: Output to main window with a frame and child window |
kdangel
Replies: 1
Views: 6714
|
Forum: ClearWin+ Posted: Tue Jan 13, 2009 2:05 am Subject: Output to main window with a frame and child window |
I want the user to toggle between a main window and a dialog box created as a child window. A snippet of my code ...
PROGRAM main
include windows.ins
common ctrl
integer main,ctrl
x = clearwi ... |
Topic: Adding focus to edit boxes |
kdangel
Replies: 13
Views: 17242
|
Forum: ClearWin+ Posted: Tue Jan 13, 2009 1:42 am Subject: Adding focus to edit boxes |
I have check boxes followed by edit boxes (respectively) using %rs. How do I add a cursor or focus to an edit box?
When a user checks a box I want the corresponding edit box or input box to gain f ... |
Topic: Logical Error with READ |
kdangel
Replies: 3
Views: 7145
|
Forum: General Posted: Tue Jan 13, 2009 1:39 am Subject: |
I found the problem. Thank you. |
Topic: Logical Error with READ |
kdangel
Replies: 3
Views: 7145
|
Forum: General Posted: Thu Jan 08, 2009 8:23 pm Subject: Logical Error with READ |
I'm trying to read 4 values from a file into 4 REAL arrays.
4 FORMAT(7F12.3)
DO 20 I=3,11
JJ = I-1
READ(ICR,4) a(I), b(I), c(JJ), d(JJ)
20 CONTINUE
However, more than one element in th ... |
Topic: Reading Unknown Binary Files |
kdangel
Replies: 2
Views: 7447
|
Forum: General Posted: Mon Jan 05, 2009 8:02 pm Subject: Reading Unknown Binary Files |
The code I am using to open the binary file is ...
CHARACTER SHIP*32, DATE*8
INTEGER NUMBR
REAL XLBP,BEAM
OPEN (IHYD,FORM='UNFORMATTED',ACCESS='TRANSPARENT',
FILE='FOR013.DAT')
READ ... |
|