Answer Questions
Gage problem orcas converts old sln and vcproj files
Prior to winfx beta 2 and related orcas release I could work with my older sln and vcproj files just fine and run my non-winfx code. However with the latest orcas release it wants to convert to the newer 9.0 format. Canceling the conversion means you can't work with non-winfx code. Is there a way to turn that off or two have two versions of vs 2005 on the same machine. One with orcas and one without. Hi David, I'm working to get the project folks to take a look at this situation. In the mean time, can you confirm that you're talking about .vcproj files, and not .vbproj or .csproj In other words, this is a question about C++ projects If so, I'll be doubly confused because there are no changes to the ...Show All
joaomgcd Charts with Xaml
in my work i need a WPF chart that I can use it in xaml code i search about it but i can't find any chart, just ChartFX of softwarefx website i download it but it is not working please i need this chart , any one know where i can download it My chart stuff isn't for you as in it's current state as I'm just using it as a test bed for some stuff. It's code only at the moment (can't be used from xaml), doesn't support databinding, has no dependency properties or anything. Also I need to ask the person who paid for me to develop it about releasing it. It's only an X-Y chart too as you can see in this screenshot: http://150.101.100.238/~john/TestApplicationWeb/ChartControl.png It's not too hard to do though, just add PathGe ...Show All
CurtisDeHaven Dispatcher.BeginInvoke and application freeze
Hi everybody, In my application, I use Dispatcher.BeginInvoke() to allow a long method to be run asynchronously. But this doesn't prevent my application to be freezed during the call of Dispatcher.BeginInvoke(): i click on a button which call the Dispatcher.BeginInvoke() method, but this button (and all of my app) is freezed and i've got to wait before being able to use my app again.... How can I launch a method asynchronously so even if it's a long method, I'm still able to use the app I tought Dispatcher.BeginInvoke() could do it but it looks like not..... Thanks http://blogs.msdn.com/nickkramer/attachment/553378.ashx Look at the examples in this document In orde ...Show All
Shirvo What versions of CR can create reports for CR in VS 2005?
Hello. Sorry if this question has been asked a thousand times before but I could not find an answer. I am creating an ASP.NET web application where I use the crystal reports viewer (in VS .NET 2005). The customer for the application wants to design own reports for use with the web application. Which version of Crystal Reports should the customer use in order to be able to design reports that will work with the VS .NET 2005 crystal reports viewer I have the Crystal reports 10 developer stand-alone version and I made a report using it. The report shows up ok in my ASP.NET application but is only showing the data that was saved with the report in CR 10. Is this a compatibility problem between CR 10 and the VS 2005 CR viewer or am I m ...Show All
Mystagogue Am I wrong about WCF usage?
I have been experimenting with WCF, on and off, for some time and it 'seems' that 99% of the design effort is around B2B communication with 1% on a self-contained applications. I say this because the assumption with WCF interface contracts is that the client-side knows nothing about the business model; thus, the operation contract requires explicit declaration of types. This, from my view, is horrible for uses where a developer is designing a self-contained application. I have hundreds to thousands of classes where 90%+ only need a two interfaces between client and server when generics are applied. Declaring 500+ classes as known types for a data contract is rediculous. Now - thank goodness - there is the NetDataContract which all ...Show All
Kirk Lipscomb Confused by a Binding/Converter problem....
I've created a control which uses databinding and a converter class. <local:BitArrayConverter x:Key="bitArrayConverter"/> <local:BestTimeToContactBox x:Name="BestTime" BestTimeToContact = "{Binding Converter={StaticResource bitArrayConverter}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, Source={StaticResource BTTC}, XPath=/Root/Number}"/> (BTTC definition... <Number>////f2dm////f3R5////fyBi/7//f2dh////f2dr////f2di////HwAA</Number>...) The "BestTimeToContact" dependency property is an array of ContentControls, and the BitArrayconverter takes that Base64 string and transforms it into such. This all works very nicely, just as I hoped. But now I am tryin ...Show All
Janus007 Bug Fixes
Hi, Being a developer I know that writing software is a tedious business. I would just like to know how much time is spent by the WPF team going through bugs at the official bug logging site ( connect.microsoft.com) The reason why I am asking is because I logged a few bugs that are really critical for the application we are developing, and I would like a "timeline" as how long the whole process would take before the changes is added in a next CTP (which already to long to wait) or maybe a patch Thank you very much, Jaco Hi, Yes, they are both blocking. Thank you very much for you're assistance, Jaco Both of those issues were entered ...Show All
Spangltk Install VS2005 SP1 on VS2005 from SQL 2005?
Hi, Anyone knows if I should install Visual Studio 2005 SP1 on Visual Studio 2005 from SQL Server 2005 or should I wait for SQL Server 2005 SP2 Thanks, Raul Sardinha As far as I know there are no updates for PPE in Service Pack 1 so unless you have installed the Team Explorer you don't need to install the SP1 for Visual Studio 2005. ...Show All
Anders Pettersson Accessing user list from VSS
Hi, How to get the user information from the Visual Source Safe (VSS). I want to display the associated users for a project configured in the VSS. Can someone help me to get the user list from the VSS using C#. Thanks in advance, santhosh Open the database first IVSSDatabase db = new VSSDatabase(); db.Open(@" \\alinc00\vss ", "Admin", "password"); Get the item of interest ( http://msdn2.microsoft.com/en-us/library/microsoft.visualstudio.sourcesafe.interop.ivssdatabase.vssitem(VS.80).aspx ) IVSSItem item = db.VSSItem ("$/path/file.txt") Use the Checkout collection to browse all the checkouts of that file ( http://msdn2.microsoft.com/en-us/library/microsoft.visuals ...Show All
KamAbh Binding List and inheritance
Hi again, everybody, Still working on DLinq and inheritance. I have my classes Contact and Company, where Company derives from Contact. My challenge is to read a list of companies from the table and return them in a BindingList<Company>. I started with the following code: var q = from c in db.Contacts where c is Company select c; return q.ToBindingList(); It returns a BindingList<Contact> The following won't compile: var q = from c in db.Contacts where c is Company select c; return q.ToBindingList<Company>(); The only way I've been able to accomplish what I want is like this: var q = from c in Database .DB.Contacts where c is Company select c; BindingList < C ...Show All
PhilAJ WPF Text blurry
Hi, I'm wondering if this is a known problem: I have a multi monitor setup and whenever I move a WPF window from one screen to the other the text becomes totally blurred. Also, moving the window across to the other screens is very slow. Sometimes, this blurry text effect also appears on the main monitor, for example when I expand a combo box, etc. Anybody knows what's going on there Thanks, Tom Here is a screenshot that shows a WPF control halfway on anoter screen: http://www.kingvest.de/blur.png anyone I think this is a real big problem Hi, I was expecting this to be fixed by release, but it hasn't been. I'm running the first ...Show All
mrboldt Embedding Java in C# Project Library
Hi, I have a C# solution (.NET 1.1) where someone has integrated a java application source files in a library project. Just for the record this application is fop 0.20.5. Currently I need to adapt this solution to use the latest version of fop (0.92beta). When integrating the files and compliling I get many java errors in the imports. Some examples: import java.awt.geom.Point2D; import java.awt.color.ICC_ColorSpace; import java.io.FileFilter; and some others... Can someone help me out What am I missing I have in the references vjslib and also downloaded VJSSupUILib but I still get all these errrors..... Try IKVM < http://www.ikvm.net/ >. It can convert Java Bytecode like .class and .jar int ...Show All
QiSheng 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
Kestutis question about using crystal reports in C#
I have a rpt file and I am trying to use it for printing service of the application. when I import the document into the project everything is OK. I just use it as a class. but I don't want it to be inside the project. I want it as a seprate file near the application. so the user will have this opportunity to change the report without having access to the application itself. I don't know how to implement without add the file into the project. thank you in advance try using ReportDocument.Load("<path>") (e.g. ReportDocument.Load("C:\report.rpt")) ...Show All
ChoKamir How to set "SourceControl->CheckOutOnEdit" property programmatically?
Hello! I am implementing a VSIP package and I need to set programmatically Tools->Options->Source Control->Environment->Checked-in item behavior->On-Edit property. Please advice how to do it I have reviewed MSDN, internet but found nothing. I found that value in registry at HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\8.0\SourceControl->CheckOutOnEdit and I can change that value there, but I want to found an elegant solution for my problem and use VSIP interfaces or automation model. Please help. See if DTE.Properties have that section/property indexed: HOWTO: Getting properties from the DTE.Properties collection of Visual Studio .NET. http://www.mztools.com/resou ...Show All
