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

Computers & Internet - 4 June 2007

[Selected]: All categories Computers & Internet

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

why cant we create array of references in c++?
int a,b,c;
int &arr[3]={a,b,c};//error

is there any logcal explanation?

2007-06-04 00:44:50 · 5 answers · asked by Anonymous in Programming & Design

I went to a site looking for a job, and yes, :-(
I filled out a survey. I should have known better.
Now I get junk emails every freakin day.
Some 30-60 a day!
I started to go to each and everyone of them, and requesting to be remove from the list. But, it is taking me forever to get everyone.

How do you remove your email address from these useless companies without changinig your email address?

2007-06-04 00:41:07 · 4 answers · asked by Mom of 2 great boys 7 in Other - Computers

2007-06-04 00:30:10 · 5 answers · asked by Anonymous in Programming & Design

2007-06-04 00:24:53 · 7 answers · asked by pawan b 2 in Computer Networking

I have this code so far that makes a working timer:

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Timer1.Start()
Timer1.Enabled = True

End Sub

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
MessageBox.Show("Times Up")
Timer1.Enabled = False

End Sub

Private Sub ProgressBar1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ProgressBar1.Click

End Sub
End Class

I want to allow the progress bar to track the progress of th timer. The timer will be set for 1 hour and I want the progress bar to performstep every 10 seconds and perform a total of 360 steps.

2007-06-04 00:00:10 · 2 answers · asked by Game-Guy Pro 5 in Programming & Design

fedest.com, questions and answers