瑞星卡卡安全论坛技术交流区系统软件 VB来做一个记事本程序,像堆积木一样简单!{推荐}

123   2  /  3  页   跳转

VB来做一个记事本程序,像堆积木一样简单!{推荐}

不懂
gototop
 

呵呵,适合新手学,不过你这程序……
好象也不能支持超过5M的大文件吧?
我随便说说的......
gototop
 

晕啊``怎么感觉VB  编写起来比C还要烦琐啊`!
gototop
 

Private Sub mnuOpen_Click()

CommonDialog1.Filter = "文本文档(*.txt)|*.txt|RTF文档(*.rtf)|*.rtf|所有文件(*.*)|*.*"
CommonDialog1.ShowOpen
RichTextBox1.Text = ""
FileName = CommonDialog1.FileTitle
RichTextBox1.LoadFile CommonDialog1.FileName
Me.Caption = "超级记事本:" & CommonDialog1.FileName
FileType = Right(FileName, Len(FileName) - InStr(FileName, "."))  '不可加一,加一后文件名变为*..*
End Sub

Private Sub mnuSave_Click()

If InStr(CommonDialog1.FileName, ".") <> 0 Then
    CommonDialog1.FileName=Left(CommonDialog1.FileName,InStr(CommonDialog1.FileName, ".") - 1)
End If
CommonDialog1.DefaultExt = FileType
CommonDialog1.Filter = "文本文档(*.txt)|*.txt|RTF文档(*.rtf)|*.rtf|所有文件(*.*)|*.*"
CommonDialog1.ShowSave
FileName = CommonDialog1.FileName

Select Case CommonDialog1.FilterIndex

Case 1
RichTextBox1.SaveFile FileName, rtfText
Case 2
RichTextBox1.SaveFile FileName, rtfRTF
Case 3
  RichTextBox1.SaveFile FileName
End Select

Me.Caption = "超级记事本:" & FileName

End Sub

以上程序是针对打开和保存这两个菜单的修改!本人愚见楼主见笑!
gototop
 

Private Sub mnuNew_Click()
RichTextBox1.Text = ""
FileName = "未命名"
Me.Caption = FileName
FileType = "txt" ‘注意这里不要写成".txt",这样保存完的名称就成了*..*的格式了正常为*.*
End Sub

新建加了一条语句!
gototop
 

不懂VB,程序这东西想学,但不知道如何学起!郁闷中。
gototop
 

我的状态烂是用Label做的.
Label1.Caption = Now()
就可以显示系统时间和日期
gototop
 

hao
gototop
 

很好
gototop
 

很好
gototop
 
123   2  /  3  页   跳转
页面顶部
Powered by Discuz!NT