Advanced Forum Search Results
-
SL2 has an accordion now. download the latest release
-
OK - it does not work. if i had a single section of code, i would have explained what it was supposed to do. that is what the XAML is for. the code behind is supposed to produce the same outcome as the XAML, and it does not. :P
-
i am having trouble converting a XAML storyboard to code behind, any help would be appreciated <Storyboard x:Name="ReturnToNormal" >
<DoubleAnimationUsingKeyFrames x:Name="RTN1" BeginTime="00:00:00" Storyboard.TargetName="AnyButton" ...
-
yeah, had considered that architecture. there are a couple of problems there. first, it creates a new query with each server hit. second, if data changes inbetween queries, the results change. a cursor would be perfect, this is exactly what it is for. if somehow the connection could be maintained on the server, and ...
-
so in your opinion, i should not create a cursor, but execute a new query for each page down and page up? when one searches say google, does it not keep a server cursor to page through the results?
-
I am using WCF with Sql Server. i wrote a TSQL to create a CURSOR, populated with a SELECT. this is executed from the client, leaving the connection open. The client then executes a FETCH to retrieve records, but the connection is closed. Any ideas how to keep the connection open would be apprecaited.
-
perfect, thank you people
-
thank you, so how would one do a dir through WCF, so as to enumerate the files
-
these files are created outside of Silverlight, so IsolatedStorage cannot see them, thank you
-
i have the directory, i am creating files in it, i wish to populate a listbox with the results with some sort of a dir(), and then enumerate them