Click here to Skip to main content
16,014,765 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionFTP folderlist [modified] Pin
Tom Deketelaere19-Oct-07 3:53
professionalTom Deketelaere19-Oct-07 3:53 
QuestionOnly download if newer version available? Pin
Brad^19-Oct-07 3:41
Brad^19-Oct-07 3:41 
AnswerRe: Only download if newer version available? Pin
svanwass19-Oct-07 9:21
svanwass19-Oct-07 9:21 
Questionproblem in edting in app config file in windows apllication Pin
Piyush Vardhan Singh19-Oct-07 3:39
Piyush Vardhan Singh19-Oct-07 3:39 
QuestionNamespace for .NET 1.1 for sending e-mail Pin
Vimalsoft(Pty) Ltd19-Oct-07 3:23
professionalVimalsoft(Pty) Ltd19-Oct-07 3:23 
AnswerRe: Namespace for .NET 1.1 for sending e-mail Pin
svanwass19-Oct-07 9:22
svanwass19-Oct-07 9:22 
GeneralRe: Namespace for .NET 1.1 for sending e-mail Pin
Vimalsoft(Pty) Ltd21-Oct-07 19:57
professionalVimalsoft(Pty) Ltd21-Oct-07 19:57 
QuestionDatagrid doesn't import all my .csv data !! Pin
blonkie19-Oct-07 1:32
blonkie19-Oct-07 1:32 
I have an datagrid who is filled automaticly by an .csv file

<br />
Private Sub frmCsv_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load<br />
<br />
Dim file As String = "steelandt.csv"<br />
        Dim pad As String = "C:\"<br />
        Dim dataset As New DataSet<br />
<br />
        Try<br />
            Dim bestand As System.IO.File<br />
            If bestand.Exists(pad & file) Then<br />
                Dim ConStr As String = _<br />
                "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & _<br />
                pad & ";Extended Properties=""Text;HDR=Yes;FMT=Delimited\"""<br />
                Dim conn As New OleDb.OleDbConnection(ConStr)<br />
                Dim databaseAdapter As New OleDb.OleDbDataAdapter("Select [PO],[Item],[Due Date],[Item Description] from " & _<br />
                file + " WHERE PO>0 order by PO ASC", conn)<br />
                databaseAdapter.Fill(dataset)<br />
            End If<br />
<br />
            <br />
        Catch ex As Exception<br />
            MessageBox.Show(ex.ToString)<br />
        End Try<br />
<br />
        DataGrid.DataSource = dataset.Tables(0)<br />
<br />


Now as you can see I import just 4 columns (PO, Item,Due Date and Item description)
When I run the program everything works except :

It doesn't load the item and due date colum....
and to make it worse, it imports just a few values of the column item

How come ??
QuestionHow To Pin
Kronfolitto19-Oct-07 1:17
Kronfolitto19-Oct-07 1:17 
AnswerRe: How To Pin
Colin Angus Mackay19-Oct-07 1:38
Colin Angus Mackay19-Oct-07 1:38 
AnswerRe: How To Pin
The ANZAC19-Oct-07 12:23
The ANZAC19-Oct-07 12:23 
QuestionPublishing a vb.net application with an access database. Pin
Mr Oizo18-Oct-07 22:09
Mr Oizo18-Oct-07 22:09 
AnswerRe: Publishing a vb.net application with an access database. Pin
Vimalsoft(Pty) Ltd19-Oct-07 0:08
professionalVimalsoft(Pty) Ltd19-Oct-07 0:08 
AnswerRe: Publishing a vb.net application with an access database. Pin
blonkie19-Oct-07 1:34
blonkie19-Oct-07 1:34 
QuestionTracking an external process Pin
Vivek Narayanan18-Oct-07 20:19
Vivek Narayanan18-Oct-07 20:19 
AnswerRe: Tracking an external process Pin
Abhijit Jana18-Oct-07 21:57
professionalAbhijit Jana18-Oct-07 21:57 
AnswerRe: Tracking an external process Pin
svanwass19-Oct-07 9:24
svanwass19-Oct-07 9:24 
QuestionIs it possible to append a file placed on server using ftp or any option? Pin
all names are already registered so noname18-Oct-07 19:53
all names are already registered so noname18-Oct-07 19:53 
AnswerRe: Is it possible to append a file placed on server using ftp or any option? Pin
Tom Deketelaere18-Oct-07 21:07
professionalTom Deketelaere18-Oct-07 21:07 
QuestionRGB color to system.drawing.color Pin
nishkarsh_k18-Oct-07 19:27
nishkarsh_k18-Oct-07 19:27 
AnswerRe: RGB color to system.drawing.color Pin
Guffa18-Oct-07 19:40
Guffa18-Oct-07 19:40 
GeneralRe: RGB color to system.drawing.color Pin
nishkarsh_k18-Oct-07 19:50
nishkarsh_k18-Oct-07 19:50 
QuestionConstraints on Database Pin
The ANZAC18-Oct-07 17:25
The ANZAC18-Oct-07 17:25 
AnswerRe: Constraints on Database Pin
Paul Conrad28-Oct-07 11:59
professionalPaul Conrad28-Oct-07 11:59 
QuestionHelp with OLEDB error [modified] Pin
Brad^18-Oct-07 13:54
Brad^18-Oct-07 13:54 

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.