Code::Blocks is a free, open-source, cross-platform and extensible C++ IDE with some support for a few other languages such as D and Fortran.

learn more… | top users | synonyms

2
votes
2answers
40 views

Installing codeBlock

This is my first time of trying to develop with C programming language. I tried installing codeblock on my window 8 operating system, but whenever I run the codeblock program I get this error in the ...
1
vote
4answers
40 views

C++ - Does LoadLibrary() actually link to the library?

I'm using Code::Blocks and hate manually linking DLLs. I found the LoadLibrary() function, and am wondering if it works like a .a or .lib file would. Does this function work like that? If not, what ...
0
votes
1answer
21 views

Allegro 5 & C++ - Creating a fullscreen console?

All right, here's my main goal: get a fullscreen, non-windowed console program (that looks like the DOS operating system when you open it). I've defined ALLEGRO_USE_CONSOLE and all that stuff. Here's ...
0
votes
2answers
31 views

Excel does not recognise my xll file

I created my first xll file with codeblocks & mingw, following this guide http://support.microsoft.com/kb/178474/en-us The problem is that the dll file, renamed as xll file, is not recognised by ...
0
votes
1answer
30 views

Binding Error - Socket programming C

I am trying to Bind a local socket and it is giving me the error. Not sure where the problem is. Any help? int result = WSAStartup(MAKEWORD(2,2), &wsadata); if(result != NO_ERROR) { ...
0
votes
0answers
37 views

Running a binary written in codeblocks through console returns -1

I'm trying to write an application using sockets. I wrote a base. When running through codeblocks it works fine, but when executing through the console ('./seabattle') it only shows the first ...
1
vote
3answers
52 views

C++ - Making the console fullscreen?

All right, I'm sad now. Microsoft has removed the fullscreen console feature from Win7, which is what I'm running. Now I'm looking into things like OpenGL or SDL to see if I can emulate the console, ...
0
votes
0answers
63 views

Unable to do static linkage in Code::Blocks

I just installed SDL and set it up acccordingly to use with the Code::Blocks compiler(performed the necessary steps of linker and compiler settings). I was following this tutorial ...
1
vote
1answer
8 views

Code::Blocks export as pdf in landscape page layout

Is there a way to export to pdf in landscape page layout in Code::Blocks? I can set layout when I print, but there is no such option in "Export" menu.
-1
votes
1answer
76 views

“argc, argv” missing in CodeBlocks [closed]

When I create new project in Code::Blocks in main.c int main ( int argc, char *argv[] ) is missing. Instead, the signature for main.c is built like this: int main(). How I can change this?
1
vote
1answer
13 views

Is it possible to rename a file in CodeBlocks?

Is there a "rename file" option in codeblocks, instead of renaming it through Explorer? I tried right-clicking the tab, but there didn't seem to be one.
0
votes
1answer
20 views

how do I build a single project in code::blocks?

I tried to compile and execute a file outside a project. But when I hit F9, the main file in the active project was built. How do I build and run a single file project? Reading this article it ...
-1
votes
0answers
55 views

Undefined references using OpenGL with Cygwin

I've been trying to work my way through the OpenGL tutorials here, but I've gotten stuck on this bit: #include <iostream> #include <stdlib.h> #include <windows.h> #include ...
0
votes
0answers
52 views

I can compile with SDL1.2 but not with SDL2 (C::B)

I've been learning SDL for a little time, and now I've decided to try out SDL2, mainly to try its hardware acceleration. But the problem is, I can't compile it at all, while the same code compiled ...
0
votes
1answer
19 views

rails sending code block to partial

Rails 3.2.13 & ERB I am trying to get send some link_to items to a partial. I am sending in a title to the partial successfully as below. <%= render :partial =>'form', :locals ...
0
votes
0answers
11 views

Code::Blocks debugger shows some other path which isn't included in the project

I'm trying to use code::blocks debugger. I followed this basic tutorial on how to do it. I also watched two videos on you tube. I was actually trying it on a bigger file which had its declaration ...
0
votes
1answer
21 views

How to bind static library in a dynamic one in Code::Blocks

I have this static(.a/.lib) library which I wanted to bind in my dynamic(.dll). Lets say the static library is libColors.a and the dynamic is SWC.dll. Now I already change the libColors.a project ...
0
votes
4answers
53 views

how to debug c++ runtime errors

I'm using MinGW as compiler and CodeBlocks as IDE. When there's a runtime error, the program simply stop working without any error messages. Is it possible to get conventional error messages like the ...
-1
votes
0answers
21 views

wrong face detection in opencv2.0

I'm using opencv2.0 and codeblocks 12.11 in windows 7 I want to detect faces in a randomly given image instead of capturing image from webcam. I had been trying many face detection codes available in ...
1
vote
3answers
54 views

How to remove ^M ^J characters in linux

I have an external machine which send me results in my Raspberry pi. In my emulator Cutecom I have the results line by line without problems. I use Codeblocks and I wrote my own C application to read ...
2
votes
0answers
45 views

Codeblocks and boost on Windows 7

Attempting to set up CodeBlocks and boost on Windows 7, 64-bit. This is what I've tried... http://wiki.codeblocks.org/index.php?title=BoostWindowsQuickRef Downloaded and Installed CodeBlocks 12.11 ...
0
votes
2answers
40 views

How to comma separate a string read from a file and then saving it in an array

This is the text file that i have created NameOfProduct,Price,Availability. Oil,20$,yes Paint,25$,yes CarWax,35$,no BrakeFluid,50$,yes I want to read this data from the file line by line and then ...
1
vote
1answer
46 views

Getting GLEW to compile in Code::Blocks

I'm wanting to get into and learn OpenGL in C++ and am using Code::Blocks. I was able to get freeglut to work, along with several online examples (as well as the example that ships with CB). However, ...
0
votes
0answers
31 views

gtkglext in Code Blocks on Windows — What am I missing?

I would like to use gtkglext with Code Blocks on my Windows computer. I downloaded gtk-2.0 and gtkglext-1.0. I then added the following directories to my compiler, linker, and resource compiler: ...
0
votes
1answer
42 views

Issue with `int` vs. `double` - why isn't my program working?

I have just started teaching myself C++ after 2+ years of working with MATLAB and wanting something a little more robust. I am currently using code::blocks with MinGW I am trying to get the hang of ...
0
votes
2answers
64 views

Why does the character sequence //(* change the font of the rest of my source file in codeblocks 12.11?

If I add //(* to an un-commented line in my source code, the rest of the font becomes italicized and changes color. The code still seems to compile however. And I cannot find a way to "undo" this ...
-5
votes
0answers
37 views

Assimp OpenGL sample giving me errors [closed]

I added search directories to the compiler and linker. When i build the project ( SimpleOpenGL) it gives me 19 errors each starting with "undefined reference to". I'm working on Windows in the ...
0
votes
0answers
77 views

Undefined references with latest SDL 2.0 build

I've been using an old version of SDL2 for a while now, and never had any problems; but now it looks like things aren't linking properly, and I have no idea why. Here's the entire program: #include ...
0
votes
1answer
41 views

link executable to codeblocks

I have a Code::Blocks project and the final executable is all that matters. It's written in C, but there is also a task that I cannot write in that language, so I'm doing it in Java. My dilema is how ...
0
votes
0answers
56 views

My .exe file has stopped working [closed]

I'm using code blocks for writing a c program and when I compile it its not showing any errors but when I run it it says prog.exe has stopped working (I saved it as prog.c) Can anyone explain me whats ...
0
votes
1answer
22 views

sndfile.h C CodeBlocks Windows 7

I'm working on CodeBlocks 12.11 on windows 7 (64 bit). I'm programming in C and i'm using the library: libsndfile (http://www.mega-nerd.com/libsndfile/api.html) to easily read a .wav and convert it ...
3
votes
2answers
59 views

Error with Structs

I am beginning to teach myself C++ and have come across an error for which I believe is quite simple but not catching it. I created the following header file named EmployeeT.h #ifndef ...
0
votes
1answer
98 views

'vector' in namespace 'std' does not name a type

I am developing a C++ application using CodeBlocks 10.05 on Debian 7.0.0. For some reason, the following code #include <iostream> std::vector< int > delaunayDiv(const std::vector< ...
0
votes
1answer
19 views

Error creating a window in windows “undefined reference to 'WinMain@16'”

#ifndef UNICODE #define UNICODE #endif #include <windows.h> LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE ...
0
votes
1answer
51 views

Preprocessing Failed

I've been trying to compile Ogre for weeks now, alternately trying to use the precompiled version (which was apparently incompatible with the same compiler it was built with), and now I've figured ...
0
votes
1answer
55 views

How to separate buffer results in C

I receive data from a TTL device every 5 seconds. I am using Raspbian(like Debian) because I have a Raspberry Pi. With the usage of Cutecom emulator I receive these: +PARAM: 44 BYTES FROM 0000:0000 ...
1
vote
1answer
37 views

steps to setting up gtk with code blocks?

in windows 7 64bit i keep getting errors i have already downloaded the gtk bundle for windows, extracted it and ran some commands i am trying to go based on this artice ...
1
vote
1answer
51 views

Unexpected primary-expression before '>' token found in CodeBlocks C++

The following codes can compile very well in VC10: #include <vector> #include <iostream> #include <math.h> #define _USE_MATH_DEFINES #include <math.h> #include ...
0
votes
2answers
40 views

Reading/writing variables line per line from/to a text file? (C++)

I want to make a text file as follows: car = "big" couse = "small" quality = 0 apple = "red" And then read from it.. So that string car = "what"; and int quality = 1; change into "big" and 0. I ...
1
vote
2answers
33 views

strcat adds second parameter twice

class Vars{ public: char *appData = getenv("AppData"); string datadir = strcat(appData, "\\Bob"); }; cout << v.datadir; outputs "C:\Users\Adam\AppData\Roaming\Bob\Bob" instead ...
0
votes
0answers
6 views

How to make Ctest failed test play nice with CodeBlocks / disable test case numed inserted by ctest in output

I'm trying to use cmake/ctest to test a small C++ program, and use UnitTest++. I built a dummy test case to try to see how it works. The test look like this: TEST(showSuccess) { CHECK(true); } ...
0
votes
2answers
57 views

GCC Compiler - potential difference between Code Blocks and Mac OSX (XCode)?

Recently, my friend asked me to help him with his coding assignment. I tried compiling his C code to help him through the debugging process, but it didn't compile, and instead returned the following ...
-9
votes
2answers
67 views

Error with classes [closed]

I wrote this code, and it seems to me that it has no errors. But when I want to "build and run" it, error occures. Where is my mistake? I cant recognize it, because in compiler it doesn't occur, but ...
0
votes
0answers
30 views

SFML 2.0 in Codeblocks 12.11 with minGW

I have been trying to make SFML 2.0 libraries work in Codeblocks 12.11 with mingw9 (gcc 4.7.1), but compiling even example code produces many errors including almost every operator overload, every ...
1
vote
0answers
43 views

How to Setup Code::Blocks Using MSVS 2012 Compiler?

I like Code::Blocks IDE, but whenever I compile simple programs with the GNU compiler, my anti-virus thinks it's spyware. In the past, I'm just used Visual Studio 2010 (Which can easily be used) as my ...
0
votes
2answers
80 views

code::blocks default hello world in C terminated with status 1993077897 or -1073741510

After downloading and installing Code::Blocks with MinGW, I just started a new console project on it and it created a main.c file with this content: #include <stdio.h> #include <stdlib.h> ...
0
votes
2answers
45 views

How can codeblocks go from finding header files to not being able to find them, when none of the source code has changed?

Why would a project be able to compile and find the necessary header files, and then I add a line that it cannot find, it does not compile, I remove that line (the code now looks exactly as it did ...
0
votes
1answer
24 views

Paths and exporting

I am using textures whilst within code blocks- and this is the path that I am using: C:\Users\Samuel\Documents\Documents\projects\test\MapCreator\sand.png My question is - once I export my project, ...
0
votes
0answers
31 views

I cannot get GLFW to work with codeblocks

I have tried download the source and then building the libraries as stated here: http://wiki.codeblocks.org/index.php?title=Using_GLFW_with_Code::Blocks When I do that however, it gives me this ...
1
vote
0answers
18 views

How can I enable msys UNIX paths in Code::Blocks (MinGW)?

When I use the MinGW shell, I can use all the UNIX dev paths (such as /usr/local/include and /usr/local/lib) in my GCC commands. However, if I try to tell Code::Blocks to include /usr/local/include, ...

1 2 3 4 5 20