Launcher.bas 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. Attribute VB_Name = "Launcher"
  2. '// This is free and unencumbered software released into the public domain.
  3. '// For more information, please refer to https://github.com/hongwenjun
  4. '// Attribute VB_Name = "其他工具启动" Other Tools Start 2023.6.11
  5. '// 运行计算器
  6. Public Function START_Calc()
  7. Shell "Calc"
  8. End Function
  9. '// 记事本打开备忘录
  10. Public Function START_Notepad()
  11. cmd_line = "Notepad C:\TSP\备忘录.txt"
  12. Shell cmd_line, vbNormalNoFocus
  13. End Function
  14. '// 打开条码阅读器
  15. Public Function START_Barcode_ImageReader()
  16. cmd_line = "C:\Program Files (x86)\Softek Software\Softek Barcode Toolkit 30 Day Evaluation\bin\ImageReader.exe"
  17. Shell cmd_line, vbNormalNoFocus
  18. End Function
  19. '// 矢量化工具 Vector Magic
  20. Public Function START_Vector_Magic()
  21. cmd_line = "C:\Program Files (x86)\Vector Magic\vmde.exe"
  22. Shell cmd_line, vbNormalNoFocus
  23. End Function
  24. '// waifu2x 图片放大
  25. Public Function START_waifu2x()
  26. cmd_line = "C:\soft\waifu2x-gui-1.2\waifu2x-gui.exe"
  27. Shell cmd_line, vbNormalNoFocus
  28. End Function
  29. '// 开始视频录制
  30. Public Function START_Bandicam()
  31. cmd_line = "C:\Program Files (x86)\Bandicam\BandicamPortable.exe"
  32. Shell cmd_line, vbNormalNoFocus
  33. End Function
  34. '// 找字体 https://www.myfonts.com/pages/whatthefont
  35. Public Function START_whatthefont()
  36. Weburl "https://www.myfonts.com/pages/whatthefont"
  37. End Function
  38. Function Weburl(url As String)
  39. CorelVBA.WebHelp url
  40. End Function