VB编写记事本
Dim abc As String linefromfile = StrConv(InputB(LOF(1), 1), vbUnicode)Text1.Text = linefromfile Close #1 End Sub Private Sub Drive1_Change()Dir1.Path = Drive1.Drive End Sub Private Sub Form_Load()Drive1.Drive = "f:\\"Dir1.Visible = False Drive1.Visible = False Comm...
VB制作记事本的字体代码
CommonDialog1.FontName '设置字体 Text1.font.Size = CommonDialog1.FontSize '设置字号 Text1.font.Bold = CommonDialog1.FontBold '设置是否以粗体显示 Text1.font.Italic = CommonDialog1.FontItalic '设置是否以斜体显示 Text1.FontStrikethru = CommonDialog1.FontStrikethru '设置是否显示删除线...
用VB编写程序向其他程序光标闪动处中输入文字
先在VB中添加一个按钮 在按钮中加入事件 Dim ReturnValue ReturnValue = Shell("NotePad.EXE", 1) ' 在这里打开要运行的程序 AppActivate ReturnValue ' 激活记事本。SendKeys "发送这些字符到记事本", True '
用VB制作一个简单记事本问题!
Private Sub cmd_Open_Click()Dim FileN$, FreeF%, T cmd_dlg.Filter = "文本文件(*.txt)|*.txt"cmd_dlg.CancelError = True On Error GoTo endsub cmd_dlg.ShowOpen FreeF = FreeFile FileN = cmd_dlg.FileName Open FileN For Input As FreeF Line Input #FreeF, T a_txt.Text...
写字板如何用VB编写
sfind End Sub Private Sub open_Click()CD1.Filter = "文本文档(*.txt)|*.txt|RTF文档(*.rtf)|*.rtf|所有文件(*.*)|*.*"CD1.ShowOpen RichTextBox1.Text = ""FileName = CD1.FileName RichTextBox1.LoadFile FileName Me.Caption = "我的记事本:" & FileName End Sub ...
如果想在D盘里新建一个记事本,在VB的代码窗口里应如何写代码
有2种方法,一种是调用fso的流操作,另一种比较简单 dim filename as string filename="d:\\test.text"open filename for output as #1 print #1,"这里写入文件内容"close #1
我用VB写了个记事本的程序,这句代码 Open CommonDialog1.FileName...
Open CommonDialog1.FileName For Output As #1 以输出模式,打开通用对话框中选择的文件,文件号是1 Print #1,Text1 将文本框Text1中的文本,写入到文件号为1的文件中。
如何用VB代码运行CMD里面或者记事本的程序
"\\1.bat"For Output as 1 Print 1,"你的DOS命令"Print 1,"你的DOS命令2"Print 1,"你的DOS命令3"Print 1,"你的DOS命令4"Print 1,"你的DOS命令5"Print 1,"你的DOS命令6"Print 1,"你的DOS命令7"Close 1 Shell App.Path & "\\1.bat"'即可运行了,如果需要VB接受返回值,请留下邮箱,...
如何用vb6.0编写记事本
用VB做一个记事本实在不很复杂,我们完全可以通过向导来很方便地做出来。但本文只打算讨论用手动方法制作记事本,旨在向VB初学者展示:学VB原来是如此容易! 通过阅读、研究本文并按本文所述进行尝试,初学者将学到很多东西,如怎样使用RichText控件来打开和保存文件,怎样制作菜单、工具栏和状态栏以及如何对其编写代码等。
VB记事本的保存代码
Private Function fSave(FilePath As String, fContent As String) As Boolen On Error GoTo saveErr Open FilePath For Output As #1 Print #1, fContent Close #1 fSave = True Exit Function saveErr:fSave = False End Function Private Sub Command1_Click() '保存按钮 Dim result As ...