Click here to Skip to main content
15,902,735 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questiondisable right click of mouse Pin
hrishi3212-May-09 5:06
hrishi3212-May-09 5:06 
AnswerRe: disable right click of mouse Pin
Dave Kreskowiak2-May-09 5:32
mveDave Kreskowiak2-May-09 5:32 
AnswerRe: disable right click of mouse Pin
dan!sh 2-May-09 7:11
professional dan!sh 2-May-09 7:11 
QuestionSet Property of Read-Only to be False on Form Pin
ymilan2-May-09 4:39
ymilan2-May-09 4:39 
AnswerRe: Set Property of Read-Only to be False on Form Pin
Dave Kreskowiak2-May-09 4:52
mveDave Kreskowiak2-May-09 4:52 
GeneralRe: Set Property of Read-Only to be False on Form Pin
ymilan2-May-09 4:58
ymilan2-May-09 4:58 
GeneralRe: Set Property of Read-Only to be False on Form Pin
Dave Kreskowiak2-May-09 5:30
mveDave Kreskowiak2-May-09 5:30 
GeneralRe: Set Property of Read-Only to be False on Form Pin
ymilan2-May-09 5:45
ymilan2-May-09 5:45 
So there is no way to just set the form to be writable off the bat?

I tried several mouseover, mousemove events that I found on net tutorials.   None of them worked.   HEre is code I have so far.

Private Sub Image1_DragEnter(ByVal sender As Object, _
ByVal e As System.Windows.Forms.DragEventArgs) _
Handles Image1.DragEnter
            Dim Button As Short

            If (e.Data.GetDataPresent(DataFormats.Bitmap)) Then

                  If (Button = VB6.MouseButtonConstants.LeftButton) Then  
e.Effect = DragDropEffects.Copy
            Else
                  e.Effect = DragDropEffects.Move
            End If


      End Sub
      'Private Sub Hearts_DragDrop(ByVal sender As Object, _
      'ByVal e As System.Windows.Forms.DragEventArgs) _
      'Handles Hearts.DragDrop
      'Hearts.Item = e.Data.GetData(DataFormats.Bitmap)
      'End Sub

      Private Sub Hearts_DragOver(ByVal sender As Object, _
      ByVal e As System.Windows.Forms.DragEventArgs) _
      Handles Hearts.DragOver

      End Sub
      Private Sub Clubs_DragOver(ByVal sender As Object, _
      ByVal e As System.Windows.Forms.DragEventArgs) _
      Handles Clubs.DragOver

      End Sub
      Private Sub Hearts_DragLeave(ByVal sender As Object, _
      ByVal e As System.EventArgs) _
      Handles Hearts.DragLeave

      End Sub
      Private Sub Clubs_DragLeave(ByVal sender As Object, _
      ByVal e As System.EventArgs) _
      Handles Clubs.DragLeave

Sorry I'm a newbie, but I'm really trying....much appreciation in advance.
GeneralRe: Set Property of Read-Only to be False on Form Pin
ymilan2-May-09 6:13
ymilan2-May-09 6:13 
GeneralRe: Set Property of Read-Only to be False on Form Pin
Dave Kreskowiak2-May-09 16:24
mveDave Kreskowiak2-May-09 16:24 
GeneralRe: Set Property of Read-Only to be False on Form Pin
Dave Kreskowiak2-May-09 16:25
mveDave Kreskowiak2-May-09 16:25 
GeneralRe: Set Property of Read-Only to be False on Form Pin
ymilan3-May-09 4:07
ymilan3-May-09 4:07 
AnswerRe: Set Property of Read-Only to be False on Form Pin
Tiyani Miyambo4-May-09 0:30
Tiyani Miyambo4-May-09 0:30 
Questionwaitforexit Pin
hrishi3212-May-09 4:34
hrishi3212-May-09 4:34 
AnswerRe: waitforexit Pin
Dave Kreskowiak2-May-09 4:49
mveDave Kreskowiak2-May-09 4:49 
GeneralRe: waitforexit Pin
hrishi3212-May-09 5:01
hrishi3212-May-09 5:01 
GeneralRe: waitforexit Pin
Henry Minute2-May-09 5:08
Henry Minute2-May-09 5:08 
GeneralRe: waitforexit Pin
hrishi3212-May-09 5:10
hrishi3212-May-09 5:10 
GeneralRe: waitforexit Pin
Dave Kreskowiak2-May-09 5:22
mveDave Kreskowiak2-May-09 5:22 
GeneralRe: waitforexit Pin
hrishi3212-May-09 5:11
hrishi3212-May-09 5:11 
GeneralRe: waitforexit Pin
Dave Kreskowiak2-May-09 5:26
mveDave Kreskowiak2-May-09 5:26 
Questionhide TaskBar with the form Pin
hrishi3212-May-09 4:22
hrishi3212-May-09 4:22 
AnswerRe: hide TaskBar with the form Pin
Eddy Vluggen2-May-09 4:40
professionalEddy Vluggen2-May-09 4:40 
QuestionDirListBox control in vb.net2005 Pin
hrishi3212-May-09 4:18
hrishi3212-May-09 4:18 
AnswerRe: DirListBox control in vb.net2005 Pin
Dave Kreskowiak2-May-09 4:47
mveDave Kreskowiak2-May-09 4: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.