Click here to Skip to main content
15,912,400 members
Home / Discussions / C#
   

C#

 
AnswerRe: Simple Cache shared in multiple application instances Pin
David Skelly18-Feb-10 2:12
David Skelly18-Feb-10 2:12 
GeneralRe: Simple Cache shared in multiple application instances Pin
buchstaben18-Feb-10 2:23
buchstaben18-Feb-10 2:23 
GeneralRe: Simple Cache shared in multiple application instances Pin
Keith Barrow18-Feb-10 2:49
professionalKeith Barrow18-Feb-10 2:49 
GeneralRe: Simple Cache shared in multiple application instances Pin
buchstaben18-Feb-10 2:55
buchstaben18-Feb-10 2:55 
GeneralRe: Simple Cache shared in multiple application instances Pin
Keith Barrow18-Feb-10 3:12
professionalKeith Barrow18-Feb-10 3:12 
GeneralRe: Simple Cache shared in multiple application instances Pin
buchstaben18-Feb-10 3:19
buchstaben18-Feb-10 3:19 
GeneralRe: Simple Cache shared in multiple application instances Pin
David Skelly18-Feb-10 22:38
David Skelly18-Feb-10 22:38 
QuestionListbox not display values Pin
Anu_Bala17-Feb-10 22:26
Anu_Bala17-Feb-10 22:26 
Hi, Im developing Tabcontrol in WPF with C#.In coding i entering text to Listbox(3rd tabitem),when i click any place in tabcontrol.But th text is not gwtting displayed.
But when i debug i got that,for every click in tabcontrol,the Count in listbox get increased to 1,2,...

Code:
namespace Tabcontrol 
{    
    public partial class PresetTab : UserControl   //3rd Tabitem ,preset.xaml.cs 
    {         
        public PresetTab() 
        { 
            InitializeComponent();             
        } 
        public  void AddPresetmenu(string pMenu)     
        { 
           menubox.Items.Add(pMenu);    //menubox is listbox 
        }  
    }     
} 

namespace Tabcontrol 
{   
    public partial class ToolBar : UserControl 
    { 
        PresetTab tab = new PresetTab();      
        public ToolBar() 
        {             
            InitializeComponent();  
        } 
         public void Click(object sender, MouseButtonEventArgs e) 
         {          
          tab.AddPresetmenu(menu);      //Im calling from tabcontrol,toolbar.xaml.cs                
            } 
     } 
}
Anu

QuestionGoogle talk - like application Pin
ramzg17-Feb-10 22:17
ramzg17-Feb-10 22:17 
AnswerMessage Closed Pin
17-Feb-10 22:38
stancrm17-Feb-10 22:38 
GeneralRe: Google talk - like application Pin
ramzg17-Feb-10 22:43
ramzg17-Feb-10 22:43 
GeneralRe: Google talk - like application Pin
ramzg17-Feb-10 23:04
ramzg17-Feb-10 23:04 
GeneralRe: Google talk - like application Pin
OriginalGriff17-Feb-10 23:28
mveOriginalGriff17-Feb-10 23:28 
GeneralRe: Google talk - like application Pin
ramzg17-Feb-10 23:48
ramzg17-Feb-10 23:48 
GeneralMessage Closed Pin
17-Feb-10 23:59
stancrm17-Feb-10 23:59 
GeneralRe: Google talk - like application Pin
ramzg18-Feb-10 0:06
ramzg18-Feb-10 0:06 
Questionhow to bind listview data to dataset or datatable.? Pin
sudhir behera17-Feb-10 21:57
sudhir behera17-Feb-10 21:57 
AnswerMessage Closed Pin
17-Feb-10 22:41
stancrm17-Feb-10 22:41 
GeneralRe: how to bind listview data to dataset or datatable.? Pin
sudhir behera18-Feb-10 2:19
sudhir behera18-Feb-10 2:19 
QuestionDistorted Controls Pin
Wamuti17-Feb-10 21:06
Wamuti17-Feb-10 21:06 
AnswerRe: Distorted Controls Pin
OriginalGriff17-Feb-10 23:16
mveOriginalGriff17-Feb-10 23:16 
Question[HELP] Plotting readings on graph dynamically Pin
DanielTKS17-Feb-10 20:51
DanielTKS17-Feb-10 20:51 
AnswerMessage Closed Pin
17-Feb-10 21:17
stancrm17-Feb-10 21:17 
GeneralRe: [HELP] Plotting readings on graph dynamically Pin
DanielTKS17-Feb-10 23:06
DanielTKS17-Feb-10 23:06 
AnswerRe: [HELP] Plotting readings on graph dynamically Pin
OriginalGriff17-Feb-10 23:19
mveOriginalGriff17-Feb-10 23:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.