1
1

HotKeys.bas 589 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. Attribute VB_Name = "HotKeys"
  2. Sub Start_SelectSame()
  3. '// 选择相同工具增强版
  4. frmSelectSame.Show 0
  5. End Sub
  6. Sub Start_CQL_FIND()
  7. '// 简单查找
  8. CQL_FIND_UI.Show 0
  9. End Sub
  10. Sub Start_Batch_Replace()
  11. '// 批量替换
  12. Replace_UI.Show 0
  13. End Sub
  14. Sub Start_Arrange()
  15. '// 开始拼版
  16. ArrangeForm.Show 0
  17. End Sub
  18. Sub Start_CutLines()
  19. CutLines.Draw_Lines '// 调用角线
  20. End Sub
  21. Sub Start_UniteOne()
  22. '// 开始拼版
  23. UniteOne.Show 0
  24. End Sub
  25. Sub Start_ContainerSelect()
  26. ContainerForm.Show 0
  27. End Sub
  28. Sub Start_CardsTools()
  29. CardsToolsForm.Show 0
  30. End Sub