Results 1 to 5 of 5

Thread: John McCain worked on VB 4?????

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jun 2000
    Posts
    99
    (I heard Al Gore helped work on Visual C++ 3.0)

    How can you do...
    Drag a text link from IE into a form in VB, and have it add that link's URL to a listbox?
    ___________________________
    Chris

  2. #2

    Thread Starter
    Lively Member
    Join Date
    Jun 2000
    Posts
    99
    wait, huh?
    ___________________________
    Chris

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Jun 2000
    Posts
    99
    Bill clinton worked on Microsoft PornStudio 5.0 Berret Edition.
    ___________________________
    Chris

  4. #4
    Lively Member
    Join Date
    Mar 2000
    Posts
    81

    Question Really?

    Is that true? I only ask because I heard that cbvbguy worked on Microsoft GetYourselfToTheTopOfTheMessageBoard 7.0 beta Professional Edition ... just as a matter of interest

  5. #5
    Fanatic Member gwdash's Avatar
    Join Date
    Aug 2000
    Location
    Minnesota
    Posts
    666
    To answer your question:
    Make sure to set the listbox's OLEDropMode property to 1(Manual)
    Add a ListBox to your form
    put the following code in:
    Code:
    Private Sub List1_OLEDragDrop(Data As DataObject, Effect As Long, Button As Integer, Shift As Integer, X As Single, Y As Single)
    Dim text As String
    text = Data.GetData(vbCFText)
    List1.AddItem text
    End Sub
    [Edited by gwdash on 09-17-2000 at 10:38 PM]
    GWDASH
    [b]VB6, Perl, ASP, HTML, JavaScript, VBScript, SQL, C, C++, Linux , Java, PHP, MySQL, XML[b]

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width