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

Programming & Design - February 2007

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

I just registered my daughter as a user on my computer and I would like to populate her web browser favorites with my web browser favorites. Can this be done?

2007-02-19 11:24:29 · 3 answers · asked by Kimberly B 1

I already have a Yahoo! domain name, johnbarefield.com, and I would like to add another domain, either through Yahoo! or through goDaddy.com, who seem pretty inexpensive. I can't quite figure out how do do either thing.

2007-02-19 10:36:25 · 3 answers · asked by john b 2

I have a class, PhoneBook ,that instantiates an array of PhoneEntry objects. In phonebook, my teacher wants me to alphabetize the names as they come in. For example, you enter Bobby, it goes into book[0], next you enter Annie, after you enter Annie, i need it check to see if it less than the last entered(Bobby), which it is, so then the elements in the array need to move down, and Annie is inserted at book[0], and Bobby is now at book[1], i have a lessThan method in PhoneEntry, that checks to see if it less. So in the insert method of class Phonebook, i'll say if(book[current].lessThan) then perform the operation to insert it alphabetically. Does that make sense... i can post the code i have if neccessary. Any help is greatly appreciated

2007-02-19 10:33:14 · 4 answers · asked by Mike 1

2007-02-19 10:15:32 · 3 answers · asked by DJ M 1

I want to make a very intracit myspace layout, but I can't do all the cools things with just a regular myspace layout generator.

I want to make one with as much quality as this one: http://www.createblog.com/layouts/preview.php?id=15463

but what do I make it with? Are there special programs?

2007-02-19 10:11:49 · 4 answers · asked by Anonymous

.
Specifically, I want to create a memory resident program which will do a COPY to the Clipboard by **merely highlighting** text (ready to PASTE) without the need for CTRL-C.

Background: Many years of programming, but fairly new to VB.
Additional question: is there an existing freeware utility for the above? (I wish to learn about mem resident programming in VB regardless).

TIA! :)
Ballpeen

2007-02-19 10:03:34 · 2 answers · asked by Ballpeen 1

I heard or read somewhere that Google has a Microsoft Front Page alternative. But a search at Google didn't turn up anything. Does this actually exist? Thanks

2007-02-19 09:59:31 · 5 answers · asked by alex 2

Hey, newbie programmer here. I've been trying to program something and I'm having a little trouble.

I needed to ask for user input for the amount of rows in the triangle. The number of rows can only be odd numbers and less than 10.
The output should look like

*

**

***

**

*

For a 5 row triangle. I got the input thing down I think but I can't find out how to put the * in that pattern. I'm trying to use a nested for loop, I'm I going at it with the wrong loop? The spaces need to be there too.

Here is my code, it's not done, I couldn't get it to work for 3 so I stopped.

printf("How many rows do you want?\n");
scanf("%i", &c);

switch(c){
case 0:
printf("You can't have 0 rows\n");
break;
case 1:
printf("*")
break;
case 2:
printf("Your number must be an odd number\n");
break;
case 3:
for(counter=1; counter<=c; counter++){
for(a=1; a<=counter; a++){
printf("*");}
printf("\n\n");
break;

I'm sure I am just stupid but I can't figure how to make the triangle decrease in *.

2007-02-19 09:53:07 · 4 answers · asked by Gearz 2

How do I create an Offline HTML (Web ) page? Is it possible?

2007-02-19 09:49:52 · 7 answers · asked by battledog50 1

What tips can you offer someone just starting out as a means to get more business and make a living?

2007-02-19 09:48:27 · 1 answers · asked by Seniorita234 1

2007-02-19 09:35:57 · 2 answers · asked by cabadbaranon 1

If I was going to learn one of these (flash or actionscript) from scratch, which one should I learn first, which one is easier/harder? Should I learn one w/o the other ?

2007-02-19 09:27:06 · 1 answers · asked by Anonymous

If the ratio on an image is 1.5 to 1 (i.e. 150 x 100 pixels), how can I resize and reshape this image where it's proportional like a square (i.e. 200 x 200 pixels) without making it distorted? The backdrop can be white and if there's a way to do this in a basic program like photo editor or MS paint, I'd appreciate your help.

2007-02-19 09:24:39 · 7 answers · asked by NY 2

2007-02-19 09:11:02 · 2 answers · asked by triville203 1

Can anyone tell me the difference layman/basic differences between Actionscript code and the Adobe Flex Builder 2 App? What would you use one or the other for? Which is easier to learn? How do both or either relate to the big picture of building web applications and interactive sites?

2007-02-19 08:58:14 · 1 answers · asked by Anonymous

int binarySearch( int SortedArray[ ] , int key ){

if( SortedArray.length == 0 )
throw new ItemNotFound( "Binary Search fails: empty" );

int low = 0;
int high = SortedArray.length - 1;
int mid;

while( low < high )
{
mid = ( low + high ) / 2;

if( SortedArray[mid] < key )
low = mid + 1;
else
high = mid;
}

if( SortedArray[low] == key)
return low;

throw new ItemNotFound( "BinarySearch fails" );
}

What is the easiest way to make this one comparison per level Binary Search recursive? Thanks for any help.

2007-02-19 08:48:46 · 2 answers · asked by Eric H 2

I think it was 1975 12:00:00:00 for the lowest.. but I don't really remember, any one know what the heighest and lowest is?

2007-02-19 08:47:49 · 2 answers · asked by retrogamer4ever 3

I need help! more layout sites! only ones that have DIV overlays too, not just regular layouts.

2007-02-19 08:47:48 · 2 answers · asked by xxBrianaDuhxx 2

I have a text file where files are listed as so:
Lesson 3: Interactive Learning
Lesson 4: Stories About Separating VLB
Lesson 5: Interactive Learning
Lesson 6: Close/Assess
Lesson 7: Differentiated Instruction

and so on for 20 chapters, 1139 lines in all.

I need to make the text simply say Lesson X where X is the number.

Essentially, I need to delete anything after the colon.

Is there any program or any way to do this?

2007-02-19 08:44:45 · 5 answers · asked by Wes Ide 2

i want to add music to it, but how do u get sounds that are originally in the video out of the video?

2007-02-19 08:30:42 · 4 answers · asked by i_luv_music_2010 1

I'm a unix newbie and am baffled why 'ls' command doesn't automatically give number of files. What were the creators thinking??? "No one would care about how many files?" DUH. Anyways, please help if you can. THANKS!

2007-02-19 08:29:22 · 6 answers · asked by Anonymous

I know how to put normal variables in a database and retreive them but how would i do this for md5'd variables.
What steps would i need to do to first encrypt a variable with m5d. Insert it into a database, and then retriving it.

Detail please, 10 points for a good answer

2007-02-19 08:24:37 · 1 answers · asked by peter s 1

I know how to put normal variables in a database and retreive them but how would i do this for md5'd variables.
What steps would i need to do to first encrypt a variable with m5d. Insert it into a database, and then retriving it.

Detail please, 10 points for a good answer

2007-02-19 08:21:01 · 1 answers · asked by peter s 1

Hi i am writing a java program to search a list of names. I need to write a method to search for a supplied list L for a supplied string item, and return the position in the list where item was found (if present) or return -1 if item did not occur in L. I want to use a for loop to go though the whole list, but if i find item part of the way through i can immediately do a return with the position where i found it. This will exit the for loop (and the method) without going through to the end of the list. If i reach the end of the for loop i know i didnt find item anywhere in the list - so i want to return the value -1. I know to access an item at position I in a list of strings L, i do this by (String) L.get (i) but dont know where to put it. I will include my program so far in the extra detail as not enough room here.

2007-02-19 08:09:33 · 4 answers · asked by Princess Peach 3

Hello,

I just went over all the new ads from this weekend, and to my surprise, it seems that Dell is got beat down by hp? If you look at the prices, you can buy a lot more for hp than Dell!

I don't know why is that, so is Dell going down in the market?

Thank you and have a nice day.

2007-02-19 08:08:07 · 6 answers · asked by Emily P 1

// Constructor

public IntSet(int size)
{
this.size = size;
array = new int[size];
length = 0;
}

2007-02-19 08:07:55 · 3 answers · asked by Anonymous

I have problems with my eyes (migraines) and would like to change the background of this webpage to grey.

2007-02-19 07:57:25 · 3 answers · asked by dtwladyhawk 6

what is their job exactly and their salary?

2007-02-19 07:49:11 · 1 answers · asked by Anonymous

Hello! Could someone please tell me how I tell Front Page where to locate the photos that I put in my design? In other words, I am making up a simple page and use the INSERT picture function. Everything looks fine, but when I paste the code in an Ebay auction form, the photos don't show. I assume they need to point to where they reside, but I'm not sure how to do this. Any advice would be appreciated.

Thank you!

2007-02-19 07:47:05 · 2 answers · asked by SoCalAgency 2

fedest.com, questions and answers