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

Programming & Design - November 2007

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

Where can I download it?Ive gone to google and searched it but i find some that dont work...Where can i find it?Can someone please post a link?ty

2007-11-25 13:09:50 · 3 answers · asked by gummygumo 1

I have to write something for English class that has to be 250-300 words and I can't find a word count function for the Text Edit application on my Mac.

2007-11-25 11:01:40 · 1 answers · asked by Anonymous

My blue background only goes to the end of the list of links. How do I get it to go all the way to the bottom of the page? It looks like this:

.sidenav {
background-color: #0000FF;
left: 0px;
color: #FFFFFF;
font-size: 20px;
font-weight: bold;
width: 220px;
padding-top: 10px;
float: left;
position:relative;
padding-bottom: 10px;
text-align: center;
margin-bottom: 5px;
height: 100%;
}



Home


Link


Link


Link


Link


Contact Us



2007-11-25 10:59:56 · 1 answers · asked by Water Garden Vista 6

I am designing a directory for artists and designers and want to show a few pics of their work for those who do not have websites. Do i need there permission? And if yes how do i go about that if they approve. Are there any forms to fill out? or can we do it over the internet and print the page as proof?

2007-11-25 10:31:43 · 1 answers · asked by 15 2

Please tell me about Dell Computer!!
1, What is Dell's marketing communication strategy??

2, What is thier competing products??

2007-11-25 10:25:37 · 2 answers · asked by shinya_dgch 1

I have a colorized picture of a rose. I want to to change the picture so that the rose and stem are still in red and green and the background is in black and white. How do i do this? I think i need to use layers

2007-11-25 09:23:21 · 2 answers · asked by Anonymous

2007-11-25 04:20:51 · 6 answers · asked by Anonymous

I'm writing a method to clear a 2D array of booleans. So if I have an array called test[9][3], I know that test.length would be 9. But how do I access the 3?

2007-11-25 01:37:54 · 4 answers · asked by stopthemadness 1

Hi. I am designing a shopping directory website but can't think of any name for it. Any suggestions??? WWW...............CO.UK
I want it short and sweet

2007-11-25 01:24:49 · 8 answers · asked by vinny 2

i want to write a program to display the gpa,first enter the student score and display the grade and also calculate the number of grade please help i stuck at the half way no i don't know how to calculate gpa please help

#include
#include
#define column_size 30
#define row_size 50

void input_table(int *rows,int *column,int arr[][column_size]);
void output_table(int rows,int columns,const int arr[][column_size]);

int main()
{

int test_score[row_size][column_size];
int rows,columns,score;


input_table(&rows,&columns,test_score);
output_table(rows,columns,test_score);


return 0;
}
void input_table(int *no_of_rows,int *no_of_columns,int arr[][column_size])
{
int i,j;
printf("\n");
printf("\t\t\t------------------------\n");
printf("\n");
printf("Enter number of rows : ");
scanf("%d",&(*no_of_rows));
printf("Enter number of columns : ");
scanf("%d",&(*no_of_columns));

for(i=1;i<=*no_of_rows;i++)
for(j=1;j<=*no_of_columns;j++)
{
printf("Enter value of test score [%d][%d] :",i,j);
scanf("%d",&arr[i][j]);

}
}
void output_table(int rows,int columns,const int arr[][column_size])
{
int i,j;

system("cls");
printf("\n");
printf("\t\t\tEXAMINATION PERFORMANCE REPORT\n");
printf("\t\t\t------------------------------\n");
printf("\n");
printf("Student No\tAMCS17894\tAAC7889\tGrade Point Average\n");
printf("----------\t--------\t--------\t-------------------\n");

for(i=1;i<=rows;i++){
printf("\t\n%3d",i);
for(j=1;j<=columns;j++)
printf("\t\t%3d",arr[i][j]);
}

printf("\n\n");
printf("AVERAGE GPA = %d\n ");
printf("\n");
printf("HIGHEST GPA = %d obtained by student No.=\n");
printf("LOWEST GPA = %d obtained by student No.=\n");


}

2007-11-25 00:30:55 · 2 answers · asked by Anonymous

Public Class Form1

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

End Sub
End Class
Public Class ColorsForm

'program Colors on page 324. Needs to create an array with upper bound of 50 and then increase the size of the array

' by 10 elements whenever it runs out of space to store the colors.

' Need to figure out how to increase the size of the array when the program is reading a file and runs out of room

Dim Colors(50) As String

Dim reccount As Integer

Private Sub ColorsForm_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

Dim i As Integer = -1

Dim sr As IO.StreamReader = IO.File.OpenText("c:\DOCUMENTS and Settings\COLORS.txt")

Do While (sr.Peek <> -1)

i += 1

Colors(i) = sr.ReadLine

Loop

sr.Close()

End Sub

Private Sub btnColors_click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnColors.click

lstColors.Items.Clear()


For i As Integer = 0 To 50

If (Colors(i).Substring(0, 1) = txtState.Text) Then

lstColors.Items.Add(Colors(i))

End If

Next

End Sub



End Class

2007-11-25 00:21:30 · 1 answers · asked by Tyna 1

I need to write a program for a simple game in which each of two players rolls a pair of dice. The person with the highes tally wins. The program should use a Game class having two member variables of the type PairOfDice.

I need help with the class. How would I go about programming this question?

2007-11-25 00:18:46 · 1 answers · asked by Tyna 1

The only options im given when saving is the extension '.txt' or 'All files'. whats going on? all help appreciated!!

2007-11-25 00:17:18 · 12 answers · asked by Chill_Out 3

I'm trying to fill out a job application on line but the information doesn't fit into the boxes - it sort of disappears inside them I can see some of what I have written -is this normal? Will it expand at the other end so it can be read? Is there something wrong with my computer?
I just don't understand this stuff at all, and if I can't even fill in an application - I have no chance of getting a job!
Please help!!!!!

2007-11-25 00:10:11 · 2 answers · asked by cobra 7

Is it easy to learn unix from books or i need coaching??????????????????

2007-11-24 20:34:14 · 5 answers · asked by Remix 2

eBay has upgraded listing items to make it easier, but now I can't seem to to figure out how to insert my html on my listings. It only gives you the option of putting Rich Text.

I want to insert my HTML in the box and when I try, it shows the codes on the page.

Help???

Thanks :)

2007-11-24 20:15:25 · 6 answers · asked by juicy j 2

I have heard of the Wayback Machine and i got to see how Club Penguin in the old times. I know each room is an .swf file somewhere stored in the Club Penguin Team's files and servers. Now is their a site like the Wayback Machine exept we can get the swf files? Like the Beta Test Party on August 2005?

2007-11-24 16:12:07 · 2 answers · asked by DrL 2

best computer program

2007-11-24 15:55:30 · 13 answers · asked by Anonymous

2007-11-24 13:59:45 · 6 answers · asked by dwbanks1 1

For windows xp, when you turn on the computer, there are a bunch of profiles.

when i leave the computer alone for twenty minutes or so, the computer goes back to the profile page. i click my profile picture to access my user account.

i know there's an option somewhere that has it so the computer doesn't automatically log me off to the profile page. does anyone know how to find this?

2007-11-24 13:54:41 · 6 answers · asked by para p 1

I just bought a book whose title is "C# Primer Plus"
Is this book just the "C" language
Because my friend told me to learn "C"

2007-11-24 13:22:51 · 5 answers · asked by volvo942 1

2007-11-24 10:20:57 · 3 answers · asked by Sharif Aly 2

to find a records 4 todays date, what do i type in for the criteria?

2007-11-24 10:02:12 · 1 answers · asked by clueless 1

I want to know the name of the program that being used to desigen photo background for the movies like aeon flux, photos of the actor Marton Csokas, rent , or smoking ace photographic background for Andy Garcia and Ben Aflek , I looking for the name of this program

2007-11-24 08:04:12 · 1 answers · asked by THE WORLD IS NOT ENOUGH 1

Can someone please explain to me how SQL Server works. I ask for the following reason: I have developed a Access database that is very useful for the company at which I work. I have always wondered how SQL server works and wondered what upscaling my Access DB to SQL would achieve. Am i right in believing that it would take control of all queries and tables then it would be down to me to program the forms and reports etc using something like VB ?? Hope you understand my query, any help appreciated

2007-11-24 07:55:28 · 4 answers · asked by dave j 2

plz help me. thank u so much

2007-11-24 06:59:06 · 3 answers · asked by wahafree 1

fedest.com, questions and answers