Answer Questions
crazy_boss VSS 6.0 Command line
Hi, I'm working with VS 2005 and VSS 6.0. I've build a small .cmd file that clean some folders, build the solution (using devenv.exe) and deploy files to a specific folder. I'd like to add a first step in my bat file which is "get latest version of the project files with user USER password PASS and without overriding checked out items". I've started to look into the documentation of ss.exe, but it's quite complex and I didn't get success. Does anyone have the right command line for me Thsnk in advance, Steve ss.exe will never overwrite checked-out items. Plain old "ss get -R" should work :) Thanks ! ...Show All
ryan101 svcutil.exe - Passing multiple services to generate clients results in missing TransactionFlowAttribute
First off, WCF is really hitting a sweet spot for me as I develop an ESB for my company, fyi. OK, here's the deal. I've got these two service contracts: [ ServiceContract ()] public interface IEnterpriseEventRegistrationService : IServiceContract { [ OperationContract ] [ TransactionFlow ( TransactionFlowOption .Mandatory)] EnterpriseEvent RegisterEnterpriseEvent( EnterpriseEvent enterpriseEvent); (other operations removed for brevity....) } [ ServiceContract ()] public interface IEnterpriseEventPublishingService : IServiceContract { [ OperationContract ] [ TransactionFlow ( TransactionFlowOption .Mandatory)] EnterpriseEventSubscriber RegisterEnterpriseEventSubscriber( EnterpriseEventSubscriber subscribe ...Show All
JohnBurton SVCUTIL gives an error for generating proxy for the SSL endpoint.
Hi Community, I am getting an error for generating proxy for endpoint. Using this post http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=520233&SiteID=1 I configured the svcutil.exe.config file. But still I get the error. I have the latest WCF bits. Any help or clue is appericiated. *********************** Start of Error ********************************************************************************************** C:\CVSRoot\CVSRoot\Microsoft\EXP1\ServiceConsumer\Secured\Oracle Service\UseNameOverSSL>svcutil https://tarpondev1.techlabs.Fabrikam.com:8889/gateway/services/SID0003002 wsdl Microsoft (R) Service Model Metadata Tool [Microsoft (R) Windows (R) Communication Foundation, Version 3.0.4324.13] Copyri ...Show All
ChrisNijjar gridview
Hello, I have a bunch of listviews that have the exact same shape but use different itemssources. So I thought I would try to share the gridview between the listviews. I put the gridview the resources and tried to use it but as it turns out two listviews can't share the same gridview. I was wondering is there a way around this Or do I need to wrap the listview in a user control Thanks Houman You could declare the column collection (GridviewColumnCollection) as a Resource and then set Gridview.ColumnCollection to that resource using the StaticResource markup. This allows you to declare the column collection once and share it amongst gridviews. <Window.Resources> <GridViewCo ...Show All
guyinkalamazoo3 Debugger.StepOut - how to obtain returned value?
Is this possible in any way In native code, the return value is usually in eax. If you are in managed code, there is no good way to get this, sorry. John ...Show All
Yoni_Nijs Build error
Does anybody know what causes the following BuildError Error 1 The "Vbc" task failed unexpectedly. System.ArgumentException: The resource string "General.DuplicateItemsNotSupported" for the "Vbc" task cannot be found. Confirm that the resource name "General.DuplicateItemsNotSupported" is correctly spelled, and the resource exists in the task's assembly. at Microsoft.Build.Shared.ErrorUtilities.ThrowArgument(Exception innerException, String resourceName, Object[] args) at Microsoft.Build.Shared.ErrorUtilities.VerifyThrowArgument(Boolean condition, Exception innerException, String resourceName, Object arg0, Object arg1) at Microsoft.Build.Tasks.TaskLoggingHelperExtension.FormatResourceString(Stri ...Show All
Bruce Baker Accessing ThisDocument from outside using Word Object Model
Hello, Is there a way to access ThisDocument's methods and props from outside, e.g. from a Word VBA macro. Thanks, Andrew Hi Andrew Your specific requirement is still unclear, except that you're not using VSTO and should be asking in the office.developer.automation newsgroup . If you mean, can you work directly with Word's object model, the answer is yes. In order to use early-binding, you have to set a Reference to the specific Word version object library; late-binding is also a possibility and would be required for C# or VB.NET with Option Explicit On. In any case, you will find code samples for working with document properties in Knowledge Base articles. Search the terms: .NET custom document ...Show All
h1 Any books for VSIP SDK Explanations with code examples
Hi, I'm very much new to VSIP, so i don't know how to start and how to use it. If anybody know how to use it or if any books available for the same, please let me know. Thanks in Advance, Regards, Saravana Kumar B Hi there, I don't believe there are any books on the topic. The first thing you want to do is get the SDK which comes with a bunch of documentation. And your starting point for a lot of information is the VS extensibility portal (including some great blogs), which you've likely run across: http://msdn.microsoft.com/vstudio/extend/ What you may not have found is some video presentation on the general VSIP and project architecture. I would highly recommend those found at: http://www.vsipdev.com/techinfo/ ...Show All
SLV reliable messaging, security and IIS6
Hello from Spain, We are developing a client-server app using Indigo (indigo sounds better than wcf, isn't it ). Well, in the programmers computers we use the server into a console app, now the development is more avanced and we want to have a server's version in the IIS. The problem is that RM doesn't work, I connect to the server using anonymous and if i activate RM it gives me an exception saying: Test method ClienteTestProject.ClienteTestProject.CargarServidorDesdeCliente threw exception: System.ServiceModel.CommunicationException: The remote endpoint no longer recognizes this sequence. This is most likely due to an abort on the remote endpoint. The value of wsrm:Identifier is not a known Sequence identifier. The reliable session ...Show All
Gerson Rolim Bind the existing listobject without hard coding the Sheet name
My VSTO application contains more than 100 sheets. In all the sheets there is one list object and a chart bind to it. I can access the list object SetDataBinding as follows. Globals .Sheet2.list1.SetDataBinding(); Is there any way to bind the existing listobject without hard coding the Sheet name. For example: Excel. Worksheet activeSheet = (Excel. Worksheet ) Globals .ThisWorkbook.Sheets[1]; activeSheet.ListObjects[0]. ( here SetDataBinding() is not available! ) It is possible to add listobject dynamically using Control.AddListObject() and that method is returning ListObject instance, for that SetDataBinding() is available. But I need to bind the existing list object. Is ther ...Show All
Yuhong Bao WinFX Runtime Components 3.0 Beta 2 installation problems
Hello! I have some major problems installing WinFX Runtime Components 3.0 Beta 2. It won't work... The errorlog says: [05/26/06,11:43:37] Windows Communication Foundation Beta 2: [2] Error: Installation failed for component Windows Communication Foundation Beta 2. MSI returned error code 1603 [05/26/06,11:43:56] WapUI: [2] DepCheck indicates WinFX Runtime Components 3.0 Beta 2 was not attempted to be installed. I have tried everything, please help me! /Goran Zip up your WinFx installation logs (found in %temp% matching dd_*.*) and mail them to me at mark.grinols at microsoft dot com and i'll take a look. Also please let me know what previous WinFX builds you've had on the machine. Thanks! I have also a ...Show All
airwalker2000 edit -> delete on excel disabled, after excel vsto installed
I have created a excel project utilizing VSTO 2005 and now I have installed it on different computer to test it. It works great on their computer and does everything it is suppose to do. The issue is now when the user’s tries to use their regular excel the “Edit-> Delete” is disabled. Any ideas, why And how to fix it… Thank you Hi johnnym Have you checked by putting a breakpoint, that the shutdown event for the VSTO application for Sheet1 is indeed being invoked and the above code is being executed. Try this - Use the VSTO solution with the code mentioned in my previous post. In the VSTO solution the Edit->delete is expected to be disabled. Shut down the application and ensure that the breakpoint a ...Show All
Amit V Ribbon Control Support JACOB
Hi Geeks, I have two ribbon control button item btn1 and btn2. btn2 is disabled at startup, when i click btn1 my login form will load, after validaing the user i want to enable btn2. My user validation is ok but i cannot access the Ribbon class from my login class. Can some one help please. Jacob Can you provide a little more detail about your add-in architecture Also, can you clarify what development enviornment you are using I'm not sure I understand the question. Is the issue that you can access the Ribbon class from the login class in order to call InvalidateControl Thanks, Rachel ...Show All
Jeff3464 Adding ActiveX control to MS Visual Studio 2005
I have a third party ActiveX which I'd like to utilise with a project developed using Visual Studio 2005, mostly developed in C#. I've taken the .ocx and run RegSvr32 and AxImp against it. In Visual Studio I've added the control to the toolbox, but when I try to add it to a form I get the following : Message box : Failed to register the ActiveX control. Please ensure it is registered properly 3 warnings 1 : Could not resolve dependent COM reference "stdole, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 2 : Failed to create the wrapper assembly for type library "AxWTReaderNet". Exception of type 'Microsoft.Build.Tasks.ComReferenceResolutionException' was thrown. 3 : The ...Show All
Zapp Drillthrough parameter is null unless I set a default value in ObjDataSource
I'm using webforms and tyring to perform basic drillthrough functionality, where the main report displays a list of Reps and the drillthrough displays Rep Details. I'm using datasets that call stored procs. Problem is... my drillthrough parameter is not being passed through to my stored procedure, via my ObjectDataSource. The drillthrough param from the clicked cell in the main report is never passed to the stored proc. If I set a default value in the ObjectDataSource > Set Parameters dialog box my data displays fine (for the default value only of course). If I don't set a default value I get an empty drillthrough report, with no errors, just empty. In the ObjectDataSource > Set Parameters dialog box I'm setting Parameter S ...Show All
