Intel® Fortran Compiler with Windows-Based Applications
                    
                        ID
                        757211
                    
                
                
                    Date
                    6/30/2025
                
                
                    Public
                
            
                                    
                                    
                                        
                                        
                                            Special Naming Convention for QuickWin and Windows Graphics Routines
                                        
                                        
                                    
                                        
                                        
                                            Compare QuickWin with Windows-Based Applications
                                        
                                        
                                    
                                        
                                        
                                            Use Windows API Routines with QuickWin
                                        
                                        
                                    
                                        
                                            Types of QuickWin Programs
                                        
                                        
                                        
                                    
                                        
                                            QuickWin User Interface
                                        
                                        
                                        
                                    
                                        
                                        
                                            USE Statement Needed for Fortran QuickWin Applications
                                        
                                        
                                    
                                        
                                            Create QuickWin Windows
                                        
                                        
                                        
                                    
                                        
                                            Use QuickWin Graphics Library Routines
                                        
                                        
                                        
                                    
                                
                            
                                                
                                                
                                                    
                                                    
                                                        Select Display Options
                                                    
                                                    
                                                
                                                    
                                                    
                                                        Check the Current Graphics Mode
                                                    
                                                    
                                                
                                                    
                                                    
                                                        Set the Graphics Mode
                                                    
                                                    
                                                
                                                    
                                                    
                                                        Set Figure Properties
                                                    
                                                    
                                                
                                                    
                                                        Understand Coordinate Systems
                                                    
                                                    
                                                    
                                                
                                                    
                                                        Add Color
                                                    
                                                    
                                                    
                                                
                                                    
                                                        Write a Graphics Program
                                                    
                                                    
                                                    
                                                
                                                    
                                                        Display a Graphics Output
                                                    
                                                    
                                                    
                                                
                                                    
                                                        Store and Retrieve Images
                                                    
                                                    
                                                    
                                                
                                                    
                                                        Customize QuickWin Applications
                                                    
                                                    
                                                    
                                                
                                                    
                                                        QuickWin Programming Precautions
                                                    
                                                    
                                                    
                                                
                                                    
                                                    
                                                        Simulate Nonblocking I/O
                                                    
                                                    
                                                
                                            
                                        Use Buttons
Unlike Check boxes and Radio buttons, Buttons do not have a state. They do not hold the value of being pushed or not pushed. When the user clicks on a Button with the mouse, the Button's callback routine is called. Thus, the purpose of a Button is to initiate an action. The external procedure you assign as a callback determines the action initiated. For example:
LOGICAL retlog EXTERNAL DisplayTime retlog = DlgSetSub( dlg, IDC_BUTTON_TIME, DisplayTime)
Intel Fortran dialog routines do not support user-drawn Buttons.
 Parent topic: Use Dialog Controls