Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~2K People Reached
Favorite Tags
Member Avatar for hapiscrap
Member Avatar for hapiscrap

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.

Member Avatar for hericles
0
90
Member Avatar for hapiscrap
Member Avatar for hapiscrap

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"/> …

Member Avatar for hapiscrap
-1
192
Member Avatar for hapiscrap

[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; …

Member Avatar for Sky Diploma
0
211
Member Avatar for hapiscrap

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++.

Member Avatar for Ancient Dragon
0
169
Member Avatar for hapiscrap

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 …

Member Avatar for Nick Evan
0
121
Member Avatar for hapiscrap

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 …

Member Avatar for Salem
0
326
Member Avatar for hapiscrap

[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 …

Member Avatar for Majestics
0
130
Member Avatar for hapiscrap

[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]

0
59
Member Avatar for hapiscrap

-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)

0
68
Member Avatar for hapiscrap

I have an arachnophilia TXT document which I want to upload to a cyberduck FTP FTP is (www1.esc.edu)

0
65
Member Avatar for hapiscrap

after opening a text file ......... how do i make it a web page? IM so confused about the ftp

Member Avatar for ndeniche
0
84
Member Avatar for hapiscrap

How does someone view the web page from the html code input? Is it the FTP from server?

Member Avatar for Suetan
0
130
Member Avatar for hapiscrap

<!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> …

Member Avatar for FC Jamison
0
104
Member Avatar for hapiscrap

<!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= …

Member Avatar for Tropp
0
105
Member Avatar for hapiscrap

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 >> …

Member Avatar for vijayan121
0
144
Member Avatar for hapiscrap

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 …

Member Avatar for hapiscrap
0
132