Search results for query: *

  1. M

    Question run item from checkbox list

    Do you mean something like this for (int i = 0; i<= list.Items.Count-1; i++) { var z = list.Items[i] as CheckBox; if (z != null) { if (z.IsChecked == true && i == 0) //first item checked and determined...
  2. M

    Question How to manage Visual Studio project versions

    I do the same at home, exit Visual Studio, zip the project folder and upload it additionally on Dropbox. The companies I worked and I work for use GitBlit which is free and Team Foundation Server. You can restore an earlier version of an uploaded project if something went wrong.
  3. M

    Question Try to bind DataTable to DataGrid and filter it in best practice

    I have always been working with an ObservableCollection<T> sometimes with and sometimes without the Nuget extension Reactive Properties. Before filtering I have created a backup of the original items and then I removed those which had not fulfilled the criteria of the search string. As long as...
  4. M

    Question Displacement of numbers

    Maybe somehting like this. You can use a bootstrap algorithm to shift the numbers randomly. As long as the string is small. public class Test { public List<String> ShiftedNumbers = new List<string>(); public static Random Random = new Random(); public String...
  5. M

    Iterations - Speed problems

    Hi, I am struggling with speed-issues regarding iterations. My app reads lines from files into memory. Then the strings are processed and the content is condensed and stored in a new file. It is a bit like finding pairs and put everything in common. Information from few lines are insert into a...
Back
Top Bottom