Search results for query: *

  1. B

    Filtering Datagridview String and Integer

    thanks to help me, now i have the same error but i have some changes... First Dim pendiente,longitud,parametro,... As Double While Not Archivo.EndOfStream stringReader = Archivo.ReadLine() pendiente = 0 longitud = 0 parametro = 0 ... pendiente = Val(stringReader.Substring(7, 11).Trim)...
  2. B

    Filtering Datagridview String and Integer

    Thanks to tray to help me ,but i still have the same problem Dim source1 As New BindingSource() Dim view1 As New DataView(dset.Tables(0)) source1.DataSource = view1 source1.Filter = "longitud>=" & CDbl(TextBox1.Text) and the error Can not perform operetion...
  3. B

    Filtering Datagridview String and Integer

    Hi, I have a grid from a txt file that contains: A B C D 0.733333 120.000 20007.047 9365.221 6.731220 50.000 9292.373 9562.563 12.111977 62.627 1250.000...
  4. B

    Problems with conversion datagrid to excel

    thanks for all ,you are right.. :)
  5. B

    Problems with conversion datagrid to excel

    Hi ! I have a problem with conversion from a grid to excel ,i hope that someone con help me... El grid has: 0.733333 120.000 20007.047 9365.221 170.263 9305.221 170.219 9425.221 170.667 0.090 0.600 6.731220 50.000 9292.373 9562.563 171.592 9537.563 171.423 9587.563 171.894 0.034 0.538...
  6. B

    Problems with an update from dataset to an access

    Hi, I am using vb.net 2005, I have a dataset created with the wizard, and some textboxs linked to a database access, also I have created with a wizard a personesdatatableadapter, oledbconnection1, oledbdatadapter1, oledbcommand1 The fact is that in the textbox, I was perfectly show the...
Back
Top