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

Programming & Design - December 2006

[Selected]: All categories Computers & Internet Programming & Design

Tried to use the command of sudo pppconf and enter my ip address & phone number but still no access. I'm using UBUNTU 6.06.
Then use sudo pppoeconf and again no connection. HELP!!!

2006-12-13 13:14:43 · 1 answers · asked by Booooo 2

Or where can I have a professional do it?

2006-12-13 13:01:35 · 5 answers · asked by ltel08 1

I want it to be emailed to h.c.bigdog@gmail.com when the user clicks "Submit".
Here is a link to the page: http://www.hcharles.com/special/freeplan.html


Thanks much

2006-12-13 12:58:11 · 3 answers · asked by hCharlesLive 2

I am trying to animate a movie, and I want to use real celebrity voices but because I can only get tracks that they talk on, I can't use a training feature. I'm trying to find a voice program that can recongnize a voice without training and then, that can convert it to a text-to-speech voice, that way, I can make the animated celebrities sound like the real thing but at the same time, I can make them say what I want them to.

2006-12-13 12:34:30 · 1 answers · asked by black_lightning 3

Looking for the basic html (I guess?) of a myspace profile to test layouts on Dreamweaver. This could all be impossible but, hey, that's why I'm asking a question.

2006-12-13 12:15:14 · 3 answers · asked by George 1

Ive developed a project with Visual Studio 2005 Standard Edition. When I publish it, then write it to a CD and try to run it on a different machine, it causes problems. How do I solve this?

2006-12-13 11:56:38 · 2 answers · asked by stultz_is 2

Does anyone know which web host lets us upload a template from our computer or which host has the best templates? Thanks!

2006-12-13 11:55:24 · 1 answers · asked by Lee H 1

I click a link and bam- I am hanging, hanging...redirecting to some salesly web page! I installed IE7 and it is still happening. I have run every cleaner I can think of and cleared cache, temp. internet, etc. My system restore only let me go back 1 day which did not help. WHAT CAN I DO?

2006-12-13 11:53:45 · 4 answers · asked by Dave 5

2006-12-13 11:38:38 · 10 answers · asked by Anonymous

2006-12-13 10:51:28 · 4 answers · asked by Mark L 1

I use microsoft outlook XP with word as the editor, when I copy an image from another email and paste it into the new message it is blank but has the frame for an image. but the text is still there and spaced for an image.

If I copy a picture from the original email message and paste into another program it works , and vice versa.

the insert image command does work so I am guessing this is clipboard related but do not know how to go about it.

2006-12-13 10:47:36 · 1 answers · asked by Smokey_Nerd 1

Devices including cell phones, computers, PSPs, and other devices? Like what html coul i use so that each device had a different view that was better to use with that device. I've seen websites that support html for devices like that other than computers. Thanks!

2006-12-13 10:43:56 · 1 answers · asked by Brandon 3

I am trying to find a site for christian graphics for myspace. Does anybody know of a good site with maybe crosses, Bibles, pictures of Virgin De Guadalupe, or and christian symbols. I am not looking for backgrounds, just graphics. Thanks

2006-12-13 10:38:51 · 3 answers · asked by LaTortuga 4

I have been havining problems with what I believe is a locked file in a process unfortunately I don't know how to see which file is the one being locked.

Is there a way in windows 2000 terminal server to know which files are locked?
it would also be great to know who is locking the file

points go to best answer extra points for not using 3rd party addons

2006-12-13 10:28:53 · 2 answers · asked by Gustavo S 2

This is what I have now and I have 2 have to write a program the reads students grades together with their test grades. It suppose to compute the average test scores an then assign the appropriate grade. have to use a void function to determine the average for the five test scores and a value returning function to determine and return each students grade. the students grades are on an infile and i have to output it to an outfile.





#include
#include

using namespace std;


calculateGrade (float,average);

int main ()
{
ifstream infile;
infile.open("C:\inGrade.dat");





outfile << calculateGrade<< endl;


ofstream outfile;
outfile.open("C:\FinalGrades.txt");




infile.close ();
outfile.close ();


system("pause");
return 0;

char calculateGrade (float average)
{
char grade;

if (average >= 80.0)
grade = 'A';
else if (average >= 70.0)
grade = 'B';
else if (average >= 60.0)
grade = 'C';
else if (average >= 50.0)
grade = 'D';
else
grade = 'F';
return (grade);
}






}

2006-12-13 10:26:19 · 3 answers · asked by Ryan G 1

I learned on an old program called Micrographx. I need to learn a new one.

2006-12-13 10:04:16 · 7 answers · asked by libby 2

Just thought id have a few people check it out. I havent spent barely any time on it so far. About 20 minutes. Im sure most of u could do this in 20 seconds. But im trying. What do ya think. There isn't much at all. Only a couple of clickable things.
.www.kinndra.com

2006-12-13 09:59:57 · 7 answers · asked by silki_one 2

I have a C++ project which is due for friday, and i don't have any ideas on what to do.
can u tell me any game that kids would like or an application that adults and teens would enjoy,
thanx

2006-12-13 09:57:58 · 5 answers · asked by Anonymous

I have to create a math table for homework but I can not run my Microsoft word since my cd was lost. I really need to get this table made tonight. Thanks

2006-12-13 09:42:20 · 2 answers · asked by Jill S 5

Why does my webpage look okay in Explorer but wrong in Firefox? The URL is www.geniuswords.com. (This is probably a css issue.)

2006-12-13 09:20:16 · 7 answers · asked by lotf629 2

I cannot find my MS Access book and I forget how to code buttons to add data to a table. I want to make a stats entry form form hockey so that I might add data for a particular game and have that data update the season and/or career stats for each player/team. Any sites, tutorials, or instructions appreciated.

2006-12-13 08:51:17 · 3 answers · asked by playmkr278 4

SQL query:

CREATE TABLE tickets(
ticket int( 10 ) unsigned DEFAULT '0' NOT NULL AUTO_INCREMENT ,
author varchar( 100 ) DEFAULT '' NOT NULL ,
recipient varchar( 100 ) DEFAULT '' NOT NULL ,
subject varchar( 100 ) DEFAULT '' NOT NULL ,
attachment tinyint( 1 ) unsigned DEFAULT '0' NOT NULL ,
timestamp int( 10 ) unsigned DEFAULT '0' NOT NULL ,
TYPE varchar( 15 ) DEFAULT '' NOT NULL ,
assignment int( 10 ) unsigned DEFAULT '0' NOT NULL ,
parent int( 10 ) unsigned DEFAULT '0' NOT NULL ,
activity int( 10 ) unsigned DEFAULT '0' NOT NULL ,
priority tinyint( 1 ) unsigned DEFAULT '1' NOT NULL ,
cc varchar( 100 ) DEFAULT '' NOT NULL ,
body text NOT NULL ,
PRIMARY KEY ( ticket ) ,
KEY parent( parent ) ,
KEY TYPE ( TYPE )
);

MySQL said: Documentation
#1067 - Invalid default value for 'ticket'

2006-12-13 08:25:38 · 2 answers · asked by Rj 3

I am having a brain-fart here.

How can I select the single highest number in a column?

ex: a table column has values 4,3,6,1,7,1,4 in it, I want to return ONLY the single highest value '7', how do I do that?

SELECT ???
FROM table
WHERE x = 'bla'

thanks ahead of time!

2006-12-13 07:54:09 · 3 answers · asked by stan_naspinski 3

in school i'm designing a web page in 50's and need help with the whole deal b/c i don't know anything about them.........plz help me

2006-12-13 07:25:39 · 4 answers · asked by blu 1

I have heard you can take snapshots of webpages and save it as a picture.
How do i take a snapshot of my page?I need it for my website.

2006-12-13 07:05:17 · 9 answers · asked by hannahrottger 1

2006-12-13 06:46:35 · 2 answers · asked by Anonymous

okay i want to make my background on my computer like a collague of all kinds of pictures but i cant figure it out. each time i try it only lets me put one picture not lots of diffrent ones i tried using the paint program but it only let me use one picture and i have tons i want to arrange on my background it wont let me move them around and put more than one i need help thank you

2006-12-13 06:30:26 · 3 answers · asked by tara_tiger83 3

I want to add articles to my website. But I don't want to put the entire article out on the page, I want to create a space on the page, where I can insert the article, and that space have an up/down scroll bar so they scroll up and down to view the article with in that space I created for it on the page.
I thought I could do it by creating a table, but I didn't know how to put a scroll funtion within the table. Please help.

2006-12-13 06:21:20 · 6 answers · asked by thetalentedgreygoose 1

fedest.com, questions and answers