Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

SRKSHOME

@SRKSHOME
About
Posts
115
Topics
59
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • ToolTip is not fully visible
    S SRKSHOME

    Hi, I have a textbox and which is having validation on its data. I am showing data error as a tooltip. But tooltip is not visible fully.how do i wrap it or increase its width?

    <Setter Property="Validation.ErrorTemplate"
    Value="{StaticResource ErrorTemplate}" />
    <Style.Triggers>
    <Trigger Property="Validation.HasError" Value="True">
    <Setter Property="ToolTip">
    <Setter.Value>
    <Binding Path="(Validation.Errors)[0].ErrorContent" RelativeSource="{x:Static RelativeSource.Self}" />
    </Setter.Value>
    </Setter>
    <Setter Property="BorderBrush" Value="#FF666666"/>
    </Trigger>
    </Style.Triggers>

    WPF question database wpf wcf help

  • hwo to sort observabale collection?
    S SRKSHOME

    Hi, I have observableCollection which contains string types. How do I sort it?

    C# question

  • control is not accessible in code behind
    S SRKSHOME

    thanks...I have fixed...Somehow InitinitializeComponent() was not being called..

    WPF wpf csharp visual-studio design question

  • control is not accessible in code behind
    S SRKSHOME

    yes..that is being called

    WPF wpf csharp visual-studio design question

  • control is not accessible in code behind
    S SRKSHOME

    Hi, I have few simple controls defined in xaml in wpf. In the code behind when I try to access this control they are coming up and also coming in VS intellisence. But during run time these controls are always null. as a result UI doesn't show. Any reasons? Thanks

    WPF wpf csharp visual-studio design question

  • how to hide particular grid.
    S SRKSHOME

    Hi, I have a simple grid which contains many controls.This grid is defined in resource disctionary. I wanted to hide particular grid in code. But I am not able access this grid in the code as this is defined in resource dictionary. How do I hide this grid..? thanks..

    WPF question css tutorial learning

  • how to write regular expression for this code?
    S SRKSHOME

    got it..thanks. sometimes we think too much for simple ones.

    C# question regex tutorial

  • how to write regular expression for this code?
    S SRKSHOME

    my requirement is if a string starts with "L#",or "G#" or "X#" i dont want to replace some part of the string. Otherwise I will replace. for example: string identifier="L#1234"; In this case I dont want to replace any thing there. Otherewise I would replace some part of the string there.

    C# question regex tutorial

  • how to write regular expression for this code?
    S SRKSHOME

    it was my mistake..yes...identifier is a string type.

    C# question regex tutorial

  • how to write regular expression for this code?
    S SRKSHOME

    hi, I have below code. how do I replace with regular expression or much sipler to this.? many thanks

    if(!identier.StartsWith("L#")
    identifier.Replace(something,"");
    if(!identier.StartsWith("X#")
    identifier.Replace(something,"");
    if(!identier.StartsWith("G#")
    identifier.Replace(something,"");

    C# question regex tutorial

  • how to simplify the loop?
    S SRKSHOME

    Hi I have following loop. With one of the workflow, rangeDataMappingsToClear gets 100,000 records and rangeKeyMappings gets 10,000 records. This is taking long time hence application hangs. How to simplify this loop?

    List rangeDataMappingsToClear= new List();
    Dictionary<string, object> rangeDataMappings = new Dictionary<string, object>();
    Dictionary<string, List<string>> rangeKeyMappings = new Dictionary<string, List<string>>();

    foreach (string key in rangeDataMappingsToClear)
    {
    rangeDataMappings.Remove(key);
    foreach (List<string> formulaKeys in rangeKeyMappings.Values)
    {
    while (formulaKeys.Remove(key)) { }
    }
    }
    rangeDataMappingsToClear.Clear();

    C# tutorial question workspace

  • How to retrieve single row from datatable?
    S SRKSHOME

    Hi, I have a datatable in which i know one value of a column. How to get entire row of that particular data? Thanks

    C# tutorial question

  • how to find out installed MS-office is 64-bit or 32-bit via registry?
    S SRKSHOME

    I am using Win7 64-bit

    C# windows-admin tutorial question

  • how to find out installed MS-office is 64-bit or 32-bit via registry?
    S SRKSHOME

    I also got the same when I googled it.This registry key is not there in my machine.

    C# windows-admin tutorial question

  • how to find out installed MS-office is 64-bit or 32-bit via registry?
    S SRKSHOME

    Hi, How to find out installed MS office 2010 is 32-bit or 64-bit from the registry? googled and fouind couple of links...but seems not working or do not have the registry key. thanks.

    C# windows-admin tutorial question

  • how to get selected datagrid row items ?
    S SRKSHOME

    thanks..Can I have that link? I couldn't get it.

    WPF wpf csharp regex architecture tutorial

  • how to get selected datagrid row items ?
    S SRKSHOME

    Hi, I have a datagrid(using WPF) and miltiple row selection is allowed. How to get multiple selected items in MVVM pattern? It is easy to get this in code behind file? But in MVVM pattern codebehind file doesn't contains the much code. Many thanks.

    WPF wpf csharp regex architecture tutorial

  • How to update the datagrid in wpf based on text changed property of text box control in MVVM mdel?
    S SRKSHOME

    Hi, I have a DataGrid that is bound to ObservableCollection.I have textbox control in the same window..Based on text change event of text box(let us say filtering..based on typed character datagrid should change) how do i update the grid in MVVM model?

    WPF wpf question csharp css architecture

  • Working with dictionary
    S SRKSHOME

    Hi, I have to return corresponding country currency from a function. I have a disctionary like Dictionary> that will contain like: Dictionary> str = new Dictionary>(); List currency= GetCurrency();//Will return all currency stored in database. str.Add("Currency",currency); Now currency list contains only currency. I would like to add corresponding country also. I know that I can create datatable,change the dictionary value to DataTable/DataSet type and return.. Datatable is heavy object...So is there any other approach to achieve this? Many thanks.

    C# database question

  • String split?
    S SRKSHOME

    Hi Erik, This is realy helpful...Thank you very much. Thanks.

    C# help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups