📄 destoryprogressbox.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 + -