Search results for query: *

  1. F

    check db for file and add to listbox

    I have a program that search for files. I created an access table that include excluded files and file paths. Here are the fields: ExcludePath: C:\Windows\Media\recycle.wav C:\Windows\explorer.exe C:\Windows\Help\camera.chm ExcludeFileName: recycle.wav explorer.exe camera.chm I need to...
  2. F

    adding files to listboxes

    I have a program that will search directories and add files to a listbox by the extension you enter. I have a table created in access that contains files. The program will check the database to see if files exist. I have it where if the path in tblExclude is equal to the path textbox1 then add...
  3. F

    insert file

    I am inserting text files into MySQL using vb.net. However, when I insert the files in to the database it only insert every other file. For example, it will insert one file then the next row will be zeros. Does any one know why it might be doing this. Here is some code: Dim myConnString...
  4. F

    Insert into MySql using vb.net

    Private Sub InsertItems(ByVal OrderDate As String, ByVal OrderCustomer As String, ByVal OrderAcctNum As String, ByVal OrderType As String, ByVal OrderSoNum As String, ByVal OrderItemPartNum As String, ByVal OrderItemPartDesc As String, ByVal OrderItemQty As String, ByVal OrderItemQtyRec As...
  5. F

    Insert into MySql using vb.net

    The data that is being stored are text files.
  6. F

    Insert into MySql using vb.net

    I am trying to insert items into MySQL db using parameters but I keep getting this error message: Failed to convert parameter value from a String to a DateTime. Here is some sample code: Dim myConnString AsString = "DRIVER={MySQL ODBC 3.51 Driver};" & _ "SERVER=192.168.1.27;" & _...
Back
Top