• Member Avatar for KushMishra
    KushMishra

    Gave Reputation to Ketsuekiame in C# code error someone can help???

    Please copy and paste the error you're getting.
  • Member Avatar for KushMishra
    KushMishra

    Replied To a Post in C# code error someone can help???

    Hi, it seems like your `CurrentControl` is of type `TutorialControl` and then you are calling a method `Add()` from this class but we don't have any idea what is the …
  • Member Avatar for KushMishra
    KushMishra

    Marked Solved Status for Syntax help - VB.Net

    Hi all, I am a naive programmer to VB and VB.Net, I have mostly used C# and now I am stuck at a simple point as follows :- CollectionView.CollectionChanged += …
  • Member Avatar for KushMishra
    KushMishra

    Replied To a Post in Syntax help - VB.Net

    So, my whole code goes like following (but not sure still whether it is the correct approach or not and if not please do correct this one) :- Public Class …
  • Member Avatar for KushMishra
    KushMishra

    Replied To a Post in Syntax help - VB.Net

    Solved this one also by having :- Public Shared ReadOnly IsAutoScrollProperty As DependencyProperty = DependencyProperty.RegisterAttached("IsAutoScroll", GetType(Boolean), GetType(DataGridExtenders), New UIPropertyMetadata(False, Sub(a As DataGrid, b As DependencyPropertyChangedEventArgs) OnIsAutoScrollChanged(a, b))) Thanks to all …
  • Member Avatar for KushMishra
    KushMishra

    Marked Solved Status for WPF-Change selected row color in Frame

    Hello All, I am populating my frame from different pages and showing the output as a grid. Following is my xaml code :- <Frame x:Name="mainFrame" Grid.Row="1" JournalOwnership="UsesParentJournal" /> and xaml.cs …
  • Member Avatar for KushMishra
    KushMishra

    Replied To a Post in WPF-Change selected row color in Frame

    I don't think there's a way as there are no replies but anyways I solved this by changing the background of the rows and alternating rows of the datagrid I …
  • Member Avatar for KushMishra
    KushMishra

    Replied To a Post in Syntax help - VB.Net

    I solved this one also by applying the following code :- AddHandler grid.Items.CurrentChanged, Function() autoScroller But I am not sure if it would work or not. Anyways, I have another …
  • Member Avatar for KushMishra
    KushMishra

    Marked Solved Status for Pure C# to VB.Net Converter

    Hello All, I went through many websites and did not find any converter that could purely convert C# syntax to VB syntax. However there are many converters available on the …
  • Member Avatar for KushMishra
    KushMishra

    Replied To a Post in Pure C# to VB.Net Converter

    I think there are none as of now :)
  • Member Avatar for KushMishra
    KushMishra

    Replied To a Post in cannot find partition

    Hi, Check if your partition is password protected (like Bitlocker Encryption etc.)
  • Member Avatar for KushMishra
    KushMishra

    Replied To a Post in my computer's desktop isn't showing

    Hi, There may be different problems that cause the issue you are facing. 1. May be a video graphics driver update affected this(Generally happens with Windows 8). If this is …
  • Member Avatar for KushMishra
    KushMishra

    Replied To a Post in How to find the most frequent words in 4 GB txt?

    Hi, I am not sure but probably a software called "Crawler" may fix your issue. This crawler is used by many websites also like Google etc. May be it would …
  • Member Avatar for KushMishra
    KushMishra

    Created WPF-Change selected row color in Frame

    Hello All, I am populating my frame from different pages and showing the output as a grid. Following is my xaml code :- <Frame x:Name="mainFrame" Grid.Row="1" JournalOwnership="UsesParentJournal" /> and xaml.cs …
  • Member Avatar for KushMishra
    KushMishra

    Replied To a Post in Syntax help - VB.Net

    Hey, I replaced Function(p) with Sub(p) and that solved my problem. Ok now another one... Dim autoScroller = New EventHandler(Function(sender, e1) If grid.SelectedItem Is Nothing Then Return Nothing End If …
  • Member Avatar for KushMishra
    KushMishra

    Replied To a Post in Syntax help - VB.Net

    I already tried the same and in FindItem(SearchType.ForwardSkipCurrent) its showing "Expression does not produce a value"
  • Member Avatar for KushMishra
    KushMishra

    Replied To a Post in Syntax help - VB.Net

    Hi all, I did the above thing on my own using the following :- AddHandler CollectionView.CollectionChanged, AddressOf RebuildSearchIndex However, I am still struggling with the following code in c# and …
  • Member Avatar for KushMishra
    KushMishra

    Edited Syntax help - VB.Net

    Hi all, I am a naive programmer to VB and VB.Net, I have mostly used C# and now I am stuck at a simple point as follows :- CollectionView.CollectionChanged += …
  • Member Avatar for KushMishra
    KushMishra

    Created Syntax help - VB.Net

    Hi all, I am a naive programmer to VB and VB.Net, I have mostly used C# and now I am stuck at a simple point as follows :- CollectionView.CollectionChanged += …
  • Member Avatar for KushMishra
    KushMishra

    Replied To a Post in Pure C# to VB.Net Converter

    I mean to say that when at times I try converting my code from C# to VB, it sometimes throw some errors like "Class 'XXX' must implement 'Function XXX(abc,pqr,...)' for …
  • Member Avatar for KushMishra
    KushMishra

    Replied To a Post in Pure C# to VB.Net Converter

    I mean that when something that I convert through an online converter from C# to VB and then copy directly that particular code to Visual Studio, it sometimes shows some …
  • Member Avatar for KushMishra
    KushMishra

    Marked Solved Status for Some errors while converting from C# to VB.Net

    Hello All, I just wrote some code in C# and tried converting to VB.Net. I am getting 3 kinds of errors in my code :- 1. Class 'XXX' must implement …
  • Member Avatar for KushMishra
    KushMishra

    Marked Solved Status for Some errors while converting from C# to VB.Net

    Hello All, I just wrote some code in C# and tried converting to VB.Net. I am getting 3 kinds of errors in my code :- 1. Class 'XXX' must implement …
  • Member Avatar for KushMishra
    KushMishra

    Replied To a Post in Some errors while converting from C# to VB.Net

    Hey it solved my problem man...I did not think of deleting the code and letting the VS IDE generate for me but I wonder why it causes such problems even …
  • Member Avatar for KushMishra
    KushMishra

    Created Some errors while converting from C# to VB.Net

    Hello All, I just wrote some code in C# and tried converting to VB.Net. I am getting 3 kinds of errors in my code :- 1. Class 'XXX' must implement …
  • Member Avatar for KushMishra
    KushMishra

    Created Pure C# to VB.Net Converter

    Hello All, I went through many websites and did not find any converter that could purely convert C# syntax to VB syntax. However there are many converters available on the …

The End.