Click here to Skip to main content
15,907,687 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Auto Generate Mail or Message Pin
Anubhava Dimri17-Feb-10 17:10
Anubhava Dimri17-Feb-10 17:10 
GeneralRe: Auto Generate Mail or Message Pin
Ashfield17-Feb-10 21:31
Ashfield17-Feb-10 21:31 
GeneralRe: Auto Generate Mail or Message Pin
Anubhava Dimri18-Feb-10 0:09
Anubhava Dimri18-Feb-10 0:09 
GeneralRe: Auto Generate Mail or Message Pin
Ashfield18-Feb-10 0:42
Ashfield18-Feb-10 0:42 
QuestionHow to know multisession CD by using VB.Net? Pin
phowarso16-Feb-10 14:39
phowarso16-Feb-10 14:39 
AnswerRe: How to know multisession CD by using VB.Net? Pin
Anubhava Dimri16-Feb-10 22:34
Anubhava Dimri16-Feb-10 22:34 
QuestionDrop XML into TreeView? Pin
hat_master16-Feb-10 10:12
hat_master16-Feb-10 10:12 
AnswerRe: Drop XML into TreeView? Pin
DaveAuld16-Feb-10 11:02
professionalDaveAuld16-Feb-10 11:02 
On your TreeView properties, set AllowDrop=True on the TreeView

Add the following code to your Treeview Event handlers;
Private Sub TreeView1_DragDrop(ByVal sender As Object, ByVal e As System.Windows.Forms.DragEventArgs) Handles TreeView1.DragDrop

    Dim files As String() = CType(e.Data.GetData(DataFormats.FileDrop), String())

    For Each item As String In files
        'Modify your existing code to handle a file name passed to it
        'Pass the file name to your File Reader Function Here to populate the Treeview
    Next

End Sub

Private Sub TreeView1_DragEnter(ByVal sender As Object, ByVal e As System.Windows.Forms.DragEventArgs) Handles TreeView1.DragEnter

    If e.Data.GetDataPresent(DataFormats.FileDrop) Then
        e.Effect = DragDropEffects.Link
    Else
        e.Effect = DragDropEffects.None
    End If

End Sub
Dave

Don't forget to rate messages!
Find Me On: Web|Facebook|Twitter|LinkedIn
Waving? dave.m.auld[at]googlewave.com


GeneralRe: Drop XML into TreeView? Pin
William Winner16-Feb-10 11:16
William Winner16-Feb-10 11:16 
GeneralRe: Drop XML into TreeView? Pin
DaveAuld16-Feb-10 11:39
professionalDaveAuld16-Feb-10 11:39 
GeneralRe: Drop XML into TreeView? Pin
William Winner16-Feb-10 11:48
William Winner16-Feb-10 11:48 
GeneralRe: Drop XML into TreeView? Pin
hat_master16-Feb-10 16:30
hat_master16-Feb-10 16:30 
AnswerRe: Drop XML into TreeView? Pin
William Winner16-Feb-10 11:15
William Winner16-Feb-10 11:15 
QuestionWhat is the best way to return a large amount of related information from a routine? Pin
Euhemerus16-Feb-10 8:23
Euhemerus16-Feb-10 8:23 
AnswerRe: What is the best way to return a large amount of related information from a routine? Pin
William Winner16-Feb-10 9:40
William Winner16-Feb-10 9:40 
GeneralRe: What is the best way to return a large amount of related information from a routine? Pin
Euhemerus16-Feb-10 10:53
Euhemerus16-Feb-10 10:53 
Questionchange font format of button Pin
Coloniac16-Feb-10 8:05
Coloniac16-Feb-10 8:05 
AnswerRe: change font format of button Pin
Luc Pattyn16-Feb-10 8:31
sitebuilderLuc Pattyn16-Feb-10 8:31 
AnswerRe: change font format of button Pin
Coloniac16-Feb-10 9:09
Coloniac16-Feb-10 9:09 
GeneralRe: change font format of button Pin
Luc Pattyn16-Feb-10 9:18
sitebuilderLuc Pattyn16-Feb-10 9:18 
AnswerRe: change font format of button Pin
Euhemerus16-Feb-10 8:34
Euhemerus16-Feb-10 8:34 
AnswerRe: change font format of button Pin
David Skelly16-Feb-10 22:47
David Skelly16-Feb-10 22:47 
Questionautomatic login with webbrowser Pin
gokhan üstüner16-Feb-10 2:42
professionalgokhan üstüner16-Feb-10 2:42 
AnswerRe: automatic login with webbrowser Pin
DaveAuld16-Feb-10 2:50
professionalDaveAuld16-Feb-10 2:50 
AnswerRe: automatic login with webbrowser Pin
DaveAuld16-Feb-10 3:38
professionalDaveAuld16-Feb-10 3:38 

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.