Click here to Skip to main content
15,891,253 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: need help with generics - multi key lookup Pin
Luc Pattyn27-Feb-10 2:36
sitebuilderLuc Pattyn27-Feb-10 2:36 
GeneralRe: need help with generics - multi key lookup Pin
Kalyan_A27-Feb-10 3:23
professionalKalyan_A27-Feb-10 3:23 
AnswerRe: need help with generics - multi key lookup Pin
Luc Pattyn27-Feb-10 4:04
sitebuilderLuc Pattyn27-Feb-10 4:04 
QuestionCreating Bitmap from MemoryStream Pin
xry200626-Feb-10 13:14
xry200626-Feb-10 13:14 
AnswerRe: Creating Bitmap from MemoryStream Pin
The Man from U.N.C.L.E.2-Mar-10 7:15
The Man from U.N.C.L.E.2-Mar-10 7:15 
GeneralRe: Creating Bitmap from MemoryStream Pin
xry20063-Mar-10 1:39
xry20063-Mar-10 1:39 
GeneralRe: Creating Bitmap from MemoryStream Pin
The Man from U.N.C.L.E.3-Mar-10 3:02
The Man from U.N.C.L.E.3-Mar-10 3:02 
QuestionTimer reset Pin
Bob Beaubien26-Feb-10 11:57
Bob Beaubien26-Feb-10 11:57 
Hello Everyone
I am having a hard time here can anyone help me please
I am trying to have my timer reset i have it couting up at 1 second interval when i stop it and start it agine
it keeps counting from ware it left off , i want it to reset to 0

Thanks
Bob


 Public Sub OnOff_Button_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OnOff_Button.Click

        If Form1.phidgetIFK.outputs(2) = False Then
            Form1.phidgetIFK.outputs(2) = True
            TextBox1.Text = "0"
            Timer1.Enabled = True
            Timer1.Interval = 1000
            

        Else
            Form1.phidgetIFK.outputs(2) = False
            Timer1.Enabled = False
End If


    End Sub

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick

        Toolclick += 1
        TextBox1.Text = Toolclick.ToString

    End Sub

Answerclue Pin
Luc Pattyn26-Feb-10 12:23
sitebuilderLuc Pattyn26-Feb-10 12:23 
GeneralRe: clue Pin
Bob Beaubien26-Feb-10 12:34
Bob Beaubien26-Feb-10 12:34 
GeneralRe: clue Pin
Bob Beaubien26-Feb-10 12:40
Bob Beaubien26-Feb-10 12:40 
GeneralRe: clue Pin
Luc Pattyn26-Feb-10 13:13
sitebuilderLuc Pattyn26-Feb-10 13:13 
QuestionCode problem or exceeded array limits? Pin
Hurricane300026-Feb-10 5:15
Hurricane300026-Feb-10 5:15 
AnswerRe: Code problem or exceeded array limits? Pin
Luc Pattyn26-Feb-10 7:09
sitebuilderLuc Pattyn26-Feb-10 7:09 
AnswerRe: Code problem or exceeded array limits? Pin
Gideon Engelberth26-Feb-10 7:56
Gideon Engelberth26-Feb-10 7:56 
GeneralRe: Code problem or exceeded array limits? Pin
Hurricane300026-Feb-10 9:39
Hurricane300026-Feb-10 9:39 
QuestionExit on Keyboard button Pin
Bob Beaubien25-Feb-10 15:54
Bob Beaubien25-Feb-10 15:54 
AnswerRe: Exit on Keyboard button Pin
Dr.Walt Fair, PE25-Feb-10 17:00
professionalDr.Walt Fair, PE25-Feb-10 17:00 
GeneralRe: Exit on Keyboard button Pin
Bob Beaubien25-Feb-10 17:17
Bob Beaubien25-Feb-10 17:17 
QuestionShortcut Keys [solved] Pin
Mehdi Ghiasi24-Feb-10 23:20
Mehdi Ghiasi24-Feb-10 23:20 
AnswerRe: Shortcut Keys Pin
Nuri Ismail24-Feb-10 23:31
Nuri Ismail24-Feb-10 23:31 
GeneralRe: Shortcut Keys Pin
Mehdi Ghiasi24-Feb-10 23:44
Mehdi Ghiasi24-Feb-10 23:44 
GeneralRe: Shortcut Keys Pin
Nuri Ismail24-Feb-10 23:46
Nuri Ismail24-Feb-10 23:46 
QuestionHow can I programatically select video source using WebCam_Capture.dll PinPopular
M Wyatt24-Feb-10 13:53
M Wyatt24-Feb-10 13:53 
AnswerRe: How can I programatically select video source using WebCam_Capture.dll Pin
cybertronick4-Feb-11 1:20
cybertronick4-Feb-11 1:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.