Information Systems
Home Products QA Support Contact

QA tips from Omnicode:

Page 1 of 7: 1 2 3 4 5 6 7 > Last
Link error in visual c++ 29 Nov 2011
'_ITERATOR_DEBUG_LEVEL': value '2' doesn't match value '0' or something like it. This usually means that you have a debug library linked to a release
How to create a .lib file from a .dll 10 Oct 2011
Sometimes you only have a dll file and you want a lib file. Here's how to get a lib file from a dll. 1. You need some version
MS Excel is not recalculating 29 Sep 2011
If MS Excel isn't recalculating when you change values, you probably need to set auto recalc. Tools - Options. Go to the Calculation tab and set Calculation to Automatic
Recursive delete in Linux 28 Sep 2011
To recursively delete a file in Linux use something like the following: find . -name file.ext -exec rm {} \; It works by using the find command and then the -exec
Linux version of timeGetTime()? 04 Aug 2011
If you want to use timeGetTime() on Linux, you need to roll your own function. #include <sys/time.h> unsigned int timeGetTime() { struct timeval now; gettimeofday(&now, NULL); return
How do I change windows permissions with a command line? 04 Aug 2011
To change windows permissions with a command line, use the "cacls"
__int64 on Linux 04 Aug 2011
To define __int64 on Linux use something like: #define __int64 long long A 64 bit integer on Linux is defined by long
There are no arguments that depend on a template parameter X 03 Aug 2011
If you get this error while compiling a template "There are no arguments that depend on a template parameter X" You probably need to explicitly use "this" when calling
My Android GPS doesn't work 01 Aug 2011
If your Android GPS doesn't work. There are a number of things that could be wrong. The most likely is that you need to update to a newer
jsp request referrer 24 Jul 2011
To get the url referrer from an HttpServletRequest use the following. String referrer = request.getHeader("referer"); Note that referer is misspelled in the header. In general HttpServletRequest is a
403 errors on Apache 19 Apr 2011
If you get something like "You don't have permission to access / on this server" on Apache there are at least 2 possible issues. 1. Try adding execute privs
Decoding json query string PHP 19 Apr 2011
If you want to decode a query string that's encoded with json in PHP, use something like: $q = json_decode(urldecode($_SERVER[
Javascript Upload iframe 13 Apr 2011
In order to upload a file via javascript without a page refresh and status you need to use an iframe element. An <iframe> is an inline document tag. You
Javascript document form submit is not a function 18 Jan 2011
If you get an error message like "document form submit is not a function" it probably means you have a button named "submit" in your
Trigger example in Mysql 23 Nov 2010
delimiter // CREATE TRIGGER update_header after UPDATE ON invoice_lines FOR EACH ROW BEGIN update invoice_head set total = (total + new.amount) where invoice_head.id = new.header_id; END;//
Copyright 2010, Omnicode Inc. Omnicode is a registered trademark of Omnicode Inc.