Click here to Skip to main content
16,005,697 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: what is wrong with this code????? Pin
Dave Kreskowiak21-Apr-05 16:32
mveDave Kreskowiak21-Apr-05 16:32 
GeneralRe: what is wrong with this code????? Pin
hjaycox22-Apr-05 9:38
hjaycox22-Apr-05 9:38 
GeneralRe: what is wrong with this code????? Pin
Dave Kreskowiak22-Apr-05 13:10
mveDave Kreskowiak22-Apr-05 13:10 
GeneralListView DragDrop Pin
RobDog88821-Apr-05 13:01
RobDog88821-Apr-05 13:01 
GeneralRe: ListView DragDrop Pin
Dave Kreskowiak21-Apr-05 16:19
mveDave Kreskowiak21-Apr-05 16:19 
GeneralRe: ListView DragDrop Pin
Anonymous21-Apr-05 18:56
Anonymous21-Apr-05 18:56 
GeneralRe: ListView DragDrop Pin
Dave Kreskowiak22-Apr-05 0:57
mveDave Kreskowiak22-Apr-05 0:57 
GeneralRe: ListView DragDrop Pin
RobDog88822-Apr-05 6:28
RobDog88822-Apr-05 6:28 
Here is some demo code for VB6. If you drag an item and drop it anywhere in the listview it will move to that position.

Option Explicit<br />
'Add a ListView to your form (ListView1)<br />
Private Sub Form_Load()<br />
    Dim i As Integer<br />
    With ListView1<br />
        .Arrange = lvwAutoTop<br />
        .HideSelection = False<br />
        .LabelEdit = lvwManual<br />
        .MultiSelect = False<br />
        .Sorted = False<br />
        .View = lvwIcon<br />
        For i = 1 To 50<br />
            .ListItems.Add , , i<br />
        Next<br />
    End With<br />
End Sub 

GeneralHelp: Combo Box Items Pin
Anonymous21-Apr-05 11:36
Anonymous21-Apr-05 11:36 
GeneralRe: Help: Combo Box Items Pin
Dave Kreskowiak21-Apr-05 16:13
mveDave Kreskowiak21-Apr-05 16:13 
Generalsetting a variable NAME Pin
mike2k521-Apr-05 8:29
mike2k521-Apr-05 8:29 
GeneralRe: setting a variable NAME Pin
Anonymous21-Apr-05 9:26
Anonymous21-Apr-05 9:26 
GeneralRe: setting a variable NAME Pin
Colin Angus Mackay22-Apr-05 0:32
Colin Angus Mackay22-Apr-05 0:32 
GeneralQuery !! Pin
vishalmishra21-Apr-05 7:51
vishalmishra21-Apr-05 7:51 
GeneralRe: Query !! Pin
vertig073021-Apr-05 9:52
vertig073021-Apr-05 9:52 
GeneraltStartup Application Pin
ADY00721-Apr-05 7:33
ADY00721-Apr-05 7:33 
GeneralRe: tStartup Application Pin
Dave Kreskowiak21-Apr-05 7:41
mveDave Kreskowiak21-Apr-05 7:41 
QuestionHow to enable/disable &amp; list network adapter in VB. Pin
BOOGIEMAN1ManClan21-Apr-05 6:16
BOOGIEMAN1ManClan21-Apr-05 6:16 
AnswerRe: How to enable/disable &amp; list network adapter in VB. Pin
Dave Kreskowiak21-Apr-05 7:17
mveDave Kreskowiak21-Apr-05 7:17 
GeneralRe: How to enable/disable &amp; list network adapter in VB. Pin
Anonymous21-Apr-05 7:21
Anonymous21-Apr-05 7:21 
GeneralRe: How to enable/disable &amp; list network adapter in VB. Pin
Dave Kreskowiak21-Apr-05 7:32
mveDave Kreskowiak21-Apr-05 7:32 
GeneralRe: How to enable/disable &amp; list network adapter in VB. Pin
Scott Serl21-Apr-05 8:32
Scott Serl21-Apr-05 8:32 
GeneralVariables, &lt;&gt;, and IF Statements Pin
Anonymous21-Apr-05 5:34
Anonymous21-Apr-05 5:34 
GeneralRe: Variables, &lt;&gt;, and IF Statements Pin
Dave Kreskowiak21-Apr-05 6:32
mveDave Kreskowiak21-Apr-05 6:32 
GeneralRe: Variables, &lt;&gt;, and IF Statements Pin
Anonymous21-Apr-05 6:49
Anonymous21-Apr-05 6:49 

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.