Click here to Skip to main content
15,894,337 members
Home / Discussions / C#
   

C#

 
AnswerRe: MS OFFICE refence version create problem to change code of program Pin
dan!sh 7-Dec-09 0:46
professional dan!sh 7-Dec-09 0:46 
GeneralRe: MS OFFICE refence version create problem to change code of program Pin
ishika_kukki7-Dec-09 18:35
ishika_kukki7-Dec-09 18:35 
AnswerRe: MS OFFICE refence version create problem to change code of program Pin
Eddy Vluggen7-Dec-09 2:54
professionalEddy Vluggen7-Dec-09 2:54 
QuestionHow to save textBox to a file Pin
tamir9017-Dec-09 0:10
tamir9017-Dec-09 0:10 
AnswerRe: How to save textBox to a file Pin
dan!sh 7-Dec-09 0:47
professional dan!sh 7-Dec-09 0:47 
AnswerRe: How to save textBox to a file Pin
JoeSharp7-Dec-09 0:48
JoeSharp7-Dec-09 0:48 
GeneralRe: How to save textBox to a file Pin
tamir9017-Dec-09 1:16
tamir9017-Dec-09 1:16 
QuestionHow to load large data to multiple filtered combobox's Pin
Sevententh6-Dec-09 23:43
Sevententh6-Dec-09 23:43 
Hi,

I'm after some suggestions on best practice to resolve an issue of loading large data combobox's (WPF).
I have two combo's Country & Airport. Country combo is to filter Airport combo (with just Airports in that Country) simple...

There are approx 260 Countries and 10,000+ airports worldwide

Using MVVM
public viewmodelFlights()
{
CountryList = new List<CountryModel>(wcfService.GetCountries());
AirportList = new List<AirportModel>(wcfService.GetAirports());

icCountryView = CollectionViewSource.GetDefaultView(CountryList );
icCountryView.CurrentChanged += new EventHandler(icCountryView_CurrentChanged);
icCountryView.MoveCurrentToPosition(-1);

icAirportView = CollectionViewSource.GetDefaultView(AirportList );
icAirportView.CurrentChanged += new EventHandler(icAirportView_CurrentChanged);
icAirportView.MoveCurrentToPosition(-1);
}
just so you get the vm idea Big Grin | :-D

I'm trying to get this initial loading quicker. Is there anyway to only load the airports once the Country has been selected?
I have a bigger problem with a hospital list which has 1,000,000+ records!!
QuestionSendKey Method Pin
M Riaz Bashir6-Dec-09 23:17
M Riaz Bashir6-Dec-09 23:17 
AnswerRe: SendKey Method Pin
Abhinav S6-Dec-09 23:24
Abhinav S6-Dec-09 23:24 
GeneralRe: SendKey Method Pin
M Riaz Bashir6-Dec-09 23:55
M Riaz Bashir6-Dec-09 23:55 
QuestionOnGotFocus Pin
Tagamoga6-Dec-09 22:56
Tagamoga6-Dec-09 22:56 
AnswerRe: OnGotFocus Pin
Shameel6-Dec-09 23:08
professionalShameel6-Dec-09 23:08 
GeneralRe: OnGotFocus Pin
Tagamoga6-Dec-09 23:17
Tagamoga6-Dec-09 23:17 
GeneralRe: OnGotFocus Pin
Shameel7-Dec-09 6:53
professionalShameel7-Dec-09 6:53 
Questiondatabase connection problem Pin
Erdinc276-Dec-09 21:48
Erdinc276-Dec-09 21:48 
AnswerRe: database connection problem Pin
lalit146-Dec-09 22:21
lalit146-Dec-09 22:21 
GeneralRe: database connection problem Pin
Erdinc276-Dec-09 22:42
Erdinc276-Dec-09 22:42 
AnswerRe: database connection problem Pin
puri keemti6-Dec-09 22:27
puri keemti6-Dec-09 22:27 
GeneralRe: database connection problem Pin
MNantu6-Dec-09 22:43
MNantu6-Dec-09 22:43 
AnswerRe: database connection problem Pin
MNantu6-Dec-09 22:36
MNantu6-Dec-09 22:36 
GeneralRe: database connection problem Pin
Erdinc276-Dec-09 23:15
Erdinc276-Dec-09 23:15 
GeneralRe: database connection problem Pin
MNantu6-Dec-09 23:20
MNantu6-Dec-09 23:20 
GeneralRe: database connection problem Pin
Erdinc276-Dec-09 23:43
Erdinc276-Dec-09 23:43 
GeneralRe: database connection problem Pin
lalit147-Dec-09 0:01
lalit147-Dec-09 0:01 

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.