Click here to Skip to main content
15,913,669 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Visual studio 2010 VB Setup Project - Uninstalls wrong program Pin
Richard Deeming13-Jan-15 5:28
mveRichard Deeming13-Jan-15 5:28 
GeneralRe: Visual studio 2010 VB Setup Project - Uninstalls wrong program Pin
QuickBooksDev13-Jan-15 5:38
QuickBooksDev13-Jan-15 5:38 
GeneralRe: Visual studio 2010 VB Setup Project - Uninstalls wrong program Pin
Dave Kreskowiak13-Jan-15 17:27
mveDave Kreskowiak13-Jan-15 17:27 
GeneralRe: Visual studio 2010 VB Setup Project - Uninstalls wrong program Pin
QuickBooksDev14-Jan-15 0:25
QuickBooksDev14-Jan-15 0:25 
GeneralRe: Visual studio 2010 VB Setup Project - Uninstalls wrong program Pin
Dave Kreskowiak14-Jan-15 2:02
mveDave Kreskowiak14-Jan-15 2:02 
AnswerRe: Visual studio 2010 VB Setup Project - Uninstalls wrong program Pin
Richard Andrew x6414-Jan-15 7:31
professionalRichard Andrew x6414-Jan-15 7:31 
GeneralRe: Visual studio 2010 VB Setup Project - Uninstalls wrong program Pin
QuickBooksDev15-Jan-15 0:55
QuickBooksDev15-Jan-15 0:55 
QuestionAero Peek Like Control in .Net Pin
Django_Untaken6-Jan-15 0:24
Django_Untaken6-Jan-15 0:24 
AnswerRe: Aero Peek Like Control in .Net Pin
Pete O'Hanlon6-Jan-15 1:05
mvePete O'Hanlon6-Jan-15 1:05 
GeneralRe: Aero Peek Like Control in .Net Pin
Django_Untaken6-Jan-15 1:21
Django_Untaken6-Jan-15 1:21 
GeneralRe: Aero Peek Like Control in .Net Pin
Pete O'Hanlon6-Jan-15 2:49
mvePete O'Hanlon6-Jan-15 2:49 
QuestionWin2D, sharing CanvasBitmap Pin
Don Rolando5-Jan-15 0:08
Don Rolando5-Jan-15 0:08 
AnswerRe: Win2D, sharing CanvasBitmap Pin
Afzaal Ahmad Zeeshan9-Jan-15 20:20
professionalAfzaal Ahmad Zeeshan9-Jan-15 20:20 
GeneralRe: Win2D, sharing CanvasBitmap Pin
Don Rolando10-Jan-15 9:43
Don Rolando10-Jan-15 9:43 
QuestionDirectSound does not work on 64 bit Windows Pin
pnunbe2-Jan-15 4:31
pnunbe2-Jan-15 4:31 
AnswerRe: DirectSound does not work on 64 bit Windows Pin
Dave Kreskowiak3-Jan-15 4:37
mveDave Kreskowiak3-Jan-15 4:37 
QuestionMVVM Open and Close Window Problem data on memory Pin
Paolo Mazzon25-Dec-14 7:15
Paolo Mazzon25-Dec-14 7:15 
Merry Christmas to all, I expose my problem, I'm opening a view (with a datagrid inside) and with the same relaycommand also load the data, the problem is when I go to close it and then reopen it I remain in the data memory existed before.

This is my code on ViewModel:
CloseWindowCommand = new RelayCommand<BustaMainView>(CloseWindow);
 OpenBustaMainView = new RelayCommand<BustaMainView>(OpenWindow);


BustaMainView w;
        public void OpenWindow(object parameter)
        {  w = new BustaMainView(); w.Show(); this.GetdatiBusta(); }
                     


        public void CloseWindow(object obj)
        {
            w.Close();
  
        }

 public void GetdatiBusta()
        {

            foreach (var item in _serviceProxy.GetBusta())
            {
               
                BustaOservable.Add(item);
                RaisePropertyChanged("GetDatiBuste");
            }


modified 26-Dec-14 0:26am.

AnswerRe: MVVM Open and Close Window Problem data on memory Pin
Afzaal Ahmad Zeeshan9-Jan-15 20:25
professionalAfzaal Ahmad Zeeshan9-Jan-15 20:25 
GeneralRe: MVVM Open and Close Window Problem data on memory Pin
Paolo Mazzon21-Jan-15 23:19
Paolo Mazzon21-Jan-15 23:19 
QuestionHow to youtube embed video upload Pin
Member 1132453221-Dec-14 18:40
Member 1132453221-Dec-14 18:40 
SuggestionRe: How to youtube embed video upload Pin
Kornfeld Eliyahu Peter21-Dec-14 19:59
professionalKornfeld Eliyahu Peter21-Dec-14 19:59 
AnswerRe: How to youtube embed video upload Pin
syed shanu22-Dec-14 18:36
professionalsyed shanu22-Dec-14 18:36 
QuestionMVVM add two textbox Pin
Paolo Mazzon20-Dec-14 19:07
Paolo Mazzon20-Dec-14 19:07 
AnswerRe: MVVM add two textbox Pin
Paolo Mazzon21-Dec-14 4:34
Paolo Mazzon21-Dec-14 4:34 
GeneralRe: MVVM add two textbox Pin
Gerry Schmitz22-Dec-14 5:44
mveGerry Schmitz22-Dec-14 5:44 

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.