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

Programming & Design - January 2007

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

If ClassC inherits from ClassB, which inherits from ClassA, this would be an example of what?
If you do not provide an access specificer for a class member, the class member is given this access by default?
Protected member are what?

2007-01-27 15:08:50 · 1 answers · asked by spoiled_04_brat 1

2007-01-27 15:03:19 · 2 answers · asked by mia 2

okay one everytime I try and telnet to a computer using not just the default prot 23 but otehr ports I'v tryed it gives me the messege can not connect on port what ever am I doing anything wrong

2007-01-27 15:00:17 · 2 answers · asked by Anonymous

I wanna learn spanish but I don't know how to take spanish words and make them into a sentence. Because it's like the words aren't like English and are sometimes like backwords. If you understand spanish and my confusing question (I explained it the best I could), please help!

2007-01-27 14:51:54 · 13 answers · asked by mariah(: 3

One kilometer is equal to 1,000 meters. What fractional part of a kilometer is 700 meters? Simplify your result

2007-01-27 14:45:49 · 5 answers · asked by Anonymous

2007-01-27 14:44:50 · 3 answers · asked by Anonymous

My colleague has put up a website for our company and he wants me to go through it just to edit all of the grammar, spelling, information etc. He gave me all of the login information (username & password) and I can get in, the problem is I don't know how to edit the website! I know a bit about FTP and stuff..but is there a way I can just go onto the website and just EDIT it? The host is ixwebhosting.com... thanks!!

2007-01-27 14:42:07 · 8 answers · asked by Besch 4

I need to find number combinations ranging from 1-30, no repeating numbers, and each set appearing in a different column.
Help?

2007-01-27 14:37:36 · 3 answers · asked by Josh G 1

I just installed it, but the preview screen on the top right corner won't work. It's all black, and sometimes green, with a little movement. I already tried downloading some plugins, but it didn't do any good. Does anyone have this problem or know how to fix it?

2007-01-27 14:34:15 · 2 answers · asked by Peterpe 1

I only use Flash for any special animations and I just made my first one... but the thing is Fanart central.net and deviantart only accept .swf, how can I change it?

2007-01-27 14:32:34 · 4 answers · asked by ? 1

2007-01-27 14:24:45 · 4 answers · asked by chula198705 2

How do I display a completely different webpage in a frame in my website? - Like if I have my banner for my website in the top frame, what is the script, or how can I display a different URL in the bottom frame. I use dreamweaver 8. Thanks for your help.

2007-01-27 14:20:05 · 1 answers · asked by ineedanswers 3

with embed is there a way to hide the player and put a delay time on the start of the sound file?

2007-01-27 14:18:44 · 5 answers · asked by en1ggy 1

What the best supplier of tshirt/textile silk screen printers(Equipment) for someone just starting out in the tshirt biz?

2007-01-27 14:00:16 · 3 answers · asked by Anonymous

Im wanting to creat a website,but I do not know what software to use/buy.IM A NEWBIE! I want to create a site like "Georgia4sale" .com
What soft ware is this.Any info would be great! Thanks

2007-01-27 13:58:16 · 6 answers · asked by Anonymous

I am new to paint shop pro and want to learn how to make my name glitter.

2007-01-27 13:48:43 · 2 answers · asked by lucy.desi 1

I'm trying to allow people who visit my website to watch my home videos. I just want them to be able to download them when then click a link. I have never learned how to do that though. Thanks.

2007-01-27 13:29:59 · 4 answers · asked by Anonymous

2007-01-27 13:17:37 · 8 answers · asked by K G 1

I have a P4 2.4 system with Intel GEBV2 Mother board and 512+256 memory but still i am not able to install windows vista because it showing color in 16 bit and when i am installing color, my mother board loses display and i have to repair it. What changes shall I make?

2007-01-27 12:59:23 · 4 answers · asked by Anonymous

In Indian Rupees while 1US$ = 44 Rupees

2007-01-27 12:52:17 · 3 answers · asked by Anonymous

can anyone make good web designs or flash games for cheap?

gameztown.com is my site and i need chep help plz...

2007-01-27 12:49:28 · 3 answers · asked by Anonymous

I just wanted to add a couple. Please don't post any sites that will charge me money!

2007-01-27 12:37:40 · 5 answers · asked by Anonymous

0

Every time I create a list with

    s embedded in other
      s there's a huge gap (like a line break), between the
    • in the first
        and the first
      • in the second
          ...how do I make this go away? I remember reading somewhere you could do that but I can't remember where.

          2007-01-27 10:59:31 · 1 answers · asked by __ 3

My computer is freezing more than even before I even get started. I installed a hotbar tool bar and maybe that's the problem????
It looks that way. What does interest explorer script error mean.
It says do you want to keep running scripts on this page and
User.exec errors, and error in Kernel. What the H is going on?

Please help!!!!! I know there are some computer savvy people
out there. Thanks in advance.

2007-01-27 10:34:18 · 3 answers · asked by mscandura2003 2

I just found out that I can create my own website that can be accessed with my cellphone. I tried using Zinadoo (www.zinadoo.com). I created it and all, I published it, but apparently I can't access websites ending in .mobi
Know any other sites or programs where I can create my own mobile website?

2007-01-27 10:32:50 · 3 answers · asked by fairy_bead_grl 1

My assignment: The
top-right cell requires horizontal lines that are equidistant in the cell. Each line is 10 pixels apart. Additionally, the lines need to be colored randomly in any possible red, green and blue range.

picture example: http://i68.photobucket.com/albums/i35/stxda/example.jpg

I did the top left cell, and my coding was:

----------------
import java.awt.*;
import java.applet.*;
import java.util.*;


public class Lab06G80 extends Applet
{

public void paint(Graphics g)
{
int width = 800;
int height = 600;
g.drawRect(10,10,width,height);
{
g.drawLine(410,10,410,610);
}
{
g.drawLine(10,310,810,310);
}

for (int a = 20; a <= 400; a += 10)
{
g.drawLine(a,20,a,290);
}

}

}
-------------------------

now I need help doing the top right cell.. please help coders!!

2007-01-27 10:30:34 · 2 answers · asked by Snaox 1

2007-01-27 10:23:29 · 5 answers · asked by Anonymous

I want to have some html code and an image as my desktop background. I know it can be done but cant rember how so can anyone help me?

2007-01-27 10:22:27 · 3 answers · asked by sbraidley 3

2007-01-27 10:08:03 · 5 answers · asked by the_used_fan_0717 1

fedest.com, questions and answers