Does anyone have any good references for where to start developing for geo aware apps? Sorting the garbage from google search is giving me a migraine. TYIA
Discussions
-
-
Are the Office Interop assemblies thread safe?
I would be using them (Excel specifically) in a web app. Office version is 2007.
Is there a better way to interface with Excel?
-
Does anyone know if it is possible to reference an instance of a dataset object from SSRS by using the Reporting Services API?
The end result that I am attempting to accomplish is to intercept rdl render calls to generate a dynamic excel file on the fly.
-
Can someone please explain to my why the first video on the "Get Started" page of Silverlight.net is a video that targets VS 2008, Silverlight 3 and is from 2008?
Seriously?
-
phreaks said:
Help, I'm Alive
-
Help, I'm Alive
-
ManipUni said:
Seems a little too good to be true.
Are they a well known company?
Yeah. I've been using their controls for ages. Best out there IMHO.
-
-
Has anyone actually been able to take advantage of this offer. I keep trying but I can't figure out how to get the subscription “Windows Azure Platform MSDN Premium” added to my basket on the Online services customer portal.
http://msdn.microsoft.com/en-us/subscriptions/ee461076.aspx
Windows Azure Platform Benefits for MSDN Subscribers
NEW: the 8-month introductory MSDN benefits have been extended to 16 months!
The Windows Azure Platform is an internet-scale cloud computing and services platform hosted in Microsoft data centers. The platform provides a range of functionality to build applications from consumer web to enterprise scenarios. MSDN subscribers can take advantage of this platform to build and deploy their applications.
Introductory 16-month Offer Available
-
Sven Groot said:phreaks said:*snip*
That's not right at all. Try this:
protected virtual void ExecuteCallback<T>(IAsyncResult result) { System.Runtime.Remoting.Messaging.AsyncResult asyncResult = (System.Runtime.Remoting.Messaging.AsyncResult)result; Execute<T> method = (Execute<T>)asyncResult.AsyncDelegate; object returnValue = method.EndInvoke(result); }Yeah, that's the ticket.
Thank you!