如何更改 Turbo C 中的文件图标++和 cc3270.dll
几天前我开始使用Borland的Turbo C++。我其实有两个问题。
1.: 如何更改文件图标?如果我创建一个程序(控制台应用程序),它总是有这个蓝色图标(建筑物或类似的东西),并且我在任何地方都找不到它,如何将其更改为默认的“无”图标(就像在 Dev-C++ 中是默认值)。
2.:如果我创建一个控制台应用程序,并且我想在我的虚拟电脑上运行,那么它会说缺少 CC3270.DLL。如果我将其复制到 c:\windows\system32\ 那么它将完美工作。但我想避免这种方式。那么,更改设置或类似内容是否有可能使我的应用程序不需要此文件?这是令人不安的,因为如果我想在没有这个 dll 的计算机上使用我的程序,那么我必须将它复制到每台机器上。
提前致谢!
坎皮
I started to use Borland's Turbo C++ a few days ago. I actually have two questions.
1.: How can i change the file icon?? If i create a program (Console Application), it will always have this blue icon (buildings or something like that on it), and i can't find it anywhere, how to change it to the default "none" icon (which like in Dev-C++ is the default).
2.: If i create a console application, and i want to run on my virtual pc, then it says that the CC3270.DLL is missing. If i copy it to c:\windows\system32\ then it will working perfectly. But i want to avoid this way. So is it possible, to change a setting or something like that, that my application won't need this file? It's disturbing beacuse, if i want to use my program on a computer which hasn't this dll, than i have to copy it there, on every machine.
Thanks in advance!
kampi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1.您可以看到这些链接
2.如果您构建使用动态运行时库,您还必须分发一个或多个运行时库 DLL CC3270.DLL 或 CC3270MT.DLL 以及内存管理器 DLL。
您必须取消选中项目选项中的“使用运行时包构建”选项。
再见。
1.you can see these links
2.If you build using the dynamic Run-Time Library, you will also have to distribute one or more of the Run-Time Library DLLs CC3270.DLL or CC3270MT.DLL and the memory manager DLL.
you must uncheck the option "build with runtime packages" located in the project options.
Bye.