Search results for query: *

  1. kaizen

    Remove Elements from a list

    Thanks. I did not use it directly but it gave me another idea that has speed things up.
  2. kaizen

    Remove Elements from a list

    Hi, I have a List of a custom class (barData) that I need to remove elements form based on a date. The bardata class holds data of stock price information. PriceDate Open High Low Close Volume I have Public QuoteData As New List(Of BarData)() Which then gets loaded with data for each day...
  3. kaizen

    Question SortedDictionary

    Exactly what I needed. Thank you. :D
  4. kaizen

    Question SortedDictionary

    I am using a SortedDictionary and have a question about sorting the results on the value rather then the key or a way to get top x results and top x bottom results. The SortedDictionary has a list of stocks as the Key and list of their percent moves over a time period as the value. Is a...
  5. kaizen

    Question Show Check Box in DataGrid

    Hi All. I am using the code below to show the results of a dataset that I want to import in to a database. I want to add a new column (as the first one) that shows a check box. If the check box is ticked then I will import the record if it is not then I wil skip the record. How do i show a...
  6. kaizen

    C# To Vb.net

    Thanks John that did the trick. Slowly getting my way through the multi threading stuff as well.
  7. kaizen

    C# To Vb.net

    The code you posted if from another C# to Vb.net converter. I have tired that but did not have any luck either. For some reason you can not use If Thread.CurrentThread <> _plugin.mainThread Then in vb.net. Any ideas? The main problem is with the _synchContext.Post(...) parts. The rest I can...
  8. kaizen

    C# To Vb.net

    Hi guys, I am trying to convert some C# code into Vb.NEt and it is giving me some hassles. The C# code is below. using System; using System.Collections.Generic; using System.Text; using RightEdge.Common; using fxClientAPI; using System.Diagnostics; using System.Threading; [Serializable]...
Back
Top