Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29393 Discussions

Fortran/Windows Multiple-document interface program

reidar
New User
767 Views

I'm trying to write a multiple -device interface program with a text/edit window for entering user commands (characterbased) to the program, another window for displaying messages from the program.In addition I have to have a window for displaying graphs produced by the program.

So, can someone tell how:

-In case if displaying a text in one particular window and plotting a line in another window, how to get the correct handle to the appropriate window?

-How should the graphical window(s) be defined compared to text windows?(In terms of T_WNDCLASS, the mdicreate structure, etc.)

Best regards

Reidar

0 Kudos
1 Reply
Nick2
New Contributor I
767 Views
May I suggest that you avoid the problem altogether and do your GUI with say VB.NET? Otherwise, your best bet is to look up Windows API reference material. For the window where you're displaying text, you probably want to add to it a TextBox control. For the other one, just make a plain window and draw in it.
0 Kudos
Reply