Answer Questions
Hugo Sanchez CCF 2005 and Vista/IE7
The CCF white paper states that CCF 2005 is compatible with Windows XP SP2 or later and IE6.0 or higher. I am specitical that CCF 2005 will work with Vista and I'm not sure of the implications of using IE7. Has anyone had experience with CCF 2005 and Vista or IE7. CCF works quite well with IE7. I and others have been using CCF + IE7 for a while now. As to Vista, there have been CCF clients built for Vista using CCF 2005 .net 2.0 edition. There are some tweaks to the reference desktop code required to support some diffrences in Vista, but it does work. I have been told that CCF 2005 .net 2.0 edition is undergoing a certification / testing process with Vista and it should be offical&nbs ...Show All
Gravy Error in Agent desktop
Hi, I have launched the Agent desktop...If i select the customer from lookup table it shows the following error...Please anyone help me 12/20/2006 2:36:21 PM: Customer Care Framework 2005 - Agent Desktop: Information: Starting... Customer Care Framework 2005 - Agent Desktop 12/20/2006 2:54:41 PM: Customer Care Framework 2005 - Agent Desktop: Error: Failed to connect to the web server. Please verify that you can connect to the web server. The underlying connection was closed: The remote name could not be resolved. \n\nStack:\n at Microsoft.Ccf.Csr.Sessions.SetActiveSession(Guid sessionID) at Microsoft.Ccf.Csr.Sessions.AddSession(String name, Int32 callID, Object customer) at Microsoft.Ccf.Samples.Csr.AgentDesktop.Des ...Show All
Matt Foster FlowDocument and DataBinding
Hi all! I can't see any way of data binding a FlowDocument to a RichTextBox or a FlowDocumentPageViewer. Is this possible Here's the context: I have a business objects that has a rich text property. This rich text needs to be displayed in a list, in a detail panel and also can be edited in a dialog box. Thank you, Ronan. I don't understand... what list are you talking about "This rich text needs to be displayed in a list" - if you could use plain text (no formatting) with \r\n for newlines then you could bind the text to a Run.Text property. well, this is bad news! Do you see another way to perform the same ...Show All
Binairy Separate buttons fire same event - HELP ME PLEASE
I created a toolbar in Addin and have added 3 buttons. 1) I want 3 events for these 3 buttons. However, my code fires all the 3 events always. I have read and re-read the article below http://www.mztools.com/articles/2005/MZ006.htm but I have not been able to do the task at hand. 2) I want 3 bitmaps loaded to these buttons. I have read and re-read http://www.mztools.com/articles/2005/MZ007.htm This has not helped me. ******What are the equivalent comments for 2005 for the comments below ******** At this point you only need to inform Visual Studio .NET that your add-in uses a satellite DLL. In the registry entry HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\7.0\Addins\<MyAddinName>.Connect (use 7.0 f ...Show All
Muhammad Adel Vss data store
When Vss will use sql server like data store If you have Visual SourceSafe installed, you just need to switch the source control provider in Visual Studio. Start VS2005 Do Tools->Options->Source Control On the Plug-In Selection tab, choose Microsoft Visual SourceSafe Now, any projects you put under source control with use VSS on the back end. -Brad I very much doubt if Microsoft have any plans to convert Visual SourceSafe over to using SQL. If you want a Source Code Control system that uses SQl as the data store then Team Foundation Server would seem to be the product you want and not Visual SourceSafe. Of course I'm not a Microsoft employee and ...Show All
nibsi Microsoft.WinFX.targets is stealing the Microsoft.Common.targets for itself!
I installed the latest bits and was trying to craft a .csproj using our own msbuild customizations which override some of the "meant to be overridden by customers" targets from Microsoft.Common.targets such as "AfterCompile". I noticed that the stuff that we wire into "AfterCompile" did not take place during the build. Upon investigation I discovered that Microsoft.WinFX.targets is overriding our override of "AfterCompile". So if Microsoft is going to start using these targets in their own project systems, then how are we supposed to be able to work-with/extend/customize the build I am hoping for an answer such as "Oh that was just expedient and before long that will be corrected in ...Show All
Evan Hennis RSS categories
Can I see what categories an RSS post has using the object model or the UI It would be quite usefull to create Search folders or views based on categories from all subscribed RSS feeds. // Johan Re: the feed URL, see my reply to your post at http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=811322&SiteID=1 . There's a lot I don't know about Outlook, but with the help of Outlook Spy, the other MVPs, and some great folks at Microsoft, we can figure out quite a bit. Outlook Spy from http://www.dimastr.com is a brilliant third-party tool that makes it a pleasure to explore Outlook's internals. MFCMAPI.exe is a free tool from Microsoft that has some of the same capabilities, but n ...Show All
Richardthomas1960 Using Network Load Balancing NLB with WCF - Failover to another cluster results in CommunicationException
Hello, I'm trying to create a simple sample WCF service that is hosted in an NLB cluster on IIS. I have created the cluster successfully, and have a simple WCF client that prints out the name of the machine it is connected to when you click a button. If I goto the cluster node the client is connected to, and disable its LAN connection, then I can see the fail-over occuring: If I browse to a simple "Hello World" html file containing the machine name, I can see that the IE browser is successfully redirected to the other node. Unfortunately for my WCF client when I click the button to print the machine name, instead of getting the machine name of the 2nd node, I get a CommunicationException: The underlying connection was closed: A ...Show All
Tej62007 Container Shape
Hi, I used the Container Shape customization in my DSL. Unfortunately it does not work anymore with V1. Does the customization not work anymore What do I have to change to get it working again. Thanks in advance Alexander Hi Alexander, The method of producing nested shapes has changed a bit in version 1. You can see a full example in the Components sample. Open the Visual Studio SDK samples browser (should be under you Start menu somewhere) and filter on DSL Tools, then open Example.Components. You'll see the code in the Custom folder in the Dsl project. The comments in the code explain what's going on. Let us know if you have any problems. Alan ...Show All
K.S.RamakrishnaPrasanna Exception in MeasureCore
I'm simply trying to set the Button.Content property to the value of a string, like myimage.jpg. The Measure method on the FrameworkElement seems to be failing with: "Overflow or underflow in the arithmetic operation." Is this a bug or what's the issue here See exception stack below. Thanks! "at System.Double.Equals(Object obj) at System.Object.Equals(Object objA, Object objB) at System.Windows.DependencyObject.Equals(DependencyProperty dp, Object value1, Object value2) at System.Windows.DependencyObject.UpdateEffectiveValue(EntryIndex entryIndex, DependencyProperty dp, PropertyMetadata metadata, EffectiveValueEntry oldEntry, EffectiveValueEntry& newEn ...Show All
JayaC How to collapse databound TextBlock
Hello, I'd like to set the "Visibility" property of a databound TextBlock based on whether there is any content or not. In the following example, there is an empty XML element < Department > , so the TextBlock in row 2 should be collapsed. What is the simplest way to do this What is the simplest way to do this Thanks, Adrian Sorry, I am completely wrong. Sheva try setting up a style and use it like < TextBlock Grid.Row = " 2 " Text = " {Binding XPath=Department} " Style = " {StaticResource st1} " /> < Style x:Key = " st1 " TargetType = " {x:Type TextBlock} " > < Style.Triggers > < DataTrigger Binding = & ...Show All
flash.tato Multiple DataBindings to Children Elements
Using the below XAML as an example how can i make it so that when one of the labels in the stacker is clicked that my first textblock in the grid is data bound to text of the inner textblock of the label that was clicked <Grid> <TextBlock> *This is where data should be bound* </TextBlock> </Grid> <StackPanel Label.MouseUp="LabelClickHandler"> <Label Name="Label1"> <DockPanel> <Image Source="Resources\lbl1img.png" /> <TextBlock>Label 1</TextBlock> </DockPanel> </Label> <Label Name="Label2"> <DockPanel> <Image Source="Resources\lbl2img.png" /> &l ...Show All
tkrasinger How to implement databinding like this?
I store the file name of images in "PIC" field. Then I bind the filed to Source property of an Image. <Image Source="{Binding PIC}"/> But since only file name is stored, so the path of the image files should also be added to the Source. What should I do to binding this correctly I have tried in this way, <Image Source="Images/"+"{Binding PIC}"/> But it seems to be a wrong syntax. Any suggestion You would need to write a custom IValueConverter that you use with the Binding to create the full path of the image. Something like below would work. Then you just declare the Binding as: <Image Source="{Binding Path=PIC, Converter={x:Static myNS:MyImagePathConverter.Default}}&q ...Show All
hayward_ke RTF Woes in Outlook 2003 via VSTO 2005
I'm working on an Outlook 2003 VSTO application to generate an email in a specified format. I need the resulting rtf email to be reviewable before it is sent. Using redemption is NOT an option for 2 reasons: 1) it’s unlikely the Air Force will authorize a 3rd party add-on, and 2) My preliminary tests with redemption indicate that while the sent email message is indeed formatted when sent programatically, you can’t review and send it manually. - I get a blank page. We’re talking about some very simple formatting here – Bolding and underlining – but I can’t find a reliable way to make it happen. Do you have any ideas I got the help I needed with this problem from Sue Moshier at http://www.outlook-code. ...Show All
Grotius MS Development Environment
I have used the same installation of Visual Studio .NET 2003 on the same computer for at least 6 months and never had a problem with the application. When I open it I get the following popup message. "MS Development Environment has not been installed for the current user. Please run setup to install the application." I have never had this problem before. I ran the setup again without uninstalling VS .NET 2003. I still get the same message. I already know that you're going to tell me I need to uninstall the app and reinstall it again (redundant). But tell me anyway. Thanks, Jeff Green Hello, I just started having the same problem and am now looking for a solution. Do you remember how you resolved this issue Ple ...Show All
