Questions tagged «basic»

1
Libreoffice宏基本:跳到下一段测试大写
我正在尝试写一个宏,我需要跳到下一段,在那里我将测试第一个字母的大小写。我花了几个小时,只发现不准确或难以遵循的文档,我觉得应该很简单。任何方向将不胜感激。到目前为止,我有: SUB FIND_PARAGRAPHS Dim vDescriptor dim Doc as object dim Replace as object dim oCursor dim Proceed as Boolean dim CapTest as String vDescriptor = ThisComponent.createSearchDescriptor() doc = ThisComponent dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") ' test para begin; if capital test previous end oCursor = Doc.Text.createTextCursor() Do oCursor.gotoNextParagraph(false) 'NW CapTest = oCursor.goRight(1, …

1
如何在Windows PE中运行BASIC脚本?
我为计算机硬件业务工作。他们已经通过网络中的文件服务器进行了自动安装,将Windows安装克隆到硬盘驱动器,然后运行Windows PE完成安装。 在Windows PE启动之前,您具有用BASIC编写的自定义菜单。然后,该脚本将按照说明复制Windows并初始化Windows PE。 现在,当Windows PE已经启动时,我需要运行另一个BASIC脚本。我知道Windows文件夹中有一个命令文件,Windows PE启动时该文件正在执行。因此,只有一个执行的命令行窗口。 不幸的是,我没有让BASIC运行。我设法将QBasic包含在Windows PE中,但是当我尝试运行它时,qbasic.exe /run test.BAS它告诉我这不是正确的环境。 我也用Google搜索它,但是找不到任何使BASIC运行的方法。 如何在Windows PE中运行BASIC脚本?
-1 windows-pe  basic 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.