Click here to Skip to main content
15,893,486 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Move Image within PicBox Pin
Dave Kreskowiak8-Feb-06 16:26
mveDave Kreskowiak8-Feb-06 16:26 
GeneralRe: Move Image within PicBox Pin
Guerven8-Feb-06 18:40
Guerven8-Feb-06 18:40 
AnswerRe: Move Image within PicBox Pin
Serpiente10-Feb-06 6:22
Serpiente10-Feb-06 6:22 
Questionhow to manage dropdownlist in a data repeater Pin
Julianne_juju8-Feb-06 8:39
Julianne_juju8-Feb-06 8:39 
AnswerRe: how to manage dropdownlist in a data repeater Pin
Julianne_juju8-Feb-06 11:03
Julianne_juju8-Feb-06 11:03 
QuestionDynamic control events Pin
H@is@here8-Feb-06 5:33
H@is@here8-Feb-06 5:33 
AnswerRe: Dynamic control events Pin
Dave Kreskowiak8-Feb-06 8:25
mveDave Kreskowiak8-Feb-06 8:25 
AnswerRe: Dynamic control events Pin
JUNEYT8-Feb-06 8:33
JUNEYT8-Feb-06 8:33 
You have used an array for the picture boxes which I don't suggest you to do that because you must have Addhandler or Eventhandler statements to control the event's of picture boxes.

According to your code, you should have one mutual eventhandler procedure which will run all the picture boxes. Focus on Addhandler and Eventhandler statements to get more information.

Here is an example from MSDN :

Sub TestEvents()
Dim Obj As New Class1
' Associate an event handler with an event.
AddHandler Obj.Ev_Event, AddressOf EventHandler
' Call the method to raise the event.
Obj.CauseSomeEvent()
' Stop handling events.
RemoveHandler Obj.Ev_Event, AddressOf EventHandler
' This event will not be handled.
Obj.CauseSomeEvent()
End Sub

Sub EventHandler()
' Handle the event.
MsgBox("EventHandler caught event.")
End Sub

Public Class Class1
' Declare an event.
Public Event Ev_Event()
Sub CauseSomeEvent()
' Raise an event.
RaiseEvent Ev_Event()
End Sub
End Class

Smile | :) )
AnswerRe: Dynamic control events Pin
H@is@here8-Feb-06 9:08
H@is@here8-Feb-06 9:08 
QuestionInterface Pin
Jeeva Jose8-Feb-06 4:11
Jeeva Jose8-Feb-06 4:11 
AnswerRe: Interface Pin
Dave Kreskowiak8-Feb-06 8:20
mveDave Kreskowiak8-Feb-06 8:20 
Question2 windows open when i click F1 in VB code Pin
tamila_tamila8-Feb-06 3:25
tamila_tamila8-Feb-06 3:25 
AnswerRe: 2 windows open when i click F1 in VB code Pin
Dave Kreskowiak8-Feb-06 8:16
mveDave Kreskowiak8-Feb-06 8:16 
GeneralRe: 2 windows open when i click F1 in VB code Pin
tamila_tamila9-Feb-06 21:41
tamila_tamila9-Feb-06 21:41 
QuestionFile System Watcher & File.Copy Method Pin
vcdflow8-Feb-06 2:59
vcdflow8-Feb-06 2:59 
AnswerRe: File System Watcher & File.Copy Method Pin
ToddHileHoffer8-Feb-06 3:22
ToddHileHoffer8-Feb-06 3:22 
GeneralRe: File System Watcher & File.Copy Method Pin
vcdflow8-Feb-06 3:43
vcdflow8-Feb-06 3:43 
GeneralRe: File System Watcher & File.Copy Method Pin
vcdflow8-Feb-06 3:56
vcdflow8-Feb-06 3:56 
QuestionHow can I hide a tabpage of tabcontrol VS 2005? Pin
JUNEYT8-Feb-06 0:25
JUNEYT8-Feb-06 0:25 
AnswerRe: How can I hide a tabpage of tabcontrol VS 2005? Pin
Dave Kreskowiak8-Feb-06 8:11
mveDave Kreskowiak8-Feb-06 8:11 
QuestionRecreate / Refresh Windows Form Pin
shiroamachi7-Feb-06 23:27
shiroamachi7-Feb-06 23:27 
AnswerRe: Recreate / Refresh Windows Form Pin
Dave Kreskowiak8-Feb-06 8:11
mveDave Kreskowiak8-Feb-06 8:11 
Questionusing dll Pin
bluey127-Feb-06 21:51
bluey127-Feb-06 21:51 
AnswerRe: using dll Pin
Dave Kreskowiak8-Feb-06 8:09
mveDave Kreskowiak8-Feb-06 8:09 
QuestionNeed help !!! Pin
welbert7-Feb-06 21:31
welbert7-Feb-06 21:31 

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.