Answer Questions
Varsha Sharma Error while trying to serialize Cyclic Dependencies
I have a following cyclic dependencies between two classes in my object graph: [DataContract] [KnownType(typeof(Person))] public class Company { [DataMember] private IList employeesList; private IList EmployeesList { get { &nbs ...Show All
Vester SecurityException while Displaying image using BitmapImage in web browser application
Hi I'm trying to display image using BitMapImage in a Avalon web browser application. I used the following code. BitmapImage bi = new BitmapImage (); bi.BeginInit(); bi.UriSource = new Uri ( "C:\\Sample\\images\\thumbnail05.gif" , UriKind .RelativeOrAbsolute); bi.EndInit(); // Set image source imgBaseProduct.Source = bi; In the xaml I have the following code. < Image HorizontalAlignment = " Center " VerticalAlignment ...Show All
komischeszeichen What does this icon mean???
So I've got an ASP.NET that's under sourcesafe 6.0 control and some of the files show an icon of a circle with a slash through it. So I do a search on icons in the on-line help and nothing comes up. I can right click and I get all of the regular ss options: Get Latest Version, Check Out, etc. and they seem to be working. However, I'm getting some compile errors in the project that are looking for missing classes. Anyone know wh ...Show All
Raymond Chen How to create a hyper link to insert into a .doc file ?
Hi dear all: how to create a hyper link ( is it an object ) prorammatically to save ( insert ) into a .doc or a .rtf file ( like the one we create manually in MS Word ) even without MS Word running or installed on the machine. Thanks. You need to have Word installed to access its object model. You can also learn about the object model with the macro recording capability. Mariano ...Show All
Vassil Kovatchev Pseudo variable @clk
Hello, prior to VS2005 one was able to reset @clk after every debug step by placing a @clk=0 in a watch window line following a @clk. While one can still use the @clk, the automatic resetting doesn't work anymore. And after every debug step one has to reset the @clk manually. Is there a way to automate this again in VS2005 Help would be greatly appreciated!! Thank you, Uwe Hi Gregg, that's exactl ...Show All
greekgeek Stability and using
I have two questions: 1. Stability of this technology 2. Can I use this thechnology in real projects "No. It is not even beta. Of course, you can use it but you are not allowed to distribute your projects." You say not allowed to distribute your projects. Does this only apply for projects compiled with the new experimental compiler Or does it mean any projects that simply reference ...Show All
Peter Svensson Is there a way to specify alternative file comparisson tools in SS?
I need to use a different tool other than the default tool provided in SourceSafe to show the differences between the files that I have checked into my SourceSafe database. Is there any way to configure/develop this in SourceSafe For example, if I have files checked in that are of type .rbd, is there a way to configure SourceSafe to use a specific tool for comparing .rbd files I was hoping that in the latest version of SourceSafe ...Show All
Emily C. Selecting biztalk orch shapes from an Add-in
Does anyone know of anyway to use a Visual Studio 2003 "Add-In" to select shapes on a Biztalk 2004 orchestraion deisgner like you had clicked the shape directly If there is no inherant way to do it is there an SDK or something that could help me thanks for any help you can provide. ...Show All
nanceoiage Unable to install VSTMOS 2005
I have not been able to install Visual Studio 2005 Tool for MS Office Sytem. I get the following message: Office 2003 Service Pack 1 - Microsoft Office 2003 with Service Pack SP1 is not installed on the computer. I have SP1 and SP2 installed on it. I have the Teachers' and Students' version of Office 2003, which might not work with VS 2005 but wasn't Access 2003 another option for installation, as the software box states I have an independen ...Show All
SaiSatish Source Provider cannot be found after reinstall
Hi, I wanted to install vs.net 2005. I had the beta version which I uninstalled and then installed it. I also have on my machine vs.net 2003. Now after the installation of vs.net 2005, the source control for projects in 2003 as well as in 2005 are missing. The connection seems to have lost for the solutions with the source control. What went wrong and what should be done to get back source control in vs.net 2003 and vs.net 2005. Any ...Show All
btrabon disconnect sourcesafe from visual C++
Is there an easy way to disconnect and reconnect a project in Visual C++ 6 from the sourcesafe We have a very large project with lots of directories and subprojects. I branched the project to another directory tree, but VS6 insists on checking out from the original branch. Is there an easy solution Thanks, Maor If you script a little code to read the DSP and DSW files, you can scrub the control info very ...Show All
WindSailor App sample
Is there a Winforms sample (i.e. more then Console.WriteLine statements), using the objects or projecting into business objects or something and how they lay that out and maintain client object state TIA. Any idea on when the next drop will be I'm about to do a series of LINQ presentations for code camps and UG meetings and would like to have an idea other than just sometime this spring.Feel free to respond offline at jimwooley at hotmail ...Show All
perrakus vs 2005 beta 2 setup fails
When I try to setup vs 2005 beta 2, it says that it failed to setup visual studio itself after it gets to the end screen. The installation seems normal untill then because the vs 2005 even gets a checkmark next to it when on the install screen. The progress bar never moves when it is on vs 2005 though. I will post the error log when I can find it. Is this a big problem Do you ...Show All
BorisVG Embedding Relationships and Inheritence
I have an embedding relationship within my domain model. I would like the contained class to be able to inherit from another class. However, this doesn't appear to be not supported in the DSL. Is there anyway that I can setup this inheritance relationship Cheers Susan Entwisle Hi Susan, You shoudl be able to make the contained class a subtype of another class just in the same way that you can make any other type derived. How ...Show All
johnlinfa Implicit parameters in lambda expressions
Consider v.FindAll(x => x > 5) We could use an implicit parameter in order to supress the parameter list. So we need a keyword to refer to the undeclared parameter, for instance "it" or "_1". The previous code would be equivalent to: v.FindAll( => it > 5) or mayby: v.FindAll( it > 5) For an unnamed second parameter we could use it2 or _2 etc. Is there any problem with this new simplification ...Show All
