I'm trying to use ActiveWire and it's usb dll, but I'm having a little trouble.
In the documentation it says...
"If your application needs to open 2 or more devices, create threads, load DLL in each thread, then open device with different devnum."
However, in Windows when I use...
I am just as confused as you are. A good reference would be apmatrix by the collegeboard.
You can get it at:
http://www.collegeboard.com/ap/students/compsci/classes.html
But thing is, that doesn't support *... It does however have a apstring that supports +, but that's still not the same. I...
These should get you started:
Creating Dynamic Images (tutorial):
http://www.phpbuilder.com/columns/rasmus19990124.php3
Image functions (reference):
http://www.php.net/manual/en/ref.image.php
These functions might be important (look up in reference):
imagearc -- Draw a partial ellipse...
Okay..
Click "File"
Select "New"
Under the tab: "Projects"
You'll see a whole bunch of choices. The one you are probably looking for is...
"Win32 Console Application"
Select that one and then enter a "Project Name" (which is the text box...
Ah.. okay for the extension. : ) But as for the continuing errors: You are missing your semi-colons. Those declare the end of a statement and must be there. Unlike BASIC or a few other languages, an end line does not signify the completion of a statement...
tminutes = tseconds/60; //<-- that...
Oh - and btw. You probably should name your files something.cpp... Some compilers may identify the type of "compilation" used by the file's extention.
.c = C
.cpp = C++
cin >> tseconds;
You're missing a semi-colon...
When assigning value to a variable, it's the variable on the left and then value on the right
int x;
x = 12; // will assign x to 12
12 = x; // This does NOT work
So what you want to do is change
tseconds/60 = tminutes;
to
tminutest =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.