Search results for query: *

  • Users: Tazo85
  • Content: Threads
  • Order by date
  1. T

    Re-sizing Datagridview Columns Fails

    Hello, I have a databound Datagridview Where AllowUserToResizeColumns = True. In this Datagridview, I also have a Databound Combobox Column. Data for this column is pooled from a separate table. like this: da.Fill(dt) If dt.Rows.Count > 0 Then With MyCombobox...
  2. T

    Question Select into outfile Query... how to avoid writing BOMs

    Hello... below is my code: Try 'create export directory if needed If (Not System.IO.Directory.Exists(Trim(TextBox64.Text))) Then System.IO.Directory.CreateDirectory(Trim(TextBox64.Text)) End If Catch es As Exception End Try...
  3. T

    Question Free Statistics .Net library

    Hello, I wonder if someone would know a free statistics .net library to be used with vb.net. I will need to to run time-series and regressions with anova table. So far I found many commercial versions and few open sources alternatives with "bad" documentation and examples and am having...
  4. T

    Question insert file name in every line of the same file

    I have text file named 080512.txt (MMDDYY) with 17,000 lines of comma delimited data in it, like AAA, BBB, CCC AA1, BBB1, CCC1 etc. I'm trying to insert the file name as a separate column in file, like AAA, BBB, CCC, 080512 AA1, BBB1, CCC1, 080512 etc. Can some please suggest a sample...
Back
Top