Advanced Forum Search Results
-
Thank you for your answers!!
Sergey if you could post a snippet it would be awesome!
@Wilfred Pinto: It underlines this phrase "new OpenReadCompletedEventHandler(wc_OpenReadCompleted)" showing this error: An object reference is required for the non-static field, method, or property.
Thanks again!
-
Hi! I would like to grab an image from the web using its URL and convert it into a memory stream. I tried the following but there's problem in the casting..
Uri picUri = new Uri(imgUrl, UriKind.Absolute);
WebRequest requestPic = WebRequest.Create(picUri);
WebResponse responsePic = requestPic.GetResponse();
MemoryStream ms = ...
-
About a month ago a new Deep Zoom composer was released so I tried my source code with the new DeepZoomTools.dll Now the error mentioned above doesn't occur but with the following try-catch statement I catch this error: "The program issued a command but the command length is incorrect. (Exception from HRESULT: 0x80070018)"
img ...
-
Oh MarkTap thank you so very very much for pointing out these MAJOR differences I've been searching for all morning. . .
-
Thanks guys for your replies! I removed the code which sets the image source, instead I set a static url for the source and I had the same problem, so it was definately a layout issue. Thanks again =)
-
Hello!
I have an Image control and I set the image dynamically and it shows smaller than it should. I use the following code:
BitmapImage bitmap = new BitmapImage() { UriSource = new Uri("../../Pics/bg01.jpg", UriKind.Relative) ...
-
Hello bryant!!! Thank you very much for your reply!!
I'm using Silverlight 2.0 tools, runtime and everything..
-
Hello!
A month ago I was working on a project which created a deepzoom collection of images dynamically; it took a bunch of photos, created the tiles and then projected the scale-image in a silverlight application. The deepzoom work (delete older files create new ones) was done in a WCF-Service server-side. Then I had to focus on my ...
-
Please, it's quite urgent :( There should be somewhere this System.Windows.dll so I could add it..
Thank you!
-
Hello! I need to define a System.Windows.Point in a WCF service, but when I type 'System.' the intellisense doesn't show up any 'Windows' choice. I need this for defining the ViewportOrigin in a Microsoft.DeepZoomTools.Image. I tried the System.Windows.Point from Silverlight 2's System.Windows.dll, but it didn't ...