Recent Posts

Pages: 1 ... 5 6 7 8 9 [10]
91
Help / Code completion doesn't show up for some wxWidgets
« Last post by Dibo on March 06, 2025, 07:50:38 pm »
Hi,
I'm newbie in CodeBlocks and wxWidgets. Started writting some app and noticed that some wxWidgets doesn't have code completion, just nothing popup after -> or forced by CTRL+SPACE (sometimes I see hint that parsers is still working). So far these are problematic classes: wxListCtrl and wxSearchCtrl. I have code blocks 20.03+svn13046-0.3build2 (standard installation from Linux Mint repo). Tried everything found by google like disabling SmartSense (this result with hint that result is too big and start typing first letter but nothing happens). Also in C++ parser changed one parser per workspace, didn't help neither. Found also similar issue 10 years ago:
https://forums.codeblocks.org/index.php?topic=20175.0

Notice that I have wxWidgets installation in custom folder but CodeBlocks compiler, linker and search directory is configured fine because everything is compiling and debugging works too. Also, code completion for these classes in Visual Studio Code works fine
92
Help / Re: Problem writing in forum
« Last post by stahta01 on March 06, 2025, 12:34:46 am »
FYI: Sometimes it is possible for an invisible character to be the cause of these types of problems.
I have no idea if that has happened on this website or not.
On this website, the few times I have remembered had all been some type of quote.

Tim S.
93
Help / Re: Problem writing in forum
« Last post by Miguel Gimenez on March 05, 2025, 06:11:10 pm »
All reported cases have been caused by non-ASCII characters...
94
Using Code::Blocks / Re: c++ editor
« Last post by rlfrost@aol.com on March 05, 2025, 05:17:05 pm »
I am so grateful.  Thanks for your response.

Larry
95
Help / Re: Problem writing in forum
« Last post by gtafan on March 05, 2025, 03:05:09 pm »
Might be a too long issue; but that has never been reported as a problem.

Tim S.
So have nobody else ever had such problem?
96
Using Code::Blocks / Re: c++ editor
« Last post by Miguel Gimenez on March 05, 2025, 11:51:40 am »
Go to Settings-- Editor -> Source formatter, select the "Padding" tab and check "Insert space padding around operators".
97
Using Code::Blocks / c++ editor
« Last post by rlfrost@aol.com on March 05, 2025, 06:14:56 am »
Hello to the forum.

I am new to code::blocks, but I like the layout quite a lot.  I do have a question about code formatting.  When I use AStyle for formatting, the resulting code looks very nice.
I do wonder, however, if there is a formatting trick to put a space between cin and cout and the associated redirection characters.  I am sloppy with typing, and often omit the space.

Thanks for replies.

Larry
98
Help / Re: Stripping debug info from output tree
« Last post by wtfisgoingoff on March 05, 2025, 02:04:55 am »
Open a command window. And type below what does it return?

Code
where strip

If it fails to find strip then the problem is what I said it was; then, you can learn how to use windows on a windows support site or use google.

SET PATH command is not that hard it should be easy to find info on it.
If you do not know where you installed your compiler; I do not know the answer; you can check the CB toolchain setting and you need to add "bin" to that value.

Tim S.
strip is in PATH.Since no one's mentioned this problem and the relevant files in official Windows nightly build stripped.  So this update.bat must be working,right?
Thanks a lot. I will keep those for %%f in ("%CB_OUTPUT_DIR%*.exe") do strip "%%f"  for now.



99
Help / Re: Problem writing in forum
« Last post by stahta01 on March 04, 2025, 10:55:18 pm »
Might be a too long issue; but that has never been reported as a problem.

Tim S.
100
Help / Re: Stripping debug info from output tree
« Last post by stahta01 on March 04, 2025, 09:06:21 pm »
Open a command window. And type below what does it return?

Code
where strip

If it fails to find strip then the problem is what I said it was; then, you can learn how to use windows on a windows support site or use google.

SET PATH command is not that hard it should be easy to find info on it.
If you do not know where you installed your compiler; I do not know the answer; you can check the CB toolchain setting and you need to add "bin" to that value.

Tim S.
Pages: 1 ... 5 6 7 8 9 [10]