Recent Posts

Pages: [1] 2 3 4 5 6 ... 10
1
Using Code::Blocks / Re: 25.03 Start Page : Linux vs Windows
« Last post by Geoff13 on Today at 03:35:25 pm »
And now it has increased again, matching the layout in Windows.

Since I didn't update CB this must just be the html viewer making the change.  Perhaps as my number of files/projects to list on the start page grew longer the viewer decided the list column must be wider to reduce the scrolling??

So I guess the solution is "patience" until the number of files grows enough.  Patience is not my strong suit!
2
Plugins development / Re: patch for [debug windows]
« Last post by Miguel Gimenez on Yesterday at 06:01:31 pm »
I have removed the FontInfo stuff in a second commit, so the include should not be necessary, if it is feel free to add it (I currently cannot).
3
Plugins development / Re: patch for [debug windows]
« Last post by ollydbg on Yesterday at 04:40:48 pm »
@srm2000

Next time when you post the code, you should use the code format, which is when you click the "#" in your webpage's editor toolbar.
4
Plugins development / Re: patch for [debug windows]
« Last post by ollydbg on Yesterday at 04:38:40 pm »
One think to mention.

When I try to build the code under wx3.3, I have to add the include file:

Code
#include <wx/fontutil.h>

Otherwise, it will report that the wxNativeFontInfo is not complete. Strange that I haven't see this kinds of build error before.
5
Plugins development / Re: patch for [debug windows]
« Last post by Miguel Gimenez on Yesterday at 11:31:03 am »
I have reverted the commit, as the original version only fixed your use case.

Now the dialogs are using the default control font (usually proportional) multiplied by the scale factor; This should fix the issue for all users.
6
Using Code::Blocks / Re: Can't Get Debugger to Work
« Last post by Wkerry on Yesterday at 10:26:09 am »
Watch as JoeH is mixing compilers and debuggers as:

1) Path has C:\Program Files\CodeBlocks\MinGW\bin
2) Command line has C:\TDM-GCC-64\bin\gdb64.exe

I wonder if the MinGW compiler is 32 bit and the debugger is 64bit.
7
Spam reported to moderator.
8
Using Code::Blocks / Re: Can't Get Debugger to Work
« Last post by blauzahn on Yesterday at 07:06:27 am »
Please try to start the debugger directly from the commandline.
9
General (but related to Code::Blocks) / Re: Welcome Newcomers - PLEASE READ!!!
« Last post by chilli on Yesterday at 05:33:57 am »
<in pinnochio voice>
I'm a real boy!

Hello everyone, I am new and excited to join this community. Glad to be here and learn more about Code::Blocks.
Mathway
10
Using Code::Blocks / Re: Can't Get Debugger to Work
« Last post by JoeH on Yesterday at 05:27:20 am »
I am attaching two files.  The first is the C code for the test program I am using to try out the debugger.  The second is the Code::Blocks output from the debugger window when I try to run the debugger.

#include <stdio.h>

int main(){
    int i,j,n;

    printf("Enter Size of Pattern:");
    scanf("%d",&n);

    for(i=0;i<n;i++){
        for(j=0;j<=i;j++){
            printf("*");
        }
        printf("\n");
    }
    return 0;
}

************************************************************************

Active debugger config: GDB/CDB debugger:Default
Building to ensure sources are up-to-date
Selecting target:
Debug
Adding source dir: E:\wxWidgets328Projects\Debug1\Debug1\
Adding source dir: E:\wxWidgets328Projects\Debug1\Debug1\
Adding file: E:\wxWidgets328Projects\Debug1\Debug1\bin\Debug\Debug1.exe
Changing directory to: E:/wxWidgets328Projects/Debug1/Debug1/.
Set variable: PATH=.;C:\Program Files\CodeBlocks\MinGW\bin;C:\Program Files\CodeBlocks\MinGW;C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Program Files\ThinkPad\Bluetooth Software;C:\Program Files\ThinkPad\Bluetooth Software\syswow64;C:\Program Files (x86)\EaseUS\Todo Backup\bin\x64
Starting debugger: C:\TDM-GCC-64\bin\gdb64.exe -nx -fullname -quiet  -args E:/wxWidgets328Projects/Debug1/Debug1/bin/Debug/Debug1.exe
failed

As I stated in my first post, I can successfully build and execute the debug target of the test code.  When I attempt to start the debugger I get the messages shown above in the debugging window and further execution stops.

Pages: [1] 2 3 4 5 6 ... 10