October 30th, 2012 03:24 AM
Please tell me why the following html does not call the javascript submit_click() function.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<meta name="viewport"...
September 22nd, 2011 03:52 AM
My mistake. I will be using .png but during development am using what I have, namely .gif
September 21st, 2011 11:38 AM
Have a look at http://www.k9t.za.net/odometer/ for a better idea.
September 21st, 2011 10:29 AM
I understand innerHTML instead of innerHtml, thanks.
If I uncomment the alert after creating image value it displays exactly whats needed.
September 21st, 2011 06:41 AM
I have the following code which works fine until I try and display graphics.
Please tell me how I could/should display the odometer in graphics format rather than text.
I have all the necessary...
December 21st, 2009 08:37 AM
I need to produce a program that would process/read a magnetic stripe card within a windows kiosk environment and would prefer doing this in C or C++.
Could someone suggest pointers/recommendations...
October 22nd, 2009 10:09 AM
Name files as arrays not pointers.
October 22nd, 2009 09:04 AM
I have a C++ program running on Windows XP compiled with Visual C++ 6.0 containing the following code
if (remove(NewName) != 0)
{
errmsg = strerror(errno);
printf("Removal Error: %s\n",...
February 12th, 2009 07:59 AM
Would it be possible to write a C or C++ application that would call the Microsoft Speech application passing it a text string that the Speech application would convert to sound and "speak" that...
October 15th, 2008 06:45 AM
Could either of adding support for CLR in the project properties or setting charset to myltibytes instead of unicode be the cause of my problem.
If so please tell me how do I set them.
October 15th, 2008 06:13 AM
As I said in my previous message I have cut my code down to
int _tmain()
{
return EXIT_SUCCESS;
}
and I still get the same error message.
October 15th, 2008 05:58 AM
The code now looks like
#using <mscorlib.dll>
using namespace System;
int _tmain()
{
return EXIT_SUCCESS;
}
October 15th, 2008 05:40 AM
I deleted everything up to and including the last brace and then replaced said last brace and still get the same error message. I have also edited the source in both other editors in the Windows...
October 15th, 2008 04:51 AM
Thanks for the suggestion, Moschops, but that did not change anything. I still get the C1004 error message.
October 15th, 2008 04:12 AM
I am attempting to get my old brain around Visual Studio .Net and have produced the following code but cannot get it to build. .Net returns C1004: unexpected end of file found.
#include...