安装Visio自动卸载Office的解决办法

最近安装了正版OFFICE,但是后面在安装Visio的过程中发现自动把Office卸载了,这就恼火了,最后发现原因如下: 两者版本不同,比如我电脑安装了Office 2021 而visio版本为2019 pro,就会出现自动卸载的情况。 两者位数不同,比如visio为64位版本,Office为32位……

联想全金属Type-C移动硬盘F309Pro测评

又买硬盘了,主要做数据备份用,除了自己的4T和5T希捷以外,还有几个公司配的,很多USB接口都开始晃动松动无法读写,特别是一款希捷ultra slim portable drive SRD00F1,可以说是非常容易接口松动掉线了,准备购入typeC的新款移动硬盘(非PSSD固态移动),选来选去发现无非以下几款:

  1. 联想F309Pro(便宜,4T才630)
  2. 西部数据(WD)  Type-C My Passport Ultra(4T,850元左右,有评论反应typec接口松动)
  3. 雷孜(lacie) 小金刚 移动硬盘 支持雷电4/Type-C Rugged 三防 mini套装版(价格太贵,4T要1300)

所以最后购入了联想F309Pro(4T)

到手感觉做工还不错,和我其他几款希捷和西数的比做工明显要好很多,沉甸甸的,比希捷4T的要沉不少,毕竟是金属外壳,机器上下两侧应该是塑料的,接口为橘黄色,有个小问题,机器指示灯在硬盘接口侧,如果不放在桌子上其实是看不到亮灯的,相对于希捷西数这些喜欢把接口放在正面的硬盘来说有些不便,所以在运行时不知道工作状态是啥样,如果贸然移除还是很容易损坏的。

联想F309Pro(4T)
联想F309Pro(4T)

Adobe Acrobat Pro DC无法处理页面 因为“页面捕捉”识别服务发生错误 (6)解决办法

最近安装Adobe acrobat Pro DC,发现中文识别过程中出现了错误,报错: 无法处理页面,因为“页面捕捉”识别服务发生错误 (6) 网上查了几种办法: 一种说是重新在控制面板——安装程序里面修复,尝试以后发现没有这个选项…… 第二种办法是说开启平滑,开启以后也没有解决问题……  ……

犀牛7工具列图标全部丢失,图标叉号的解决办法

突然发现犀牛7的图标全部变成了叉号,重装也没用。 犀牛6也适用,解决办法如下: 找到犀牛的  工具——选项——工具列——文件中选一个——还原默认值。 然后犀牛会要求重启程序 重新启动你的工具列图标就回来了 如果还原默认值不行,在文件栏点其他几个选项再还原也可以的。 注意,重装犀牛和清理注册表都没有用……

【PYQT】How to modify the Label text and attributes in PYQT Design by clicking the button

The purpose of this article is to use pyQt Design to create a graphical Python GUI. When a button is clicked, the text content of a TextLabel changes  

Use VS CODE as the compiler, and install PYQT Integration plug-in for graphical.  UI compiles, converts.ui into.py, and any other compiler compiles pyQt in the same way  

How do I solve the problem that the touch screen and display screen of the Windows operating system are inconsistent

Recently, I encountered a problem: when I use a touchscreen display, the touch function is mapped to my large screen, not the secondary screen, but the touchscreen is actually on the secondary screen. What should I do to solve this problem?

First of all, it should be clear that the misaligned touch screen is not a hardware problem, but a software configuration problem, and Windows offers a perfect solution:

Step 1: Open the control panel

windows的触摸屏和显示屏错位:1.打开控制面板
The Windows touch screen and display screen are misaligned: 1. Open the control panel

[Unreal4] Get virtual camera image in unreal engine and import it into UI(UMG) for UI camera real-time display

Objectives: Real-time acquisition of virtual camera lens images in Unreal Engine and display in GUI, similar to left and right rearview mirrors display images in racing games, or real-time acquisition of camera image information display in GUI interface, or real-time capture of camera images in VR.

Test version: 4.26 (universal for most versions)

Knowledge needed:

1. SceneCaptureComponent2D

2. CanvasRender target material (CanvasRenderTarget2D)

3. Image module in UI

Function implementation approach: to obtain a virtual camera image real time display and import the UI, you need a real-time capture images and convert them into dynamic material, real-time images were obtained through the scene capture the component 2d flow, converts the render target material to ordinary material, finally to create the image in the GUI, and give the image for the module material.

【unreal 4】 虚幻引擎中如何让UI(UMG)在窗口实时显示

首先创建好UI文件 打开关卡蓝图 添加如上图节点连接:【事件开始运行】(event begainplay)——【创建控件】(create widget)——【添加到视口】(add to viewport) 在创建控件中选择第一步创建好的UI 运行程序 看看UI是不是已经在窗口上显示了。 注意【创建X……

【unreal4】 虚幻引擎中如何实现蓝图中str的相加输出

当然大家开始学编程的时候都喜欢整个【HELLO WORLD !】,那么在UE4里面如何用数组优雅的输出一个【HELLO WORLD ! 】呢? 答案是Append节点!官方解释该节点的作用是:“将两个字符串连接在一起形成一个新字符串” 用一个小例子讲一下,如上图所示,这个问题可以转化为:如何通过数组……