borderAndreaVB free resources for Visual Basic developersborder

borderAndreaVB Visual Basic and VB.NET source code resources - Copyright © 1999-2007 Andrea Tincaniborder

AndreaVB Home | News Home | Forum Home | Downloads | Register | Search | PM | Profile

Previous Topic (New Download: Always On Top Property At Runtime)Next Topic (New Download: XML Gui Sample) New Topic Post Reply
AndreaVB OnLine : AndreaVB Downloads News and Comments : New Download: Any-to-Any database converter
Poster Resource
vb4vengy
Level: Guest

icon New Download: Any-to-Any database converter

New download available:
Any-to-Any database converter

Description:
Using ADO & ADOX, convert between various
database formats like Text, Access, Excel,
dBASE, Paradox, HTML. you are not required to have that specific application installed to generate the destination (output) database.
for example, without having Excel installed, you can create Excel sheet.

06-08-2003 at 11:40 PM
| Add Comment
vb4vengy
Level: Guest

icon Bug fix

There is a small change in frmConvert -> LoadFields()
'--------------------------------------------------------
Public Sub LoadFields()

Dim i As Integer

If lvFields.ColumnHeaders.Count = 0 Then
    lvFields.ColumnHeaders.Add , , "Field Name", 3000
    lvFields.ColumnHeaders.Add , , "Field Type", 2000
    lvFields.ColumnHeaders.Add , , "Field Size", 2000
End If

i = 1
For Each flds In rs.Fields
    Set li = lvFields.ListItems.Add(i, , flds.Name)
    Set lsi = lvFields.ListItems(i).ListSubItems.Add(1, , FindFieldType(flds.Type))
    
    If rs.RecordCount > 0 Then
        Set lsi = lvFields.ListItems(i).ListSubItems.Add(2, , flds.ActualSize)
    End If
    
    i = i + 1
Next

End Sub

'--------------------------------------------------------

07-08-2003 at 11:12 AM
| Add Comment
AndreaVB OnLine : AndreaVB Downloads News and Comments : New Download: Any-to-Any database converter
Previous Topic (New Download: Always On Top Property At Runtime)Next Topic (New Download: XML Gui Sample)New Topic Post Reply
Surf To:


Not Logged In? Username: Password: Lost your password?
Partners: Download Actual Software | Free Software Download
borderAndreaVB free resources for Visual Basic developersborder

borderAndreaVB Visual Basic and VB.NET source code resources - Copyright © 1999-2007 Andrea Tincaniborder