Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by edderic

  1. edderic

    Read from textfile

    Thats not the problem : For LineCnt = 1 To 46 0 is the primary key Eric Eric De Decker
  2. edderic

    Read from textfile

    I am a textfile of 8 Mb with line records,if The line = "#CHLI" then the next 40 lines are = 40 database fields and insert to the database (Access). In total 20.000 records with 40 fields to insert,the code is place to backgroundworker buth de insert is 1 hour to do complete !!! The code : If...
  3. edderic

    Time Fields

    How can i with Crystal reports values of time fields with "0:00" surpress ? With a formula ? Thanks Eric Eric De Decker Visit The Belgium "Visual Basic Group" at http://www.vbgroup.org
  4. edderic

    Report Application Server Failed (.Net & CR 10)

    You are missing this : Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo() myConnectionInfo.ServerName = ServerName myConnectionInfo.DatabaseName = "Q-Cycle" myConnectionInfo.UserID = "sa" myConnectionInfo.Password = "sa" Eric De...
  5. edderic

    Running .exe via a mapped drive

    Set de server machine for intranet (netwerk) tot FullTrust. Framwork 2.0 config Eric De Decker Visit The Belgium "Visual Basic Group" at http://www.vbgroup.org
  6. edderic

    SQL Insert Update

    insertcmd.ExecuteNonQuery() Eric De Decker Visit The Belgium "Visual Basic Group" at http://www.vbgroup.org
  7. edderic

    Listview grouping

    nobody that have a sample listview grouping with VB.Net 2005 Beta2 ? Thanks ps:not in C# Eric De Decker Visit The Belgium "Visual Basic Group" at http://www.vbgroup.org
  8. edderic

    Framework and CD-rom

    is there a Class on the frameword to write data to CD's ? Eric De Decker Visit The Belgium "Visual Basic Group" at http://www.vbgroup.org
  9. edderic

    Change dot (.) to comma (,)

    Ho can i change the value 20.35 in a datagridview cell to 20,35 ? Eric De Decker Visit The Belgium "Visual Basic Group" at http://www.vbgroup.org
  10. edderic

    Data Binding Not Writing

    Declare CommandBuilder for Update and Acceptchanges Private bob As OdbcCommandBuilder = New OdbcCommandBuilder(DataAdapter) Eric De Decker Visit The Belgium "Visual Basic Group" at http://www.vbgroup.org
  11. edderic

    Coding a click event for LinkLabel

    Its start the site in de linlabel Private Sub lblWebsite_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles lblWebsite.LinkClicked System.Diagnostics.Process.Start(lblWebsite.Text) End Sub Eric De Decker Visit The...
  12. edderic

    KeyPress on NumericUpDown

    What is now the question ? The ENTER key or validation ! And what is emits ? Eric De Decker Visit The Belgium "Visual Basic Group" at http://www.vbgroup.org
  13. edderic

    KeyPress on NumericUpDown

    Why not : Private Sub NumericUpDown1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles NumericUpDown1.KeyPress If e.KeyChar = Microsoft.VisualBasic.Chr(13) Then SendKeys.Send(vbTab) End If End Sub Eric De Decker Visit...
  14. edderic

    ADO.NET fill listboxes / comboxes

    Public conn As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Application.StartupPath & "\QTrace.mdb;Persist Security Info=False;" Public oledbcon As New OleDbConnection(conn) Records tonen : oledbcon.Open() Dim adapterRelaties As New OleDbDataAdapter("Select * from Relaties"...
  15. edderic

    creating a directory

    Dim path As String = "c:\MyDir" Dim di As DirectoryInfo = Directory.CreateDirectory(path) Eric De Decker Visit The Belgium "Visual Basic Group" at http://www.vbgroup.org

Part and Inventory Search

Back
Top