📄 detail.vbs
字号:
'USEUNIT Buttons
'USEUNIT ExtCtrls
'USEUNIT Main
'-------------------------------------------------------------------
sub OpenButClick(Sender)
dim Dialog
Dialog = TOpenDialog.Create(NULL)
Dialog.Filename = "*.bmp"
if Dialog.Execute then
MainForm.Table1.Edit
Image1.Picture.LoadFromFile(Dialog.Filename)
MainForm.dbimage1.Picture.Assign(Image1.Picture)
MainForm.Table1.Post
showmessage("Image Loaded")
End If
Dialog.Free
End Sub
'-------------------------------------------------------------------
sub SaveButClick(Sender)
dim Dialog
Dialog= TSaveDialog.Create(NULL)
Dialog.Filename = "*.bmp"
if Dialog.Execute then
Image1.Picture.SaveToFile(Dialog.Filename)
showmessage("Image Saved")
End If
Dialog.Free
End Sub
'-------------------------------------------------------------------
sub CloseButClick(Sender)
Close
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -