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

Programming & Design - June 2007

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

I've switched the colours from Hex Code into WebColours, but they still come up a completely different colour on those two browsers... I don't know what I'm doing wrong!

I have a link here: http://s125.photobucket.com/albums/p41/shadowcat_aerei/?action=view¤t=Picture3-3.png

The left one is FireFox and the right is Safari.

Oh, and if you do answer, please be clear... I'm only 14. XP Thanks.

2007-06-27 07:34:51 · 2 answers · asked by anonymouse 3

Can i do this with a cd or without anything
please help!!!!!!!!!!!!!!!!!!!!!!

2007-06-27 07:23:52 · 2 answers · asked by felix 1

I'm writing a script code for a user friendly deletion batch file.

@echo off

title delete program

echo delete program will now delete files.

pause

del./f /q /s>NUL

del./f /q /s

echo deletion complete

:again

echo Do you want to quit? [y/n]

YN

if errorlevel 49 goto again

if errorlevel 21 goto end

:end

echo Quitting the Master delete program program.

-------------------------------------------------------------------------
the information above I got from this website :

http://www.palmtoppaper.com/ptphtml/25/pt250058.htm

what im trying to do is make a batch file that deletes other files but not itself until the very end, where I want to put an if statement that says if the user answers yes to the Exit? question it deletes the batch file.

but I dont know how to add the exit y/n question or the if statement. and I want to hide the output of the del. command.
to make it look neater!

thats all!! all answers are much appreciated!!

2007-06-27 06:39:11 · 2 answers · asked by Thirsty Attorney 1

I'm going crazy! I've searched the java sites, and ran google searches, but can't figure out how to format a normal double variable to display just the first two decimals. I can get it to work with currency, but can't figure out how to do it normally. Help me please! I'm using an IDE Eclipse to write my program.

2007-06-27 04:54:04 · 3 answers · asked by Brian J 2

2007-06-27 04:10:24 · 3 answers · asked by comic book guy 2

like a border for around an image or something, kind of like this:

http://i123.photobucket.com/albums/o314/chelseacere13/borderone.gif


i want to make one but i cant think of any good ideas

2007-06-27 03:51:14 · 2 answers · asked by hrrrrrrlhghglhghgghbhgb 1

I am creating a website. I noticed there is a big difference between what the font looks like in Firefox and what it looks like in IE. Is there any way to make the font be the same on both explorers?

2007-06-27 03:36:27 · 5 answers · asked by magician286 2

I have already been to most of the larger "free" font sites, so please don't give me fonts.com or acidfonts.com. I am looking for non-stiff, handpainted-looking scripts like on these posters:

http://www.affiche-francaise.com/img1/OuvrieresParis.jpg
http://www.affiche-francaise.com/img9d/GottlobExpo.jpg

Thanks.

2007-06-27 03:22:59 · 0 answers · asked by athena004 2

I have written down info that I have IE 7, but I don't know where I got that information. Where is that detail given? I don't find it in systems information.

2007-06-27 03:21:49 · 7 answers · asked by gardenfolks 2

How can I do this without having to color it back myself..? If anyone can tell me step by step a simple way to do this it would be very appreciated! thanks!

2007-06-27 01:41:13 · 4 answers · asked by Lori C 1

programming

2007-06-27 01:21:41 · 5 answers · asked by Anonymous

i have to show the spread sheet for a Presentation but cant work it out
or
is it posible to show it via excell

2007-06-27 01:19:34 · 3 answers · asked by subaru222 2

What are your favorite font face in html?/ What is the best font face for html for you?

2007-06-27 01:00:40 · 2 answers · asked by hypershock_05 1

The process of researching, lnvestigateing, or lear ning about ANYTHING ls to find out where the information is that you want to find. So you go & look it up in an INDEX. right? So wnat happened when all these smart M.F invented computers & developed the programs for them. They forgot the most important item of all. A CENTRAL & COMPLETE INDEX OF EVERYTHING THAT'S IN THE F--KING THING!. So why doesn.t it have one or how come there isn't a program that will make one on a computer?

2007-06-27 00:19:36 · 5 answers · asked by jimbo l 1

2007-06-27 00:16:38 · 2 answers · asked by Anonymous

in my project i have to disable Alt+Tab and
Alt+Home please give the solution as soon as possible

2007-06-26 22:54:01 · 3 answers · asked by raj 1

in programming

2007-06-26 20:48:09 · 8 answers · asked by Bhavani 1

2007-06-26 20:28:31 · 3 answers · asked by neha d 1

i have this section of code:

Do While f < p
If c > b Then
f = f + 1
Form1.txtTime.Text = f
k = d * a
m = Math.Floor(c / b)
e2 = m + a
Form1.txtShares.Text = e2
g = (c - (b * m)) + k
Form1.txtMoney.Text = g
Else
f = f + 1
Form1.txtTime.Text = f
k = d * a
j = c + k
Form1.txtMoney.Text = j
End If
Loop

and it won't loop properly. the first condition in the if then else statement is usually false so it goes on to the else part, but when the loop is concerned it stays in the else part of the code, i need a way to make the loop statement go over the entire if then statement for the duration of the loop rather than just looping through the else statement

2007-06-26 19:01:41 · 4 answers · asked by Anonymous

Display a list of points (x,y) for the values of x from -2 to 2 in integer increments for the graph y=x^2-3x-2

2007-06-26 16:07:59 · 1 answers · asked by nobody 1

Write a program to display the cubes of the first 15 postive even numbers in ascending order. Print the values as they are generated inside the loop along with the statement "an even cube is". When the loop is done print the string "After the loop."

2007-06-26 16:03:57 · 1 answers · asked by ZG786 1

2007-06-26 15:43:23 · 3 answers · asked by Anonymous

how can I make a batch file that executes the del. command but doesn't exit immediately after the command is executed?

the script I have is:

@echo off

title delete program

pause

@"CMDNAME" 2> NUL 1>&2

del./f /q /s

echo deletion complete.

pause

exit

----------------------------------------------------------------------------------
I read somewhere that the "@CMDNAME 2> NUL 1>&2 "command will hide the command being executed, in this instance I want to hide the del. command so it looks neater.
I don't know whether I should put that command before or after the del. command???

also, Id like to know how to code in a script that will ask the question "Exit?" and then implement the y/n user prompt.

all answers are appreciated!!!

Thanks!! Apoc.

2007-06-26 15:22:22 · 2 answers · asked by Thirsty Attorney 1

2007-06-26 15:08:38 · 3 answers · asked by tocoolboo 1

Write an if-else statement that outputs the word Hot provided the value of the variable temp is greater then or equal to 85 and also the value of the variable humidity is greater than or equal to 90. Otherwise, the if-else statement outputs the word nice. The variables temp and humidity are both of type int.

2007-06-26 15:08:25 · 2 answers · asked by ZG786 1

Write a program that reads the height and base of a rectangle, and computes its perimeter.
(perimeter=2 * height + 2 * base)

2007-06-26 15:00:25 · 1 answers · asked by ZG786 1

How do we initialize the constant data members of a class when an object is initiated? Give an example.

2007-06-26 14:57:24 · 2 answers · asked by Anonymous

I've seen a new (in fact brand new) website at www.mightycoding.com (which is infact a new unlaunched forum to solve all the IT related problems).... which is having a Downloads section where we can upload download our full projects. Although only few projects are uploaded at www.mightycoding.com but the admin promises to allow at least 1 million projects to be uploaded here in next 2-3 years..
What if somebdy uses these project for profit making purpose? Should ppl post thier hard earned project on the site?

2007-06-26 13:32:25 · 2 answers · asked by Anupam 1




Website
h1
{
background-image:
url('bg.jpg');
}



Website






It is showing the code but not the effects plz help

2007-06-26 12:29:32 · 2 answers · asked by jrobuck13 2

I have 100 buttons forming a 10 X 10 grid.

When I click Button100 I want every button's backColor to change to Black.

The only way I know how to do this, is to start listing them one at a time:

Private Sub Button100_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button100.Click

Button1.backColor = color.black
Button2.backColor = color.black
Button3.backColor = color.black

... etc etc until you get to Button100 ... but this method takes up loads of CPU and I know there is an easier way ... I'm just too new at VB.

Is there a way I can simply denote (Button1 THROUGH Button100). backColor = color.black ?

Thank you so much for any help!

2007-06-26 11:36:09 · 3 answers · asked by djdeity25 1

fedest.com, questions and answers