- 博客(0)
- 资源 (2)
- 收藏
- 关注
带历史的菜单 vb源代码
一个可以显示历史的菜单
Option Explicit
Dim main As New main_frm
Public max_index As Integer
Public myindex As Integer
Private Sub close_Click()
On Error Resume Next
'循环语句
For Each main In Forms
If main.MDIChild = True Then
Unload main
End If
Next
Dim FNum As Integer
Dim strfilename As String
Dim i As Integer
FNum = FreeFile
strfilename = App.Path & "\cdxx.ini"
If Dir(strfilename) <> "" Then Kill strfilename
Open strfilename For Output As #FNum
For i = 1 To mnufilelist.Count - 1
Print #FNum, mnufilelist(i).Caption
Next
Close #FNum
Exit Sub
End Sub
Private Sub MDIForm_Load()
Dim file As Long
Dim mystring As String
Dim s As String
Dim strfilename As String
strfilename = App.Path & "\cdxx.ini"
file = FreeFile()
On Error Resume Next
Open strfilename For Input As #file '打开文件菜单列表
Do While Not EOF(file)
Line Input #file, mystring
If mystring <> "" Then
max_index = max_index + 1
Load mnufilelist(max_index)
mnufilelist(max_index).Caption = mystring
mnufilelist(max_index).Visible = True
End If
Loop
Close #file '关闭文件菜单列表
End Sub
Private Sub MDIForm_Unload(Cancel As Integer)
close_Click
End Sub
Private Sub mnufilelist_Click(Index As Integer)
If mnufilelist(Index).Caption <> "" Then
Static i As Integer
If i < 1 Then i = 1
main_frm.Visible = False
Dim main As New main_frm
main.Caption = mnufilelist(Index).Caption
i = i + 1
main.Picture = LoadPicture(mnufilelist(Index).Caption)
main.Show
End If
End Sub
Private Sub open_Click() '打开带图形的窗体
CommonDialog1.Filter = "所有图形文件" & "|*.jpg; *.bmp ; *.ico ;*.gif;*.cur"
CommonDialog1.ShowOpen
Static i As Integer
If i < 1 Then i = 1
main_frm.Visible = False
Dim main As New main_frm
main.Caption = CommonDialog1.FileName
i = i + 1
main.Picture = LoadPicture(CommonDialog1.FileName)
main.Show
max_index = mnufilelist.Count
Load mnufilelist(max_index)
mnufilelist(max_index).Caption = CommonDialog1.FileName
mnufilelist(max_index).Visible = True
End Sub
Private Sub exit_Click()
close_Click
End
End Sub
2009-12-08
angularjs eclipse 1.2.0
angularjs eclipse 1.2.0 离线安装包,eclipseOxygen.3a Release (4.7.3a)(我使用的版本)->help->Install new software->add->Local. 之后就是下一步就行。
安装完后,会要求重启软件,启动后,在你创建的project上,右键->configur->convert to AngularJS project 进入设置就能用了,具体设置,自己查找
2020-11-06
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅