cadi's Q&A profile
Visual Studio 2008 (Pre-release) Envelope declaration and namespaces
I would like to have a namespace declared in the envelope start tag just as addressing and soap. I've noticed that the AddressingHeader class derives from IMessageHeaderWithSharedNamespace. This is the interface the Message class uses to spit out the namespaces at the beginning, which is what I want. However, this interface is internal to the System.ServiceProcess.dll. It doesn't appear that there is any way I can do this as all the classes/ ...Show All
Visual Studio 2008 (Pre-release) Datatemplate with type from another assembly?
I tried to use a DataTemplate for my listbox items. Where the DataType is located in another assembly. I used xmlns:myDll = " clr-namespace:MyDll.MyComponent.App;assembly=MyDll " > to reference the class namespace. And finally referenced it in my datatemplate. I get no error but the item is not displayed. I tried the same in code and everything works as expected. So is this a bug <UserC ...Show All
Visual Studio 2008 (Pre-release) NavigationWindow for a Wizard?
I would like to use a NavigationWindow to present a sequence of pages to the user as a wizard (not the main window). Can this be done I want to load several pages into the window when initialized. I have tried using a CustomContentState to preload entries in the BackStack and then GoBack to return to the first page. But, that does not seem to work. The AddBackEntry does not appear to do anything. My applicati ...Show All
.NET Development Load and Save XML Page
I have an access program that needs to download and load XML data from a site. The access program then imports this XML. The code i'm using is below. It is having two problems (and i've tryed a few other syntaxes to save the file...). 1) The Save File dialog box is opening up, even tho i do pass in a path (and i've tried with both one \ and with \) and use FALSE for the second argument... 2) Even when i type the filename manually in the di ...Show All
.NET Development Write to excel
Hello everyone I need to write something from my textbox to excel! But i am a beginner Have somebody some tutorial or code or something that i can learn something over write to excel,... Greetz Sven You might find this article useful... Q316934 HOW TO: Use ADO.NET to Retrieve and Modify Records in Excel http://support.microsoft.com/default.aspx scid=kb;EN-US;Q316934 ...Show All
Visual Studio Team System Installing Visual Studio Team System
I have 2 partitions on my computer C : Windows XP Pro with VS 2003 and Visual Studio 2005 (not the Team foundation Server) D : Windows Server 2003 I installed a few weeks ago just to try projectserver 2003 the installation was done on the Windows Server 2003 on the D partition I installed SQLServer 2005 ctp April as mentioned in the installationguide I installed Sharepoint services as mentioned I tried ...Show All
Visual Studio Integrating MSDN April 2005 and VS 2005
I can not get the results from MSDN April 2005 in MS VS 2005 Documentation. Can I use this MSDN library as a local help I'm not sure why you might want to use the MSDN April 2005 documentation with your installation of Microsoft Visual Studio 2005. Visual Studio 2005 was released in November 2005. The MSDN Library for Visual Studio 2005 is more recent than April 2005. You can use the Add or Remove Programs a ...Show All
SQL Server SQL 2005 left join not working via OLEDB
Hi After chasing around a problem I have closed it down to just the following - I have two simple tables in my database linkme linkme2 both of which have one column called [catalog-no] I have put one record in linkme select * from linkme -- pulls back one record correctly via .asp page and management studio select * from linkme left join linkme2 on linkme.[catalog-no] = linkme2.[catalog-no] -- pulls back one record in management studio and ...Show All
Visual C++ Writing a Specific CRC32 Signature on a File
Just say I know the CRC32 Signature that I want to put on my file but I don't know how to specify it in my code so that when it signs the file it signs it using that specific signature that I specified, like if I open a file called "dune.map" and I know that the signature is supposed to be "DE545GHJ" how would I put that in my code so that when I click "sign" it signs the file using that specific signature, but ...Show All
Visual C# 3 word command in C#
Hi everyone, Happy to participate in this forum. Can anyone tell me how to define a 3 word command. Example like if we type GIVE BREAD DWARF or something like that. Thankyou. Thanks for your immediate response. Yes, I am writing a text adventure and want help with parser. Actually I want to extend parser to recognise such three word commands. Also can u please tell me what parser is Thanks a lot. ...Show All
SQL Server Encryption error processing cube with Visual Studio 2005 Analysis Services
Hi! I am trying to process a cube in analysis services of visual studio 2005, with sql server 2005. The error is: "Errors in the encryption library: Failed to encrypt sensitive data. Possibly the encryption key is inaccessible because of improper service account change." Please, if anyone know how to solve this eror, please let me know... Cristovao Hi Cristavo I also experienced the same error when I tried to configure the datasou ...Show All
Visual Studio Team System ProblemCollection
Hi I would like to know why FxCop show me only the first element. Thanks in advance public override ProblemCollection Check(Member member) { M ethod method = member as Method; if (method == null ) { return null; } if (method.NodeType == NodeType.InstanceInitializer) { return ...Show All
SQL Server SQLEVN70.rll error
When I boot my system , I get the message that my sqlserver installation is either tampered or corrupt. As a result when I try to restore my system to previous checkpoint I am not able to do so. Please let me know solution for this. I tried installing and uninstalling but that did not work....this is very very imp...please respond ASAP Amitkumar Jain wrote: "Your SQL server installation is either corrupt or has been tampered ...Show All
Visual C# Allow Null In Combo Box
I have a combo box, that has its datasouce, valuemember, and display members set. I need to allow the user to leave the null. I need the combo box to be null when the form loads, and allow nulls if the user does not wish to select anything. It is for a search criteria form. Does anyone have any suggestions Thanks why not add a listitem with value "" and a space in it. Listitem i = new ListItem; i.Value = ""; i.Te ...Show All
Visual Studio Trouble using matrix report with calculated values
Hello, I have a dataset that returns the following values DeviceId ( mac address for a device ) DeviceName ( user defined name for a device ) EventType ( has two values in and out ) many values for one device EventValue ( ) many values for one device ( eventtype and event values come in pairs for a device) SELECT CardEvent.DeviceId, GameDevice.Name, SUM(CardEventPoint.PointValue) AS EventTypeValue, CardEventType.Name AS EventType FROM CardEvent ...Show All
