Search 5,000,000+ questions and answers.

Frequently Asked Questions

edit] Q: How do I use both Debug and Release builds of wx libraries?

FAQ - CodeBlocks
Using these C::B custom varibles WX_SUFFIX="" // ANSI Release WX_SUFFIX="d" // ANSI Debug WX_SUFFIX="u" // Unicode Release WX_SUFFIX="ud" // Unicode debug Example minGW build command for "Unicode debug" 2.8.0 RC3 mingw32-make -f makefile.gcc VENDOR=rc3 CFG=rc3 USE_XRC=1 SHARED=1 MONOLITHIC=1 BUILD=debug UNICODE=1 VENDOR=" just puts rc3 in the DLL name; "CFG=" sets which folder the DLL is placed in.
Related Questions

edit] Q: Something bad happened; how can I help debug?

FAQ - GnuCash
In order to get more detail, open a Terminal from your system menu, and start gnucash at the prompt; this is almost always done by typing simply "gnucash" at the prompt. Save the detail emitted to the terminal (if any), as well as the contents of the /tmp/gnucash.trace file. edit] Q: I think I found a bug. How do I report it? A: First of all, try to verify that it is indeed a bug and that it has not been reported before.
Related Questions

edit] Should I use nightly builds or Subversion?

Gallery2:FAQ - Gallery Codex
That is up to you, I would suggest Subversion if you are comfortable working with it or don't mind learning. Once you get the original source from Subversion, updating is as simple as going to your G2 directory and typing "svn update". Subversion keeps a second copy of every file so commands like "svn status" and "svn diff" can run quickly, without going over the network. This does double the space required.
Related Questions

Should I use the Debug or Release runtimes? What's the difference?

Forum FAQ - GameDev.Net Discussion Forums
makes sure that certain things (like the backbuffer) get cleared to garbage values so that you're forced to ensure you're using them correctly, and When you're developing with DirectX, always, always, always use the debug runtime. However, you may want to switch back to the Release runtime when you use the machine for other things (i.e. playing games), and you should always test your app against the Release runtime before releasing it.
Related Questions

How can I get the system date in JSP? Q: How should I debug JSP?

Code Style: Java Server Pages frequently asked questions (FA...
As far as possible you should avoid debugging JSP by keeping script elements as simple as possible and use tag libraries for more complex processing. Ideally, JSP should be written so that non-programmers can write and edit the contents, so should not contain complex programming structures that are prone to bugs. Tag libraries move complex program components to standard Java classes, which can be tested and debugged outside of the servlet container.
Related Questions

edit] How to set/use Gallery in debug mode?

Gallery2:FAQ - Gallery Codex
Then try again. This time, you'll get quite a lot of debug output when you get the error. Look towards the bottom of the debug output and scan backwards for anything that looks like an error, then report that in the support forums. Usually that will give us enough information to work with. If you can't understand what you're seeing, err on the side of posting more info.
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

Who may use the libraries?

Washington State University Libraries FAQ
Anyone may use the libraries on-site. Some services are available only to the students, staff and faculty of Washington State University.
Related Questions

edit] Q: Where are the libraries for the OpenGL, Ogre3D, SDL, QT, wxWidgets etc. projects?

FAQ - CodeBlocks
They're not bundled. The templates were provided for your convenience, but you need to download the libraries on your own. In common terms, "batteries not included" :)
Related Questions

edit] Q: I can't compile a multithreaded app with VC Toolkit! Where are the libraries?

FAQ - CodeBlocks
Your problem doesn't come from CodeBlocks. It exists, because the free VC toolkit (VCTK) doesn't provide all the libraries and tools which are coming with Visual C++ (VC) which isn't free, unfortunately. Paths: (VCT3) Visual C++ Toolkit 2003 - C:\Program Files\Microsoft Visual C++ Toolkit 2003\lib (PSDK) Platform SDK - C:\Program Files\Microsoft Platform SDK\Lib (NSDK) .NET 1.1 SDK - C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\lib C runtime libs: LIBC.
Related Questions

Top Q: Who builds the Adeptias PC?

Adeptias Computers FAQ
The Adeptias PC is built by CMS, one of the UK's major distributors of computer components. CMS builds PCs for many specialty purposes and directly supports the warranty on every PC.
Related Questions

Q Who designs and builds my store?

paperaffair.com
A Paper Affair Franchise, Inc. will provide the franchisee with architectural assistance, wall elevations, design criteria, and a merchandising floor plan. Franchisee will use their architect and building contractor to build their store to the agreed upon specifications.
Related Questions

Can I debug dynamically linked shared libraries?

BSDi - ELF FAQ for BSD/OS 4.x, version 1.3
Gdb can almost always handle code and data in shared libraries and shared objects. We have experienced a few odd situations in which gdb gets confused about the number of breakpoints that it needs to look for when loading a shared object with dlopen(3). When this bug crops up, you can normally work around it by interrupting the program and running it again under gdb. For example: $ gdb program [...] (gdb) run [... program calls dlopen(3) ...] [... program hangs ..
Related Questions

How should I debug JSP? Q: How can I control page output for admins?

Code Style: Java Server Pages frequently asked questions (FA...
One approach to govern user levels with JSP pages is to assign a user object reference to each person's session. The simple example below declares a User interface with concrete StandardUser and AdminUser classes. The User interface only has one method, a boolean isAdmin() method that you can check before outputting key page contents.
Related Questions

How can I build debug applications with non-debug libraries?

Support - Frequently Asked Questions - The ACE ORB
During development, you will normally want to build your application code with debugging enabled. However, you may be using non-debug versions of the ACE, TAO, and CIAO libraries. Depending upon your platform and development environment, special care must be taken to make sure your debug-enabled application can link against non-debug ACE, TAO, and CIAO libraries.
Related Questions

edit] How do I use CMake to generate SWIG wrapper libraries?

CMake FAQ - KitwarePublic
CMake version 2 includes a module that supports the generation of SWIG wrapper libraries. The SWIG package defines the following macros: SWIG_ADD_MODULE and SWIG_LINK_LIBRARIES.
Related Questions

edit] Q. How do I use scripts?

CHDK/FAQ - Scratchpad Wiki Labs - Free wikis from Wikia
CHDK allows you to automate your camera by running "scripts", small and simple programs written in a short-hand version of BASIC. You can find some pre-made scripts like bracketing, intervalometer etc. here or write your own script by using the scripting language. To use a script, you have to do this: Load the script (main menu>scripting parameters>load script from file) and adjust script parameters as needed To run the script, press the shutter button while in <alt> mode.
Related Questions

Should I use nightly builds or CVS?

Gallery2:FAQ - Gallery Codex
That is up to you, I would suggest CVS if you are comfortable working with it or don't mind learning. Once you get the original source from CVS, updating is as simple as going to your G2 directory and typing "cvs -z3 update -Pd" (-P prunes empty dirs and -d deletes files that were removed). There are a couple other options you can use if you wish. # cd /path/to/gallery2/ # cvs -z3 update -Pd
Related Questions

Who builds the templates you use?

Frequently Asked Questions
Seasoned web professionals who have been building optimized, well-formed html pages since the mid 1990's.
Related Questions

Q#11.4: How can I sort my libraries (or other files)?

news.answers/apple2/GNO-faq
A#11.4: This isn't really a GNO question, but it's included here because of its relevance to Q#11.3 and the section on "Installing GNO with ORCA". For ProDOS Partitions: There are various ways to do this. One of the easiest is to use ProSEL or another utility which sorts directory entries (such as the ORCA/Shell compress command -- don't confuse this with the GNO compress(1) command).
Related Questions

edit] Q: Where Is Information on the Current OpenNMS Release?

FAQ-About - OpenNMS
Please note that we now keep up-to-date release notes on the web site and in the latest RPM packages, they may have information about installation on your particular distribution, or other last-minute things that went into the release. Before asking questions on the list, PLEASE check the release notes and this FAQ thoroughly for information pertaining to your issue.
Related Questions

the libraries. Why?

news.answers/apple2/GNO-faq
A#11.7: Just because a function is declared, that doesn't necessarily mean that it's been implemented. However, it is useful to keep those declarations in the system header files. Not only does it minimize namespace conflicts with user code (application programmers are less likely to use function names that conflict with system header files), but it ensures that the interface is defined for anyone who wishes to contribute an implementation.
Related Questions

How can I find out what other libraries own?

Library IMC FAQs
Go into HTC's Online Catalog (from the library main page, click on Find Books or Other Materials. Then click on HTC's Online Catalog) At the top of the screen, you will find that the library choice is set at Hennepin Tech Lib. Click on the arrow to the right of the Select a Library Catalog box, and drag down to highlight All MnPALS Libraries. Type your search request into the search box.
Related Questions

How do I use Magnifier software on Windows PCs in the Libraries?

Ohio State University Libraries: Frequently Asked Questions
Enlarge screen text with the Windows Operating System Magnifier available on all public and staff computers in the University Libraries. See Magnifer instructions.
Related Questions

FAQs - Mercy College Libraries
Anyone can search the catalog from home or make use of anything we have inside the library. Current Mercy students, staff and faculty can search the databases from home, and they can borrow the books. Students should obtain a campus ID card, but they may borrow anyway -- as soon as they appear on the database of current students. Alumni cannot search our databases from home.
Related Questions

Which other libraries may I use?

NU Law Library: First Year FAQ's
Members of the law school community have access to all of the resources of the Snell library, which serves the general university community. The Law Library and Snell library use the same online library catalog, known as NuCat. The library is a member of NELLCO (New England Law Libraries Consortium), the Boston Library Consortium and the Boston Regional Library System. As a member of the Northeastern community, you have library privileges to use the collections at other consortium libraries.
Related Questions

edit] Q: Is there a database backend?

FAQ - GnuCash
edit] Q: Is the Postgres DB / SQL backend supported? A: A postgres/SQL backend was introduced in the 1.6 code line, but it never supported any features introduced since the 1.6 release, especially the Business features and Scheduled Transactions. Even so, modulo those features, the postgres backend should still basically function, even in the 2.2 release. However, since the 2.
Related Questions

Got A Question? Ask Our Community!


More Questions >>

© Copyright 2007-2008 QueryCAT
About • Webmasters • Contact