Answer Questions
pinkpanter UDP Sample slow ...
Hello , Im looking at the UDP sample as an example of how to wirte a custom transport but it is slow. using a composite Duplex channel with Binary serialization , performance is worse than HTTP with Xml . And about 500% slower than net.tcp Any pointers Regards, Ben Anyone Some more testing , shows that the performance of methods which are One Way is quite good. This suggests it is more some ...Show All
Miken.cn August CTP Visual Studio 2005
Hi, I installed Augist CTP of VS2005 and it also does not have the Microsoft.VisualStudio.Package.Project.dll. hence how do I build my VSIP packages referencing Microsoft.VisualStudio.Package.Project.dll. Posts on this forum indicated that August CTP of VS2005 worked fine. Thanks, -K Package.Project is no longer shipping with VS. It is included in the October SDK (to be released with the RTM o ...Show All
MotoMoto How do you Add F1 Help and ToolTips to a Modeler?
In the metamodeler, how do you specify F1 help and tooltips, etc. for objects, relationships and attributes of a modeler Unfortunately the current CTP versions of the DSL Tools do not support adding tooltips and the context ID for the F1 help (except for the toolbox items). The final version of the DSL Tools will allow you to do that in the graphical editor for the .dsldm/.ds ...Show All
krycek Cannont Get VSS2005 to Work with VS2005
I've installed, deinstalled and reinstalled at least 3 times now, VS2005 first, then VSS2005. Running VS2005 does not show any items that deal with VSS. Both apps work fine individually, but I cannot access VSS within VS. Hi, I get installed VS2005 professional edition , but i don't find visual source safe in it. Do we need visual source safe sofware separate. ISN't VSS inbuilt in VS2005. Please reply to me. Thanks ...Show All
Bader Cheema Task dll is locked after build
I get the "CS0016: Could not write to output file" when building my solution the second time. I'm running VS 2005 Release version. The error occours in a project where I build and call a Task prior to building the actual project. The dll containing the Task seems to be locked by VS from the build before. The error can be avoided by reopening VS. Also tried to follow the solution suggested by http://support.microsoft.com/default.as ...Show All
biju VS SDK March 2006/ DSL TOOLS - Problem to build
Hi, I have a little problem with dsl tools. I had been playing with the tools, i had create a project, select class diagrams and I tranform all the templates. But, when i want to build the solution i had this error: Error 1 The "DevEnvSetup" task was not found. Check the following: 1.) The name of the task in the project file is the same as the name of the task class. 2.) The task class is "public" and implements th ...Show All
Ian1971 VSTO 2005 COM Add-In Word
The COM Add-In (code below) runs fine but only for one button click. Either button runs only once then both "Check In" and "Check Out" will not respond to a second click. Any comments welcome. Thanks, Kevin Gordon. namespace DocumentAddin { using System; using Extensibility; using System.Runtime.InteropServices; using System.Reflection; using System.Resources; using System.Drawing; ...Show All
moulincourt about the sourcesafe, how can I see the history.
Hi , Using MS Sourcesafe, I integrated it with VC++ 6.0. When I check out and check in in VC++, I can not find any record in history. But if I do it in the sourcesafe enviroment, It is ok. What happened Thanks. cnila@tfosorcim.moc (reverse each word for spam avoidance) Alin Can you provide more details about what you're doing If I understand correctly, you checkout a file in VC6, modify it, ...Show All
boss nunya Split (T4) code in more than 1 text template?
Hi all, For the DSL I am working on at the moment I have to write quite some "T4 code". (I am generating WSDL out of the model). I am using the Class features Control block (<=+ =>) syntax to create some extra methods, classes, etc. this works fine but the code in the templates becomes quite a lot. I am wondering, is there a way to divide the code over more than one template so the templates remain a bit readable Thanks E ...Show All
toni_gom How can I output a comma delimited list of value from multiple records?
I need to loop through a datatable and output a list of values as a comma delimited string into a textbox. The Table and List controls output the values horizontally. I need the values of a specific field in my DataTable to display like "value1, value2, value3, etc." in a textbox. Is this possible Were you able to figure this out I'm trying to accomplish the exact same thing. Does anyone have any id ...Show All
swebber27 Text template load a file
Hi, I need to load a project file from text template and write all lines. The below code work fine, but I need to put complete "path" in property " FileSourceCode" I need to load from "current path". <# if (System.IO.File.Exists(att.FileSourceCode)) { System.IO.StreamReader sr = new System.IO.StreamReader(att.FileSourceCode); #> <