Advanced Forum Search Results
-
Thanks very much for your time. I came across the answer to the problem today. I had already set style, and changing it dynamically after is not allowed. It can only be set once, either through xaml or code behind. Hopefully the code snippet will help those new to Silverlight though.
-
Hello,
I'm attempting to programmatically call a style but am getting the following error:
Catastrophic failure (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED))
In order to evaluate an indexed property, the property must be qualified and the arguments must be explicitly supplied by the user.
The stackpanel that I am trying to ...
-
Hi, thanks. That makes sense as it cuts out the traffic between the web server and the database server. Unfurtunately the host I am with has two seperate servers, but it's reassuring knowing that if the project is a success we can get our own servers and put them on the same box.
-
I see, I'm glad you've explained that to me. This is how I did it in the past with non silverlight ajax autocompletes, using the where clause at the database.
Thanks for your time, Roet,
Drew
-
I appreciate your help, thanks. The query is:
<OperationContract()> _Public Function GetSuburbs() As List(Of Suburb) Dim suburbList As SuburbModelDataContext = New SuburbModelDataContext
' Perfomance()suburbList.ObjectTrackingEnabled = False
Dim list = (From theList In suburbList.Suburbs Select theList).Take(50)Return ...
-
Unfortunately, this does not appear to work. It's as I feared, now only the first 50 rows of the table is returned. Since Smith is not in the first 50 rows, the autocomplete does not display Smith. The filtering is done by the control itself after all the data is returned to the client. Not sure what to do. Maybe is just can't be used to ...
-
No ideas anyone? I just used fiddler to see what was going on and was surprised to see the whole 5000 rows returned? Is fiddler reporting what is returning to my client pc or what's happening on the server? If it's my client pc, then returning the whole table seems a bit inefficient. Can someone explain how the silverlight autocomplete ...
-
Hi,
Any thoughts on this one? I have a data grid templated autocomplete, that is super fast on my local machine, run from within VS. It's selecting items via a web service, also on my PC, from a database table, also on my PC, that has 5000 rows.
After deploying the webservice to my host, the autocomplete takes between 9 and 15 ...
-
[quote user="ken tucker"]
When I create a silverlight project I have it create the web application at the same time. I put my services in there.
[/quote]
Thanks, I've stuck with that, and this has taken me to a new message:
InitializeRuntime requires that the Description property be initialized. Either provide a valid ...
-
And there's no need to create a seperate Web Service Project (as described here http://blogs.msdn.com/nikola/archive/2008/03/12/visual-studio-2008-walkthrough-creating-hosting-and-using-wcf-services-with-silverlight-2-beta-1.aspx), if it's already working locally?