English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Computers & Internet - 19 December 2007

[Selected]: All categories Computers & Internet

Computer Networking · Hardware · Internet · Other - Computers · Programming & Design · Security · Software

I have comcast high speed internet.

2007-12-19 03:58:39 · 4 answers · asked by Ryan 2 in Computer Networking

2007-12-19 03:54:49 · 20 answers · asked by om_chessking 2 in Software

This picture is located in the CSS.

Is this a difficult thing to do?

2007-12-19 03:54:03 · 3 answers · asked by Anonymous in Programming & Design

Everytime I go to webpages I get little x's were there should be images... is there a setting I can change to see the picture?

2007-12-19 03:53:00 · 2 answers · asked by Anonymous in Programming & Design

i want to use linux and get rid of microsoft windows xp.

2007-12-19 03:49:14 · 5 answers · asked by AH 1 in Other - Computers

Following is a portion of a macro I created that isn't quite correct:

Sheets("Blank Sheet").Select
Sheets("Blank Sheet").Copy After:=Sheets(4)

This macro will copy the sheet to a specific location. After so many sheets, it will still copy the sheet to that same specific location.

I need the macro to always copy the sheet to the very end of the workbook, no matter how many sheets there are. What is the syntax for this?

2007-12-19 03:48:41 · 2 answers · asked by K9 Guy 2 in Software

CREATE TABLE SaleProperty
(PropertyCode VARCHAR (8) NOT NULL,
Area VARCHAR (20) NOT NULL,
Address VARCHAR (20) NOT NULL,
NoOfBedrooms NUMBER NOT NULL,
NoOfBathrooms NUMBER NOT NULL,
NoOfReceptionRooms NUMBER NOT NULL,
Garage BOOLEAN NOT NULL,
PropertyType VARCHAR (20) NOT NULL,
FreeholdLeasehold VARCHAR (20) NOT NULL,
Price CURRENCY NOT NULL,
PropertyStatus VARCHAR (20) NOT NULL,
DateAdvertised DATE NOT NULL,
CONSTRAINT SaleProperty_PropertyCode_pk PRIMARY KEY (PropertyCode));

..........


I want to the 'Garage' field to be a yes/no field, is this possible, and of so how.... Could you also tell me if my currency field is correct or not...??

2007-12-19 03:46:08 · 2 answers · asked by Anonymous in Programming & Design

I am trying to get MYSQL database from past three days, every day I get one, install it, create table, insert data and next day when I login, it don't allow me and I have to install it,create table ..etc etc

Please give me a link to download it, I know its a free ware, please provide a link which will work everyday.....lol , without re-installing

Please please help, I need it for my project

2007-12-19 03:46:08 · 3 answers · asked by teatimetrivia.blogspot.com 2 in Programming & Design

i need a program dont tell me practice cause i have and all i know how to do is type fast not able to type without lloking at the keyboard plz help

2007-12-19 03:41:26 · 29 answers · asked by Anonymous in Software

7

When i delete tempory internet files my computor said it had 1256 MB but when i went to install something it told me i needed 256 MB RAM? Is there anyway i can get more space?

2007-12-19 03:38:16 · 6 answers · asked by Anonymous in Desktops

files and folders, browsing histories etc. I've run spy bot and found nothing. I've even deleted programs that I don't need. Is there anything else that I can do for free? PLEASE HELP!!!!

2007-12-19 03:31:42 · 12 answers · asked by Anonymous in Software

The tutorials tell me to put the blue cable in the router and in the modem in the whole that sais internet. But it wont fit. Please help.

2007-12-19 03:22:24 · 2 answers · asked by jeremystthomas 2 in Other - Computers

Hi there,

I need to download a song onto my ipod that's not on Itunes, and so I need to download the video off of youtube.


HOW DO I DO THIS FOR FREE?

Before I use a certain site I'm going to need a few conformations that the site is safe, just becuase ^-^

Thanks alot.

-Me-

2007-12-19 03:13:35 · 8 answers · asked by Llama 2 in YouTube

2007-12-19 03:08:22 · 2 answers · asked by karthik 1 in Software

It has to be small and light. I can pay around £500. I'd rather go to a shop and buy than going online cos I wanna feel it before I buy it. Do you have any model in mind and a place I can buy it in London?

2007-12-19 03:01:50 · 3 answers · asked by Anonymous in Laptops & Notebooks

I need this software ASAP. I can pay for it... but cant find a website thats selling it (downloads only, I cant wait for a package.)

2007-12-19 02:54:38 · 3 answers · asked by Anonymous in Software

do you think myspace or facebook using 100Mbps connection.

2007-12-19 02:53:19 · 7 answers · asked by ramiz a 1 in Computer Networking

I would like to have all in one single powerpoint file. The music, and the show.

2007-12-19 02:44:04 · 3 answers · asked by lantosszabi 2 in Software

back up or are they gone forever? Thanks. Nancy

2007-12-19 02:43:05 · 10 answers · asked by Nancy E 2 in Other - Computers

I coded a script, Currently I can add and delete items to the database but I cannot edit the data. Here's my 3 paged script :

Christmasswishlist.java

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.sql.*;

/**
* Servlet implementation class for Servlet: ChristmasWishlist
*
*/
public class ChristmasWishlist extends javax.servlet.http.HttpServlet implements
javax.servlet.Servlet
{
static final long serialVersionUID = 1L;

/*
* Connect to the database
*/

/*
* (non-Java-doc)
*
* @see javax.servlet.http.HttpServlet#HttpServlet()
*/
public ChristmasWishlist()
{
super();
}

/*
* (non-Java-doc)
*
* @see javax.servlet.http.HttpServlet#doGet(HttpServletRequest request,
* HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException
{
// TODO Auto-generated method stub
process(request, response);
}

/*
* (non-Java-doc)
*
* @see javax.servlet.http.HttpServlet#doPost(HttpServletRequest request,
* HttpServletResponse response)
*/
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException
{
// TODO Auto-generated method stub
process(request, response);
}

protected void process(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException
{
response.setContentType("text/html");
java.io.PrintWriter out = response.getWriter();
out.println("List of All Your Wishes");

//check if you are getting the right values, comment out once the program is working
//line below will work only for java 5 up
java.util.Enumeration e = request.getParameterNames();
while (e.hasMoreElements())
{
String gift = e.nextElement().toString();
out.println("
" + gift + " - " + request.getParameter(gift));
}

if (request.getParameter("submit") != null)
{
if (!request.getParameter("submit").isEmpty())
{
if (request.getParameter("submit").equals("Add"))
{
if (!request.getParameter("gift").isEmpty())
{
out.println(addChristmasWishlist(request
.getParameter("gift")));
}
else
{
out.println("

Nothing to do");
}
}

else if(request.getParameter("submit").equals("Delete"))
{
delChristmasWishlist(Integer.parseInt(request.getParameter("id")));
}
else if(request.getParameter("submit").equals("Delete"))
{
out.println("

Nothing to do");
}
}

} else
{
out.println("

empty");
}
out.println("

Add again");

ResultSet rst = null;
try
{
rst = viewChristmasWishlist();
int count = 1;
out.println("

");
while(rst.next())
{
out.println("" +
"");
count++;
}
out.println("
ChristmasWishlist
"+count+"."+rst.getString("gift")+"Edit"+
"
Delete
");
}
catch(Exception e2)
{

}

out.println("");

}

public String addChristmasWishlist(String wish)
{

try
{
ConnectionManager con = new ConnectionManager();
Statement stmt = con.logOn().createStatement();
String msg = "";
String sql = "insert into wishes set gift='" + wish.replaceAll("\'", "\\\'") + "'";
if (stmt.execute(sql))
{
msg = "Insert failed";
}
else
{
msg = "Added successfully";
}
con.logOff();
return msg;

}
catch (SQLException e)
{

return "Add failed. SQL error " + e.getMessage();
}
catch (java.lang.NullPointerException ne)
{

return "Null error: " + ne.getMessage();
}

}


public String delChristmasWishlist(int id)
{

try
{
ConnectionManager con = new ConnectionManager();
Statement stmt = con.logOn().createStatement();
String msg = "";
String sql = "delete from wishes where id="+id;
if (stmt.execute(sql))
{
msg = "Delete failed";
} else
{
msg = "Delete successfully";
}
con.logOff();
return msg;

} catch (SQLException e)
{

return "Add failed. SQL error " + e.getMessage();
} catch (java.lang.NullPointerException ne)
{

return "

Null error: " + ne.getMessage();
}



}

public String editChristmasWishlist(String wish)
{

try
{
ConnectionManager con = new ConnectionManager();
Statement stmt = con.logOn().createStatement();
String msg = "";
String sql = "update from wishes where gift="+wish;
if (stmt.execute(sql))
{
msg = "update failed";
} else
{
msg = "update successfully";
}
con.logOff();
return msg;

} catch (SQLException e)
{

return "Add failed. SQL error " + e.getMessage();
} catch (java.lang.NullPointerException ne)
{

return "

Null error: " + ne.getMessage();
}



}

public ResultSet viewChristmasWishlist()
{

ResultSet rst = null;
try
{
ConnectionManager con = new ConnectionManager();
Statement stmt = con.logOn().createStatement();
String msg = "";

String sql = "select * from wishes";
rst = stmt.executeQuery(sql);


} catch (SQLException e)
{


} catch (java.lang.NullPointerException ne)
{


}
return rst;
}



Connectionmanager.java

import java.sql.Connection;
import java.sql.DriverManager;

public class ConnectionManager {

protected Connection con;
protected String driver = "com.mysql.jdbc.Driver";
String url = "jdbc:mysql://localhost:3306/";
String database = "WishList";
String user = "root";
String password = "";

/** Creates a new instance of ConnectionManager */
public ConnectionManager() {

}
public Connection logOn(){
try {
Class.forName(driver).newInstance();
con = DriverManager.getConnection(url+database,user,password);

}
catch(Exception e){
System.out.print(e.getMessage());
}
return con;

}

public void logOff(){
try {
con.close();
}
catch(Exception e){
e.printStackTrace();
}
}

Wish.html





Christmas Wishes


Place Your Christmas Wishes Here







Wish:
Amount:



2007-12-19 02:37:30 · 1 answers · asked by Patrick M 1 in Programming & Design

Is there any way once all 3 Licence's are used on three different computers to move one to another computer?

2007-12-19 02:34:44 · 1 answers · asked by jimmy 2 in Software

How to build one? Is it as simple as getting 9 wire phone cable, connecting the correct conectors at the ends? I am needing a cable that is 150 feet long, but have not found one on the internet yet. Any help would be appreciated.

2007-12-19 02:34:44 · 6 answers · asked by pocbr 3 in Computer Networking

My present antivirus programe fails to delete a detected virus. so I plan to install one more antivirus programe in my system.I fear it may cause problems as the two antivirus programes may clash.I expect advice from experts in the field

2007-12-19 02:33:30 · 7 answers · asked by madhu n 1 in Security

How can I set up a lan network for online gaming if I am "borrowing" wireless from a neighbor? I have a network cable to connect game console to computer. Have tried without success. Can this be done?

2007-12-19 02:31:47 · 5 answers · asked by abluheron1 4 in Computer Networking

i have an upgrade for windows xp but if i upgrade it from the desktop will all of my programs and files stay where they are because i have impotant college documents on it.(computer)

2007-12-19 02:27:14 · 14 answers · asked by irish dubliner 2 in Software

Ok this what happend i dowloaded Ares program then photoshop on this share website but i wanted to open with a wizip the ssystem told me that i need winzip to open the file so downloaded winzip but i couldnt opne photoshop so i try to remove winzip from install and remove programs but i could it showed 1 error a forgot the code so iwent online to look for that error again i forgot the error code and the website name but i followed the tips that i found in this website and iu forgot the tips but now my pc its everithing wrong the icons are blank and i can't use any icon on the screen also on the star menu it shows 14 submenus but they dont' worl and the rest its all blanck the onlu thin is workin is my email msn but no the IE please help

2007-12-19 02:27:08 · 2 answers · asked by pollo 2 in Software

I have two different spreadsheets that I need to somewhat merge data from one into the other. Both spreadsheets should have identical 'product description' columns that should be able to match the two spreadsheets together. How would I go about telling Excel to match the data in one column on spreadsheet A to the data in one column on spreadsheet B?

2007-12-19 02:26:43 · 3 answers · asked by thegroceries 2 in Software

I have an HP laptop (Vista) connected to a wireless network (DSL connection) and a Epson CX5000 printer. Print server or adapter?

2007-12-19 02:24:56 · 5 answers · asked by Amy W 1 in Printers

Currently I have Norton but want to change to McAfee. Do I need to uninstall Norton before I intall McAfee? I attempted to intstall my new ware but kept getting "The program you are trying to run is not compatible with Norton". My Norton acct expires soon. What should I do?

2007-12-19 02:17:10 · 4 answers · asked by Candy 4 in Security

2007-12-19 02:13:22 · 7 answers · asked by Anonymous in Other - Computers

fedest.com, questions and answers