Click here to Skip to main content
15,900,461 members
Home / Discussions / C#
   

C#

 
AnswerRe: how can i search in text files by c# Pin
Harvey Saayman20-Sep-08 0:57
Harvey Saayman20-Sep-08 0:57 
QuestionConvert swf to exe Pin
Waheed Ur Rehman19-Sep-08 5:50
Waheed Ur Rehman19-Sep-08 5:50 
AnswerRe: Convert swf to exe Pin
Anthony Mushrow19-Sep-08 9:08
professionalAnthony Mushrow19-Sep-08 9:08 
GeneralRe: Convert swf to exe Pin
Waheed Ur Rehman20-Sep-08 2:49
Waheed Ur Rehman20-Sep-08 2:49 
QuestionNamespaces with Web References Pin
Phillip Donegan19-Sep-08 5:39
Phillip Donegan19-Sep-08 5:39 
AnswerRe: Namespaces with Web References Pin
Phillip Donegan21-Sep-08 23:21
Phillip Donegan21-Sep-08 23:21 
Questionmouse hover image Pin
harcaype19-Sep-08 5:19
harcaype19-Sep-08 5:19 
AnswerRe: mouse hover image Pin
John_Adams19-Sep-08 5:46
John_Adams19-Sep-08 5:46 
Hi,

Try the following code snippet:

BEGIN CODE

Public Class Form1

Dim image1 As String = Application.StartupPath + "\Water lilies.jpg"
Dim image2 As String = Application.StartupPath + "\Winter.jpg"

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.PictureBox1.BackgroundImage = Image.FromFile(image1)
End Sub

Private Sub PictureBox1_MouseHover(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox1.MouseHover
Me.PictureBox1.BackgroundImage = Image.FromFile(image2)
End Sub

Private Sub PictureBox1_MouseLeave(ByVal sender As Object, ByVal e As System.EventArgs) Handles PictureBox1.MouseLeave
Me.PictureBox1.BackgroundImage = Image.FromFile(image1)
End Sub
End Class

END CODE

Hope this helps Smile | :) .

Regards,
John Adams
ComponentOne LLC

AnswerRe: mouse hover image Pin
harcaype19-Sep-08 6:43
harcaype19-Sep-08 6:43 
QuestionMonitor internet usage Pin
electriac19-Sep-08 4:57
electriac19-Sep-08 4:57 
AnswerRe: Monitor internet usage Pin
jzonthemtn19-Sep-08 5:00
jzonthemtn19-Sep-08 5:00 
GeneralRe: Monitor internet usage Pin
electriac19-Sep-08 7:57
electriac19-Sep-08 7:57 
GeneralRe: Monitor internet usage Pin
electriac19-Sep-08 9:55
electriac19-Sep-08 9:55 
GeneralRe: Monitor internet usage Pin
jzonthemtn19-Sep-08 11:44
jzonthemtn19-Sep-08 11:44 
QuestionGetting images from an RTF file Pin
sarabjs19-Sep-08 3:29
sarabjs19-Sep-08 3:29 
AnswerRe: Getting images from an RTF file Pin
Giorgi Dalakishvili19-Sep-08 3:44
mentorGiorgi Dalakishvili19-Sep-08 3:44 
GeneralRe: Getting images from an RTF file Pin
sarabjs19-Sep-08 3:50
sarabjs19-Sep-08 3:50 
AnswerRe: Getting images from an RTF file Pin
DaveyM6919-Sep-08 4:33
professionalDaveyM6919-Sep-08 4:33 
AnswerRe: Getting images from an RTF file Pin
Mohammad Dayyan19-Sep-08 4:38
Mohammad Dayyan19-Sep-08 4:38 
AnswerRe: Getting images from an RTF file Pin
sarabjs21-Sep-08 20:07
sarabjs21-Sep-08 20:07 
QuestionHow can I prevent closing WinApp even with Windows Task Manager ? Pin
Mohammad Dayyan19-Sep-08 2:35
Mohammad Dayyan19-Sep-08 2:35 
AnswerRe: How can I prevent closing WinApp even with Windows Task Manager ? Pin
Simon P Stevens19-Sep-08 2:47
Simon P Stevens19-Sep-08 2:47 
AnswerRe: How can I prevent closing WinApp even with Windows Task Manager ? Pin
J4amieC19-Sep-08 2:50
J4amieC19-Sep-08 2:50 
GeneralRe: How can I prevent closing WinApp even with Windows Task Manager ? Pin
Mohammad Dayyan19-Sep-08 2:52
Mohammad Dayyan19-Sep-08 2:52 
General[Message Deleted] Pin
J4amieC19-Sep-08 3:03
J4amieC19-Sep-08 3:03 

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.