Search 5,000,000+ questions and answers.

Frequently Asked Questions

edit] Q: Is it possible to use Visual C++ 6.0 with Code::Blocks?

FAQ - CodeBlocks
Yes. See Integrating Microsoft Visual C 6 with Code::Blocks IDE for a detailed description on using VC++ 6.0 with Code::Blocks.
Related Questions

edit] Q: My project should be compiled with a custom makefile. Is it possible with Code::Blocks?

FAQ - CodeBlocks
a) In "Compiler Settings", under the tab "Other", there's a setting called "Build Method". Choose "Work with makefiles". b) In your project's Properties, you can choose to use a makefile.
Related Questions

edit] Q: What compiler can I use with Code::Blocks?

FAQ - CodeBlocks
a matter of fact it largely depends on the used compiler plugin. The one provided with the default Code::Blocks installation, supports GNU GCC (MinGW/Cygwin), MS Visual C++ Free Toolkit 2003, Borland's C++ Compiler 5.5, DigitalMars Free Compiler., OpenWatcom and Small Device C Compiler (SDCC). A little documentation problem ^^;. The "default compiler" is usually GCC, so when you imported it with "the default compiler", you told it to use GCC.
Related Questions

Will code from Visual Basic 6.0 work in Visual Basic 2008 Express?

Frequently Asked Questions
Visual Basic 2008 Express includes a migration wizard that will help import existing Visual Basic 6.0 projects. You may need to make some manual adjustments to the code you port over, but the migration wizard is a good first step towards moving your code forward.
Related Questions

How do I manage code snippets that I use often in Visual Studio?

General - Windows Forms FAQs
I have code snippets that I use often. How can I manage them so I can easily used them? In Visual Studio, you can store commonly used code snippets on a tab (other than the Clipboard ring) in your Toolbox. You use drag and drop techniques to move the...
Related Questions

Is C++ a superset of C? Can I use a C++ compiler to compile C code?

Infrequently Asked Questions in comp.lang.c
C++ is a superset of something, we're not sure what. You can use a C++ compiler to compile C code, but the results may surprise you.
Related Questions

Can I run Visual Basic 6.0 and Visual Basic .NET on the same machine?

Visual Basic Frequently Asked Questions
J. Henshaw asks "Is it possible to run both VB6 and VB.Net on the same machine,or do I have to remove VB6 to be able to use VB.NET", and the answer is a definite yes. You can run them both on the same machine. Many people, including myself, run VB6 on the same machine as their installation of Visual Basic .NET. If you look at this KB article from Microsoft Support, you will even see that it recommended to run VB6 and VB.NET on the same machine when upgrading projects from one to another.
Related Questions

Can I use TFS's source code control with Visual Studio 6.0 and Visual Studio .NET 2003 clients?

FAQ: Visual Studio Team Foundation Server
Yes. You can use the Visual Studio Team Foundation Server MSSCCI Provider Beta 2, but be sure to disable strong name validation.
Related Questions

How do I use SDL with Visual C++?

Simple DirectMedia Layer
When using Visual C++ I get "fatal error C1083: Cannot open include file: 'windows.h': No such file or directory" When using Visual C++ 5, I get the following error message: SDL.lib : fatal error LNK1106: invalid file or disk full
Related Questions

How do I insert a member variable of ActiveX type to my application, using C++ Visual Studio 6.0?

eXontrol Software's Home Page - Developing advanced .NET, Ac...
The ClassWizard asks 'The ActiveX Control "..." has not been inserted into the project. Developer Studio will do this now, and generate a C++ wrapper class for it', click OK The "Add Member Variable" dialog shows up, and is asking for the name of the variable that needs to be inserted
Related Questions

Q 2c-02: Can I use DCE from C++?

DCE Frequently Asked Questions
Yes. First of all, since you can call C functions from C++ you can access all the DCE services from a C++ program. But that will not give you the benefits of C++. There are several packages that provide a C++ interface to DCE. They different quite a bit in style and approach, so you'll need to consider them carefully in light of your own needs and preferences. Objtran was produced by Citibank, and is available by anonymous ftp at ftp://wilma.cs.brown.edu/pub/Objtran.tar.
Related Questions

How can I use TVideoGrabber with Visual C# .NET?

Video capture component for Delphi, C++ Builder and ActiveX ...
browse the list, and near the end check the "VideoGrabberNET control" component, click "OK" now the TVideoGrabber component appears in the ToolBox, select it and place it on the form (wait a few seconds before the control appears) double click on the button, and put this code in the button1_click event: "axVideoGrabberX1.StartPreview();"
Related Questions

Should I use Visual C++ or Visual Basic?

MFC Visual C++ FAQ version 4.0 Windows Programming OLE VBX O...
Here's a funny analogy I saw posted->) Well, the principle is the same (create interface, add code to respond to events, add code to do something useful). But programming in VB is like riding a kiddy bike, while programming in C++ is like driving a Formula 1 racing car - be prepared for accidents. But seriously, VB is interpreted, MSVC is compiled, therefore MSVC programs should be much faster (if written well).
Related Questions

edit] Do I have to use C?

Fluent FAQ -- CFD-Wiki, the free CFD reference
Yes and no. To hook your UDF into Fluent, you'll probably have to use one of the DEFINE_* macros that Fluent provides, and this is most easily done using C. However, you can write routines that are used in the routines that are defined with the DEFINE_* macros in other languages and then link them together. This requires some knowledge of mixed language programming, Makefiles, the text user interface (TUI), and is not necessarily very portable. An example using Fortran is given in Section 5.4.
Related Questions

Why are there linking errors when I compile 7-Zip or LZMA SDK with Visual C++ 6.0?

Frequently Asked Questions (FAQ)
To compile sources you will need Visual C++ 6.0 or a later version. Some files also require a new Platform SDK from microsoft.com: http://www.microsoft.com/msdownload/platformsdk/sdkupdate/psdk-full.htm or http://www.microsoft.com/msdownload/platformsdk/sdkupdate/ If you are using MSVC, specify the SDK directories at the top of the "Include files" and "Library files" directory lists. These can be found under "Tools / Options / Directories". The latest Platform SDK is not compatible with MSVC6.
Related Questions

Is it better to write code in C# or Visual Basic?

Frequently Asked Questions
You can write code for your Web application in any language supported by the .NET Framework. That includes Visual Basic, C#, J#, JScript, and others. Although the languages have different syntax, they all compile to the same object code. The languages have small differences in how they support different features. For example, C# provides access to unmanaged code, while Visual Basic supports implicit event binding via the Handles clause.
Related Questions

How do I link Haskell with C++ code compiled by Visual Studio?

GHC/FAQ - HaskellWiki
It is assumed that the reader is familiar with the Haskell Foreign function interface (FFI), and is able to compile Haskell programs with GHC and C++ programs with Visual Studio. GHC has two modes of code generation. It either compiles Haskell straight into object code (native mode), or translates Haskell into intermediate C code, and uses a C compiler as backend. The Windows distribution of GHC comes bundled with the GCC compiler, which is used as backend.
Related Questions

Is it possible to invoke GCJ compiled Java code from a C++ application?

The GCJ FAQ - GNU Project - Free Software Foundation (FSF)
What license is used for libgcj? libgcj is distributed under the GPL, with the 'libgcc exception'. This means that linking with libgcj does not by itself cause your program to fall under the GPL. See LIBGCJ_LICENSE in the source tree for more details. How can I contribute to libgcj? You can send simple bug fixes in as patches. Please follow the GCC guidelines for submitting patches. For more complex changes, you must sign copyright over to the Free Software Foundation.
Related Questions

Why Visual C++?

Base One - Frequently Asked Questions about BFC
Visual C++ is Microsoft's premiere Windows programming environment. While there are several interesting, up-and-coming contenders in the client/server marketplace, C++ has proven itself to be the best tool available today for building large-scale, mission-critical applications. Although "Fourth Generation" programming environments offer features for rapid development, the end-results are often disappointing or impractical for large-scale implementations.
Related Questions

How to use mixed c and c++ code?

FAQ on C/C++/Unix by Roseanne Zhang, Java Programmer Certifi...
Change the file extention to cpp first; compile it under g++ or other c++ compiler; fix all the possible compiling errors, mostly, type checking errors, since c++ check type more strictly. If you are lucky, maybe none. Dealing with individual c-functions, you can use the following compiling directives to make your header file be used by both c and c++. #ifdef __cplusplus extern "C" { #endif // list all your c functions here #ifdef __cplusplus } #endif You are in c++ now.
Related Questions

edit] Q: Is it possible to provide security for GC data using CFS, etc.?

FAQ - GnuCash
edit] Q: "Can you please add a password feature?" A: The core developers ? which includes those with long-term experience with well-known names/brands in computer security ? believe that each app should do one thing well, and leave other concerns to other apps. Especially "tricky", critical concerns like data security. In this case, GnuCash would do a poor job of being a good security application.
Related Questions

Q#6.2: How do I set up ORCA/C so that I can use it with GNO?

news.answers/apple2/GNO-faq
A#6.2: === See the CAVEAT in Q#6.1 === There are a few aspects to this, so it has been split into various questions in this section of the FAQ. You should read each of those questions when so directed, below. The following instructions assume that you have already installed your ORCA languages; various files and directories will be moved from their original locations. If you haven't already done so, change the auxtype of (original_orca_directory)/shell/Editor to hex DC00 (see Q#14.1).
Related Questions

I'm using C++ but would prefer to use a different compiler than the one on CEC. Is this possible?

CS 241 Frequently Asked Questions (FAQs)
Sure. However, you will be responsible for making any needed modifications to the provided code. The provided IntervalTimer will not work on other platforms since it makes calls into the Unix operating system. You can replace this by whatever system utility you have to get the time. Then by getting the time before and after the algorithm runs you can take their difference to determine the elapsed time. Just be sure that your procedure is the only process running.
Related Questions

edit] Q: How do I use an USB memory stick to save myconfiguration?

Using FAQ - Knoppix Documentation Wiki
First boot KNOPPIX with the memory stick inserted. Got to the KNOPPIX menu, Configuration, Save Configuration. When asked, choose /dev/sda1. When booting type knoppix myconf=scan home=scan at the boot prompt. This is an issue with the Dell BIOS. Simply pull out the power cord from your computer for a few seconds, and your computer should start again. You can also try passing "apm=off" or "apm=real-mode-poweroff" to the kernel during startup.
Related Questions

What A/C Unit and A/C code should I use to code a payment voucher?

The Finance Office at the University of Bath
To check the validity of this Account Code, go to GL20. Enquire on the appropriate Accounting Unit then use the Accounts command button to show only the valid codes against that Accounting Unit. If the Account Code which is correct is not shown to be valid against your Accounting Unit, you will need to contact the Finance Office who can set up the Account Code for you. For enquiries about setting up Accounting Units and Account Codes contact extension 3238.
Related Questions

Build.04 q. Is there a config file for Visual C++?

FAQ CPU2006
a. Users of Microsoft Visual C++ should please note that the config file windows-ia32-icl.cfg is not suitable for your use, because the Intel compiler has additional switches that the Microsoft compiler does not recognize, and it spells the compiler name differently ("icl" vs. "cl"). A better starting point for you can be found: Note that the above links are to files of type ".cfg", which some browsers may refuse to display.
Related Questions

Got A Question? Ask Our Community!


More Questions >>

© Copyright 2007-2008 QueryCAT
About • Webmasters • Contact