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

i am making this program where people have to put in a date and i want the computer to tell them what day of the week that is going to be.

for example the customer puts in 2/13/2020

2006-12-20 08:15:50 · 7 answers · asked by Honey006_sara 1

I've just been looking for awhile, and I can't find one... Does anyone know where I can get one for free?

2006-12-20 08:12:27 · 3 answers · asked by ChipChamp 4

I am a front-end web designer. I want to learn about databases using the program that will allow me to grow in the future.

I would also like to develop a database application to streamline the millions of forms I have to fill out repeatedly at my job.

2006-12-20 08:05:43 · 3 answers · asked by gosoxgojill 1

Ok so I download pictures from iconator.com and then i use them for my webpage, just for show. I even stated that most of them aren't mine, that i get them from iconator.com. Is that stealing?

2006-12-20 07:54:07 · 27 answers · asked by x3i_will_pull_the_triggerx3 1

I need to create a mini program which includes a Do While loop!!! this is the code below i need to do it for a password i need to make it so it only allows that password! look at the code andu you will understand!!

Dim password As Integer

password = InputBox("What is your password? ", "Please enter your password")
Do While password <> jim06fr
password = InputBox("Sorry. " & password & " is incorrect. Please try again. Please re-enter your password", "Password")
Loop
MsgBox("Welcome , your password is correct!", MsgBoxStyle.OkOnly, "Welcome")

it wont allow me to have that password (jim06fr) it has a blue line underneath says its not declared

WHAT DO I DO??? HELP! PLEASE QUICK!!

Thanks! QUICK HELP would be nice!! thanks again!

2006-12-20 07:47:06 · 8 answers · asked by Loz 1

2006-12-20 07:18:04 · 2 answers · asked by babygurlika 2

It's about a project for school.It's formatted in Microsoft Office Word 2003.How can I place a picture in a rectangle for example?Or in a circle?You konw,like...give a certain shape to the picture.Tell me exactelly what "steps" to follow.It is for the aspect and estetics of my text.

2006-12-20 07:14:28 · 2 answers · asked by Ana 3

Hello,

I have been on websites where I put my mouse on a word and a little box pops up under it and give me a definition.

What is that called and how can I do it?

2006-12-20 07:13:29 · 5 answers · asked by FOHengineer 1

I have a database that has only one field that has multiple informations consolidated onto that one field. I would like to partition the field out to multiple column. I would like to partition the field based on certain characters. For example, each row has a description followed by the $ amount. I would like to use a MS Access function to copy any data after the $ character to another column. What is the function to do that? Any help is greatly appreciated.


For example:
Originial Field New Field 1 New Field 2
ABC$350 ---> ABC $350
FKIUHIJDC$400 FKIUHIJDC $400

2006-12-20 07:02:01 · 4 answers · asked by Steve 1

i have windows xp installed but my husband wants to change the writing to chinese so he can use the computer/ go on the internet. i would appreciate any tips. thanks

2006-12-20 06:56:21 · 4 answers · asked by peonies76 2

2006-12-20 06:49:06 · 6 answers · asked by Peggy Z 1

When you place the cursur over the links on the home page of my tennis site, www.attennis.com, I would like to have the link word not move any and just be underlined with the cursur over it. But when I right click on page properties, advanced, roll over properties, and change the settings to just underline, then the link word has no behavior at all. An example of what I would like my text links to do is at www.tennis.com Any help is appreciated.

2006-12-20 05:57:17 · 4 answers · asked by william k 2

2006-12-20 05:54:36 · 18 answers · asked by Anonymous

my floppy disk is taking forever to load around 12 pages.
When i take it out it says (path not valid) and it is driving me nuts because i lost my essay. It tells me to try these suggestions such as,try and dabble in, in the following path, (A:\the solar system and beyond\Doc.)
If i have lost my memory, is there any way i can get it?

2006-12-20 05:32:28 · 4 answers · asked by Crow 2

I have a large spreadsheet in Microsoft Word 2003 - 8 1/2 x 22 inches. Only the first page: 8 1/2 x 11 prints. The second page is completely blank. I have tried to adjust everything I know to allow the 2nd half of the document to print. But it comes out blank every time. Any suggestions?

2006-12-20 05:24:39 · 2 answers · asked by concernedjean 5

2006-12-20 05:08:51 · 2 answers · asked by Anonymous

I created my website cosmetics with Frontpage 2003. Now I want to throw in some PHP code to create user sessions, as well as transmit all of the information the visitors insert on the registration page to a mySQL database. Is there a program/script out there to simplify this process? If avoidable, I would like to not write out all the entire script from scratch.

2006-12-20 04:42:28 · 2 answers · asked by thelastpirate 2

2006-12-20 04:37:27 · 3 answers · asked by Anonymous

I bought an ebook from the internet and they sended me an email with the link to a browser window to begin downloading it. I have never done that before. Please help me on how to do this Thhhhaaannnkkkssss!

2006-12-20 03:52:23 · 4 answers · asked by Anonymous

2006-12-20 03:49:12 · 6 answers · asked by vemula p 1

$con = mysql_connect("localhost","root","mysql");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("db", $con);
$name=$_POST["name"];
$address=$_POST["address"];
$email=$_POST["email"];

$sql="INSERT INTO patient (PatientName,Address,Email) VALUES ('$name','$address','$email')";
$results=mysql_query($sql)

$selects=mysql_query("SELECT * FROM patient");
$row=mysql_fetch_array($selects);

$num=rand(1,4);
echo $num;
if($num==$row[0])
{
echo 'number exists';
$random=rand(1,4);
$mysql="UPDATE patient SET PatientID='$random'";
}
else
{
$set="INSERT INTO patient (PatientID) VALUE ('$num')";
}
?>

What i am doing is first inserting the patient details to database
Then i am selecting the complete table
Then i let the program create a random number. If random number created exists in the PatientID column let the program create another random number and save it .

2006-12-20 03:40:35 · 2 answers · asked by Anonymous

2006-12-20 03:31:44 · 5 answers · asked by vemula p 1

2006-12-20 03:30:04 · 7 answers · asked by doggybag300 6

2006-12-20 03:17:47 · 2 answers · asked by Terahertz 2

I am using C++ and the Windows Api. How do I load and set the image for a toolbar button.

2006-12-20 03:07:01 · 1 answers · asked by pcguy49 2

ques 2.
consider primary key of parent table acts foreign key for child table which is a composite key their are 16 diff combinations How ?
In oracle

2006-12-20 03:02:58 · 3 answers · asked by Anonymous

fedest.com, questions and answers