CodeBlocks
CodeBlocks使用过程中遇到的问题及解决方法
海阳宜家电脑
山东省海阳市黄山街5-5号
展开
-
CodeBlocks配置wxWidgets 3.2
CodeBlocks配置wxWidgets原创 2022-10-07 19:10:51 · 1419 阅读 · 0 评论 -
CodeBlocks启动提示Spellchecker错误
Thesaurus filesThe files for the thesaurus are also available from OOo, like the dictionaries. Copy the thesaurus files (th_*.datandth_*.idx) to the directory configured in 'Path settings, Thesauri' (see above) and rename them to match the name of the ..原创 2021-06-21 21:46:37 · 474 阅读 · 0 评论 -
CodeBlocks控制台使用wxPuts输出中文错误
#include <wx/string.h>#include <wx/crt.h>#include <stdio.h>#include <iostream>#include <wx/utils.h>using namespace std;int main(int argc,char **argv){ wxString str1 = wxT("bg12中文ab"); wxString str2 = wxT("os"...原创 2021-06-18 22:43:12 · 404 阅读 · 0 评论 -
codeblocks建立console工程时编译自定义头文件出现no such file or directory问题
系统自带的文件用 #include<xxx.h>自己定义的文件用 #include "xxx.h"长久不用C++,基础知识都犯错误了,罪过罪过。原创 2021-05-26 09:59:30 · 302 阅读 · 0 评论 -
CodeBlocks快捷键
Ctrl J : 代码自动完成Alt + 鼠标左键 : 列选择Ctrl D : 复制当前行Altr G :打开文件选择列表Ctrl B : 设置或删除标签Alt-PgUp: 跳到上一个书签Alt-PgDn : 跳到下一个书签原创 2021-05-25 17:22:21 · 628 阅读 · 0 评论 -
CodeBlocks2021切换源文件与头文件
在打开的文件标签上,点击鼠标右键,单击选择 swap header/source原创 2021-05-25 17:14:21 · 1280 阅读 · 0 评论 -
CodeBlocks2021 could not auto-detect installion path of “gnu gcc Compiler“
MinGW编译器啥的文件名需要更改把所有以x86_64-w64-mingw32开的文件,把x86_64-w64-mingw32去掉就行了例如:x86_64-w64-mingw32-c++.exe改成mingw32-c++.exe其它的文件都像这样改就可以了。原创 2021-05-23 09:26:22 · 384 阅读 · 0 评论 -
CodeBlocks修改控件图标大小
Settings -> Editor -> wxSmith settingsPalette icon size 选择 32x32原创 2021-05-22 20:36:56 · 2076 阅读 · 0 评论 -
CodeBlocks 20.03 配置 wxWidgets 3.1.4
一、CodeBlocks 20.031.去CodeBlocks官网下载codeblocks-20.03mingw-nosetup.zip,2.解压到d盘,并把目录改为codeblocks2003二、.wxWidgets 3.1.41.去wxWidgets官网下载wxWidgets-3.1.4-headers.7z 与wxMSW-3.1.4_gcc810_x64_Dev.7z 这2个文件。2.在d:\codeblocks2003目录里,新建一个wxWidgets目录,3.把w...原创 2020-09-23 19:26:05 · 1595 阅读 · 1 评论