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

Computers & Internet - 25 November 2007

[Selected]: All categories Computers & Internet

Computer Networking · Hardware · Internet · Other - Computers · Programming & Design · Security · Software

Also, would it be legal for me to start up my own YouTube style website specifically for music videos?

2007-11-25 01:36:44 · 5 answers · asked by Peter J 1 in YouTube

last night, and nobody out there say it cannot be done because your wrong!!! i p****d off a top contributor last week whom i know has 3 yahoo names on questions and answers 6 email addresses, and hacked my home pc and password and to think he was smart presented me with 2,467 malware trojans and adaware on my home pc all he managed to do was set the alarm bells ringing iwork for a security company whom i cannot name this man is being scrutinised by my company and will be dealt with accordingly whom will be in contact with yahoo questions and answers,questions and answers in my mind is an excellent program for problem solving for all including myself when at home. as to the hacker try mothercare next time my company has taken this as minor glich but totaly unexceptable

2007-11-25 01:32:01 · 13 answers · asked by Anonymous in Security

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 in Programming & Design

Please help me out- My Mac OS X version 10.4.11 Power PC G4 has got me going crazy! I I cannot get the color back its all in B&W- Yes I shut it down, disconnected everything plugs from the wall sockets, then checked the battery( after shut and completely removing the cable etc) I i did calibration whatever was to be done-but the complete view is in B& W, Even the Yahoo , web pages all in B&W
I went in sys folder , appearance, display everything is in B&W.When I start it , after the OS loads for a real brief moment there is color , the dock and such but then it reverts back to B&W
Can anyone help me please??
Will be most grateful to get any help. In my family we have 5 PC's, desktops, laptops but only one MAC and I use it mostly, so no one really knows- If its the PC they all know and I do too, but MAC is not much favored but by me. I find its very user-friendly but this time I just cannot find the answer in the help menus.PLEASE I REQUEST you all out there to help me
THANKS

2007-11-25 01:24:14 · 4 answers · asked by snowbird552002 4 in Software

on my windows vista lap top computer it reads i need to
make the resolution on my screen larger. would somone
please tell me how to do this in the easiest and most
simple fashion possible? thank you.

2007-11-25 01:14:18 · 1 answers · asked by Jerry S 7 in Software

could someone please tell me how i can convert a MPEG movie file to DVD.
many thanx in advance

2007-11-25 01:10:02 · 6 answers · asked by Anonymous in Software

I have scratched to top ( not the burnt side!)of a cd with documents etc on but when trying to copy to a new disc an error occurs .
possibly because the laser can not read where there is lack of reflection.
What can I use to make the top shiney/ reflect again?

2007-11-25 00:51:00 · 3 answers · asked by vendy015 2 in Add-ons

2007-11-25 00:43:11 · 10 answers · asked by Canadian Chick Eh 3 in Other - Computers

is there anyway i can get a symbol or anything to flash or do something at the bottom of my screen as new mail arrives or does this not happen with yahoo mail, and also it shows me as having no unread messages when i know i have some in the folders, can somebody please help as this is a bit inconvenient for me when i am working at the computer and cannot see any mail coming in

2007-11-25 00:32:20 · 1 answers · asked by daftygirl 1 in Other - Computers

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 in Programming & Design

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 in Programming & Design

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 in Programming & Design

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 in Programming & Design

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 in Programming & Design

fedest.com, questions and answers