Recent Posts

Pages: [1] 2 3 4 5 6 ... 10
1
Help / Re: wxsmith crashes while dragging
« Last post by omlk on Yesterday at 05:21:03 pm »
@Miguel Gimenez

Oh, you mentioned such a historical event, in which it was clear that the site was not convenient, but since you touched on this topic, I have the following question:Why is the editor for creating posts so backward and not convenient for users (people), everything in the text shifts somewhere, the "\n\r"("<br />") to a new row is deleted - it's just terrible? and still no one managed to make a highlight for the syntax of c, c++, shell, etc.?
And please explain the word "maybe" in English. speech - ignored? whether it depends on the person reading the word "maybe".And this is the section on the "Help" forum where people communicate, and if I made a mistake in something, please correct me, and don't forbid me from communicating here. If no one will communicate, then why this forum?
2
This board is only for C::B development, you should use "Using Code::Blocks".

Stop the tutorial when arriving to Changing file composition, get familiar with this basic project (modifiy, add code...) and get back to the tutorial when you are more experienced.
3
Help / Re: wxsmith crashes while dragging
« Last post by Miguel Gimenez on Yesterday at 12:41:24 pm »
@wkerry, the posts have little sense from the very beginning. He debuted with a week ban because he refused to change his avatar from something like 640x640 to a reasonable size, finally the moderator had to reduce it.

@rartigas, we have no developers on Mac and the issue does not happen on MSW or on Linux, so it is difficult to fix. I posted the relevant code just in case somebody smarter than me spots something.

If Xaviou can test this issue with the debug version it would be very helpful.
4
Help / Re: wxsmith crashes while dragging
« Last post by rartigas on Yesterday at 09:56:01 am »
Hi,

Is there any idea how this problem I posted can be solved?

I have been using CodeBlocks in Linux Ubuntu for many years, and mostly Qt Creator in the mac enviroment. On Windows I use Visual Studio + Qt Designer for professional use. The other two (linux and Mac) are mostly personal developments. The point is that Qt is being very aggressive with their politics about development environments used for personal purposes or professional purposes if you are the same person. This is the reason I'm adopting CodeBlocks on Mac. But, if problems like the one posted here are not solved, CB could not be a good option to develop under Mac.

I'm not expert in building CB from source. Even I tried and stoped with Hunspell library not installed, which is not true. So I'm more relying on people like you that can provide a binary file already compiled of CB

Thanks
Roger
5
Help / Re: wxsmith crashes while dragging
« Last post by Wkerry on Yesterday at 09:31:13 am »
I wonder if  "o m l k" is now an AI bot as responses and posts are strange and do not make allot of sense for the last few weeks.
6
Using Code::Blocks / Re: Only terminal window came out when I try to run
« Last post by ayyitsrach on Yesterday at 07:33:41 am »
I've tried installing other IDE which is Dev CPP and tried running it. Same thing occured. Then, I code a simple "Hello world" on both IDE, the terminal display it fine. So I'm guessing it has something to do with my OpenGL setting but I couldn't figure out what. Anyone can help?
7
Help / Re: wxsmith crashes while dragging
« Last post by omlk on November 28, 2023, 10:30:11 pm »
I suggest next time you post something, you do more research about the topic, this is not the first time you post such nonsense.

A wxMouseEvent does not propagate, only wxCommandEvent derived events do, so your proposed change does nothing.
Explain why it doesn't make sense, it's not a simple solution and I'm not a newbie, so I'll gladly listen to how it should be right in this case.
8
Help / Re: wxsmith crashes while dragging
« Last post by sodev on November 28, 2023, 10:08:17 pm »
I suggest next time you post something, you do more research about the topic, this is not the first time you post such nonsense.

A wxMouseEvent does not propagate, only wxCommandEvent derived events do, so your proposed change does nothing.
9
Help / Re: wxsmith crashes while dragging
« Last post by omlk on November 28, 2023, 09:45:12 pm »
0xaaaaaaaaaaaaaaaa means that the code has accesed freed memory, but I can not see where this may happen. This is the relevant code:
Code
void wxsItemEditorContent::OnMouse(wxMouseEvent& event)
{
    // Anti-recursion lock
    static bool IsRunning = false;
    if ( IsRunning ) return;
    IsRunning = true;

    ...

    IsRunning = false;
}
EDIT: Cannot reproduce on MSW, may be MacOS-specific.
Maybe the usage int StopPropagation () would be better?

Code
    // Anti-recursion lock
    static int recursion_count = 0;
    static bool IsRunning = false;
    if ( ++recursion_count > 2 ) {
           recursion_count = 0;
           event.StopPropagation();
           return;
    }
    if ( IsRunning ) return;
10
Help / Re: Newbie here, wanting help, please move my post to correct forum if not allowed
« Last post by omlk on November 28, 2023, 09:09:22 pm »
I understand that you have a wonderful troll humor, and you talentedly emphasize all the features as no need to program. All the stars aligned for the giraffe project to be successful. :) ;)
And this is just a masterpiece, why did you replace the text in the logs: for this line, there is no project, there is no compilation target, and the compiler is unknown?
Code
-- Build file: "no target" in "no project" (compiler: unknown)--
Pages: [1] 2 3 4 5 6 ... 10