Advanced Forum Search Results
-
Hi Rajeev,
Try to access isf stream as little as possible
Here is my sample. http://cid-fd102511a3ca5ff9.skydrive.live.com/self.aspx/ISOReadWrite/ISOReadWrite.zip
In the sample, there are 3 big buttons.
button 1. Access isf stream every now and then. - very slow because you read many many small bytes
button 2. Use a buffered stream and try ...
-
[quote user="Rajeev BV"]This file is in binary format & is about 150k[/quote]
Hi Rajeev
Instead of callng BinaryReader class's method repeatdly on io stream, use buffer- something like read 4096k each time, then perform the reading operation on the buffer (or simply use Bufferred stream with binary reader.)
I ...
-
When I tried to click "Email Subscription" link to subscribe to a thread, it always doesn't work until I refresh the page and click the linke again.
Anyone experience the same problem? or it's just me..
It's been like that for sometime already.., and maybe that's why I always get 2 emails instead of ...
-
I am having the same problem.
This happens as SetToolTip is called multiple times to the same object,
It crashes at ToolTipService.OnOwnerMouseLeave
Tried to set value to empty string, null string and overwriting the tooltip value with different text, none of them helped to avoid this error.
-
I guess, workaround would be creating your own HTML input wrapper and place it on the top of your silverlight control
It's rather messy because you have to worry about hiding and showing html input control depending on scroll position, parent control location, cliping region etc etc
[quote user="Mark Rideout"]By design. You need to ...
-
Thanks a lot. I understand now
-
Hi Yi-Lun Luo,
FrameworkElement.Parent now returns null when I expect "Custom Control" UserControl reference to return..
I confused myself trying to make sample application using few UserControls and I couldn’t repro no matter what I do
Then checked my code and also coolio ‘s post just to realize it’s custom control ...
-
I was testing DeepSea obfuscator and it's brilliant. http://www.deepseaobfuscator.com/Just last week, while I was evaluating xap file obfuscation with DeepSea obfuscator, I found 2 issues (bugs) and sent them a question. Not only I got immediate reply from them, they have made new updates just few days later.
I simply dragged and dropped 4 ...
-
FrameworkElement.Parent now return null, when I expect UserControl reference to return..
[EDIT]
As coolio pointed out, I had no choice but to replace all occurrence of ".Parent" property with VisualTreeHelper.GetParent mthod.
At least for me, migration from b2 to rc0 was very easy compare to my previous experience ...
-
When there is windowless silverlight control with dynamically created iframe, (silverlight is positioned on the top of the iframe)
silverlight control gets confused with mouse coordinate, between the main html's body and its iframe's body.
IE has no problem but Firefox do have problem (tested with 2.0.0.16 and 3.0.1)
I ...