- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
18 Posted Topics
I am drawing image in GIMP and was wondering if the pixels can be moved without moving the whole layer, I just want to move a set of pixels lower on the layer. | |
I get 2 errors involving body and html saying I may have neglected to close an element? Line 5 column 146. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <title>Joe Gas</title> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <link rel="stylesheet" type="text/css" href="css/screen.css" media="screen" /> </head> <body> <div id="wrapper"/> … | |
[code=cplusplus] #include <iostream> #include <fstream> using namespace std; int main() { int numberofemployees; int employeeid, hoursworked; float hourlyrate, grosspay, taxamount, netpay; const float TAXRATE=0.10; ifstream fin("C:\Dev-CPP\employee.txt"); while (!fin.eof() )} fin >> employeeid >> hoursworked >> hourlyrate; cout<<"EMPLOYEE ID IS: "<<employeeid<<endl; cout<<"THE HOURS WORKED ARE: "<<hoursworked<<endl; cout<<"THE HOURLY RATE IS: "<<hourlyrate<<endl; … | |
In any payroll program, how does the program values (e.g employee id, hours worked,hourly rate) work with an .in file. Does the .in file have to be in a specific folder....I am using Bloodshed Dev C++. | |
C++ program in Bloodshed Dev C++, I was told by the compiler log that I have 1 error and I cant figure it out! [code] #include <iostream.h> int main () { int employeeid; int hoursworked; float hourlyrate, grosspay, taxamount, netpay; float const TAXRATE = 0.10; cout << "Enter The Employee … | |
Bloodshed dev c++, recieved 1 error on line 24 (return 0), here is the error.... Compiler: Default compiler Executing g++.exe... g++.exe "C:\Dev-Cpp\payroll.cpp" -o "C:\Dev-Cpp\payroll.exe" -g3 -I"C:\Dev-Cpp\lib\gcc\mingw32\3.4.2\include" -I"C:\Dev-Cpp\include\c++\3.4.2\backward" -I"C:\Dev-Cpp\include\c++\3.4.2\mingw32" -I"C:\Dev-Cpp\include\c++\3.4.2" -I"C:\Dev-Cpp\include" -L"C:\Dev-Cpp\lib" -g3 C:\Dev-Cpp\payroll.cpp: In function `int main()': C:\Dev-Cpp\payroll.cpp:24: error: expected `;' before "return" here is input........ Execution terminated [code] #include … | |
[code=cplusplus] #include <iostream> main() { int employeeid; int hoursworked; float hourlyrate, grosspay; cout << "ENTER THE EMPLOYEE ID: "; cin >> employeeid; cout << "ENTER THE HOURS WORKED: "; cin >> hoursworked; cout << "ENTER THE HOURLY RATE: "; cin >> hourlyrate; grosspay = hoursworked * hourlyrate; cout << "EMPLOYEE … | |
[B]-appcontroller.m build-[/B] #import "appcontroller.h" @implementation appcontroller - (IBAction)sendbeepid)sender { NSBeep(): } @end 1 error----------------" parse error ":" token" [I]seriously confused; I set up classes and instances and a connection between button and appcontroller on the menu , (am i even making sense?.....arrgh)[/I] | |
-appcontroller.m build- #import "appcontroller.h" @implementation appcontroller - (IBAction)sendbeep:(id)sender { NSBeep(): } @end 1 error----------------" parse error ":" token" seriously confused; I set up classes and instances and a connection between button and appcontroller on the menu , (am i even making sense?.....arrgh) | |
I have an arachnophilia TXT document which I want to upload to a cyberduck FTP FTP is (www1.esc.edu) | |
after opening a text file ......... how do i make it a web page? IM so confused about the ftp | |
How does someone view the web page from the html code input? Is it the FTP from server? | |
<!DOCTYPE html Public “-//w3c//DTD XHTML 1.0 Transitional//EN” http://www.w3.org/TR/xhtml1/DTD/transitional.dtd> <html> <head> <title>The Labyrinth</title> </head> <body> <a name=”top”><h1>The Labyrinth: Old Books/New Readers</h1></a> <blockquote> “Reading is so fun”<br /> - Tom Wolfe, <cite>Books in NYC</cite> </blockquote> <p>The Labyrinth<br /> 151 Varick St.<br /> Manhattan, NY 10013<br /> (212) 555-1234 </p> <a name=”contents”><h2>Contents</h2></a> <ul> … | |
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/transitional.dtd”> <html> <head> <title>The Labyrinth</title> </head> <body> <a name= “top”><h1>The Labyrinth: Old Books/New Readers</h1></a> <blockquote> “Reading is so fun”<br /> - Tom Wolfe, <cite>Books in NYC</cite> </blockquote> <p>The Labyrinth<br /> 151 Varick St.<br /> Manhattan, NY 10013<br /> (212) 555-1234 </p> <a name= … | |
I ran the program in Xcode with Java Tools: [code=cpluslus] #include <iostream> using namespace std; main() { int employeeid; int hoursworked; float hourlyrate, grosspay, taxamount, netpay; float const TAXRATE = 0.10; cout << "ENTER THE EMPLOYEE ID: "; cin >> employeeid; cout << "ENTER THE HOURS WORKED: "; cin >> … | |
i get 3 build errors when i use the numbers, the simple payroll program aint so simple for me im using java tools in x-code [code=cplusplus] #include <iostream> using namespace std; main() { int employeeid; int hoursworked; float hourlyrate, grosspay, taxamount, netpay; float const TAXRATE = 0.10; cout << "ENTER … |
The End.