⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 destoryprogressbox.f90

📁 Intel Visual Fortran 应用程序开发 周振红编著
💻 F90
字号:
integer function DestroyProgressBox( context )
  !DEC$ ATTRIBUTES DLLEXPORT::DestroyProgressBox
  use ProgressBoxTypes
  use user32
  implicit none
  ! Arguments
  type(PBContext) context
  ! Variables
  logical lret
  ! Body of DestroyProgressBox
  DestroyProgressBox = PBStatus_OK
  ! Enable the parent window
  if ( context % bEnableParent ) then
    lret = EnableWindow( context % hwndParent, .TRUE. )
  end if
  ! Free the dialog structure
  call DlgExit( context % PBDlg )
  call DlgUninit( context % PBDlg )
  deallocate( context % PBDlg )
end function DestroyProgressBox

⌨️ 快捷键说明

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