Click here to Skip to main content
15,898,134 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Releasing a VB application for use in a Win PE Pin
Slingshot II10-Aug-11 4:10
Slingshot II10-Aug-11 4:10 
GeneralRe: Releasing a VB application for use in a Win PE Pin
Eddy Vluggen10-Aug-11 10:48
professionalEddy Vluggen10-Aug-11 10:48 
QuestionPlease look at this discussion Pin
User 76894774-Aug-11 20:22
User 76894774-Aug-11 20:22 
AnswerRe: Please look at this discussion Pin
Andy_L_J4-Aug-11 20:54
Andy_L_J4-Aug-11 20:54 
AnswerRe: Please look at this discussion Pin
Dalek Dave23-Aug-11 11:26
professionalDalek Dave23-Aug-11 11:26 
QuestionDouble Firing Event Pin
eddieangel4-Aug-11 13:10
eddieangel4-Aug-11 13:10 
AnswerRe: Double Firing Event Pin
Dave Kreskowiak4-Aug-11 13:56
mveDave Kreskowiak4-Aug-11 13:56 
GeneralRe: Double Firing Event Pin
eddieangel5-Aug-11 6:19
eddieangel5-Aug-11 6:19 
That helped me to isolate the issue, it seems to be firing on down and up. I was able to fix it with this:

Protected Overrides Function ProcessKeyPreview(ByRef m As System.Windows.Forms.Message) As Boolean
        Const WM_KEYDOWN As Integer = 256
        If m.Msg = WM_KEYDOWN Then
            Select Case m.WParam.ToInt32()
                Case 37
                    Me.DtRecordInfoBindingSource.MovePrevious()
                    Return True
                Case 39
                    Me.DtRecordInfoBindingSource.MoveNext()
                    Return True
            End Select
        End If
        Return False
    End Function

AnswerRe: Double Firing Event Pin
MicroVirus9-Aug-11 13:49
MicroVirus9-Aug-11 13:49 
QuestionImage Reconstruction Using Genetic algorithm for Minimize the Number of projection and Maximize the Image Quality in C/C++/Matlab Pin
Kartheeswaran.S3-Aug-11 0:10
Kartheeswaran.S3-Aug-11 0:10 
AnswerRe: Image Reconstruction Using Genetic algorithm for Minimize the Number of projection and Maximize the Image Quality in C/C++/Matlab Pin
Richard MacCutchan3-Aug-11 1:24
mveRichard MacCutchan3-Aug-11 1:24 
AnswerRe: Image Reconstruction Using Genetic algorithm for Minimize the Number of projection and Maximize the Image Quality in C/C++/Matlab Pin
Dave Kreskowiak3-Aug-11 2:06
mveDave Kreskowiak3-Aug-11 2:06 
Questionresizing form with a RTB inside Pin
hang_em2-Aug-11 23:58
hang_em2-Aug-11 23:58 
AnswerRe: resizing form with a RTB inside Pin
Dave Kreskowiak3-Aug-11 2:05
mveDave Kreskowiak3-Aug-11 2:05 
GeneralRe: resizing form with a RTB inside Pin
hang_em3-Aug-11 18:01
hang_em3-Aug-11 18:01 
GeneralRe: resizing form with a RTB inside Pin
Dave Kreskowiak3-Aug-11 18:39
mveDave Kreskowiak3-Aug-11 18:39 
GeneralRe: resizing form with a RTB inside Pin
hang_em4-Aug-11 3:24
hang_em4-Aug-11 3:24 
GeneralRe: resizing form with a RTB inside Pin
Dave Kreskowiak4-Aug-11 13:55
mveDave Kreskowiak4-Aug-11 13:55 
QuestionCallbackOnCollectedDelegate was detected with LowLevelMouserProc Pin
Member 78319591-Aug-11 11:46
Member 78319591-Aug-11 11:46 
QuestionFont ComboBox add to Toolstrip Pin
nyt197231-Jul-11 3:13
professionalnyt197231-Jul-11 3:13 
AnswerRe: Font ComboBox add to Toolstrip Pin
Dave Kreskowiak31-Jul-11 4:24
mveDave Kreskowiak31-Jul-11 4:24 
GeneralRe: Font ComboBox add to Toolstrip Pin
nyt197231-Jul-11 18:36
professionalnyt197231-Jul-11 18:36 
GeneralRe: Font ComboBox add to Toolstrip Pin
Dave Kreskowiak1-Aug-11 3:49
mveDave Kreskowiak1-Aug-11 3:49 
GeneralRe: Font ComboBox add to Toolstrip Pin
nyt19722-Aug-11 1:42
professionalnyt19722-Aug-11 1:42 
GeneralRe: Font ComboBox add to Toolstrip Pin
Dave Kreskowiak2-Aug-11 3:47
mveDave Kreskowiak2-Aug-11 3:47 

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.