calldlgsub.f90

来自「Intel Visual Fortran 应用程序开发 周振红编著」· F90 代码 · 共 10 行

F90
10
字号
SUBROUTINE calldlgSub( dlg, id, callbacktype )
  use user32
  use iflogm
  implicit none
  type (dialog) dlg
  integer id, callbacktype
  if (callbacktype == dlg_destroy) then
    call PostQuitMessage(0)
  endif
END SUBROUTINE calldlgSub

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?