Answer Questions
RFewing How does Client/Server comunication will work
As we know that in WBAs application download in part and run in sandbox. So how can we specify that what type of data will not go to client and what type of data will go, means if a client access my application and transit between pages go forth and back so where in this transition server is involve and how it comunication to server. When a user navigates to a WBA, all the application bits are ...Show All
Desmond Molins Extending Visual Studio for cfm pages
Well i screwed that post up Try again: I want to extend visual studio so that I can Edit cfm pages (create some sort of schema that lets me use the features of vs to colorcode html and coldfusion stuff) Don't want a design view When I "Run" the solution it should bring up the index.cfm file (not even that important of an option) I just don't know what to search for to find out how to do this. If anyone can p ...Show All
Syed Rahman Mashwani Problem with Bookmark
Hello All, I used a bookmark ( internal Microsoft.Office.Tools.Word.Bookmark bkCode) in Wordtemplate application. When i am writing bkCode.Range.Text ="Hello"; and when i access the bkCode next time it doesn't exist anymore. When i wrote bkCode.Text ="Hello"; "Hello" appears in square brackets on the document. how do i remove this square brackets What is the correct way to add/retrieve text on/ ...Show All
subink BitmapImage.StreamSource best practice?
I want to do this: using (Stream imageStream = webClient.OpenRead(url)) { BitmapImage bitmapImage = new BitmapImage(); bitmapImage.BeginInit(); bitmapImage.StreamSource = imageStream; bitmapImage.EndInit(); this.image.Source = bitmapImage; } but it throws an exception because the image hasn't finished downloading when the stream is closed. So instead I find myself doing this: Stream imageStream = webClient.OpenRead(url); ...Show All
Waynest diagram.AutoLayoutChildShapes(???)
I have a diagram where I have more than one shape and where they are on top of each other initially. Looks like I can use diagram.AutoLayoutChildShapes() method but I am having hard time to build the argument it takes What is the argument for diagram.AutoLayoutChildShapes(IDictionary ); Could you tell me how I can build this argument or is it already stored somewhere Thanks. Try using Diagram.Ne ...Show All
James Woodall Remote Debugger - No Symbols Loaded
Hi, a) Have installed the remote debugger on the server using rdbgsetup.exe b) Have started the Debug Monitor on the remote machine c) Have attached to the process w3wp.exe (there are two instances of these) But when starting the browser and attempting to run the ASP .NET pages, the break points are not hit. They say "No Symbols loaded for this document" In fact I can not get it to debug, using either of the w3wp.exe exe ...Show All
Zdog Where can i get the full setup of the WCF sdk november 2005 release.
hi, Please help me to download the full release of the WCF sdk november 2005 release along with the setup file. Thanks in advance, Rajesh. yeah,Scott is right,There are lot of changes between NOV CTP and FEB CTP,so we better to migrate to FEB CTP,or if you can wait 1 or 2 weeks,RCO may be available for download (This may change,right now we are thinking it may be available to customers in 1 or 2 weeks ...Show All
MAT4Ron If I only work with Access Databases, what should I purchase
I created a variety of databases for different people within my company to use. Almost all of them have a backend database on our server and a client version on each user’s individual computer. I've been pulling my hair out trying to get things to work because we are using a few different versions of Office. If I buy Microsoft Visual Studio Tools for Office 2005, can I bypass the issues with different versions by distributing ...Show All
reachrishikh Caching SAML tokens
Hello, I have implemented a web service in WCF that bases its authorization on claims provided in SAML tokens. I am using SecureCommunication in order to keep the channel between the client and the service for several interactions. The SAML token that is used for authorization is passed with the RST/SCT issue request from the client to the service. Now I would like to get the SAML token from this request and cache it together with the identif ...Show All
trakatelis Multiple threads, UI, and images
I'm currently trying to write an application that dynamically loads images in a background process in order to eventually display them on the UI. Essentially, my background thread creates objects that inherit from System.Windows.Media.Brush or System.Windows.Media.Drawing so that my UI can redraw itself using these objects. When running my code, I receive an InvalidOperationException with the explanation of " The calling thread may not acce ...Show All
AstareGod More custom code questions
I've been through Brian Likes's custom code blog entries and I can get code to work but only the easiest of examples. I'm using a local report rather than SQL reporting services so I think that a custom assembly might be easier in my case, and hopefully the deployment code (likely ClickOnce) will understand that there is a referenced assembly. But using a custom assembly or even just local code, I can get Hello World to work but I can't figu ...Show All
MaurizioPe ReportViewer HyperLinkTarget property problem
I am running a locally processed report in Asp.net The report has a textbox with a hyperlink property. In the report viewer control I have set the HyperLink target to "_Blank". When I look at the resultant page everything works fine for the first page. If the user clicks on the hyperlink another browser window opens. Unfortunately, if the user selects the next page in the report, the Hyperlink target functionality doesn't work. Clickin ...Show All
antimatty BitmapImage.StreamSource best practice?
I want to do this: using (Stream imageStream = webClient.OpenRead(url)) { BitmapImage bitmapImage = new BitmapImage(); bitmapImage.BeginInit(); bitmapImage.StreamSource = imageStream; bitmapImage.EndInit(); this.image.Source = bitmapImage; } but it throws an exception because the image hasn't finished downloading when the stream is closed. So instead I find myself doing this: Stream imageStream = webClient.OpenRead(url); ...Show All
PaulRichardson Help (other things too) broken? Team Suite
I've installed (and reinstalled and uninstalled and reinstalled) Visual Studio 2005 Team Suite from our MSDN subscription. The reason for all the installs/uninstalls/reinstalls is because apparently getting rid of all the remnants of beta testing is more problematic than it appears. At any rate, if I try to do a "search" from the help menu I get: The Visual Studio Common IDE Package ({6E87CFAD-6C05-4ADF-9CD7-3B7943875B7C}) di ...Show All
DavidNPD Window versus Page
if i set my main .XAML class with a root element of <Page> rather than <Window>, I can then get a hyperlink to work in a child frame, whereas it wouldn't before. the only visible difference i can make out is that I get a toolbar at the top with a BACK/FORWARD button. i am uncertain as to the real difference between having a WINDOW or a PAGE as a root element for my application. can anybody please enlighten me as to the differen ...Show All
