how i can upload and store image to a specific folder

Recommended Answers

All 2 Replies

1.
'//-------- Pre-requisites: 1 Button, 1 Timer. ----------\\
2.
Public Class Form1
3.

4.
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
5.
Me.Text = "1"
6.
Timer1.Start()
7.
End Sub
8.

9.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
10.
Me.Text += 1
11.
End Sub
12.

13.
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
14.
Button1_Click(sender, e) '// call event.
15.
End Sub
16.
End Class
http://www.tungstenringsmall.com

commented: spam promotion used to advertise link. +0
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.