annaDD3's Q&A profile
Visual C# How do I make messagebox central in the other window.
Basicly just a "pop up" message box that comferms that the data has been saved but it isn't central to the other windo it just pops up were it whants to :D well if you have some code to fix it would make me a happy girl :) MessageBox.Show("Changes have been saved", "Saved", MessageBoxButtons.OK, MessageBoxIcon.Information); Basicly whant this messagebox to appere in the central anyway I can do that Or do I h ...Show All
Visual Studio 2008 (Pre-release) How do I sign soap headers?
I have created a BindingElement that adds a soap header. I would like that header to be signed by the AsymetricSecurityBindingElement. How would i do that Do I use MessagePartSpecification, how I am using the January CTP. Thanks, Gus Hi Gus, Can you explain the scenario that you are trying to accomplish We support signing application headers by using ProtectionLevel property of MessageHeader attribut ...Show All
Visual C# Handling strings with escape characters in C# 2005
I have a string in C# 2002 that is coded like this: private string m_strProdOutputBeginPath = @" \\DOR-PROD-FTP\NAUPA\ "; and when it is used it displays exactly like it is coded. When I copied the code to C# 2005, and ran itthru this code: m_strOutFilePath = m_strProdOutputBeginPath + "EROUTFILE.txt" if (!File.Exists ( m_strOutFilePath)) { using ( FileStream fs = File.Create(m_strOutFilePath)) { ...Show All
.NET Development Tricky Question Data Access
Hi all am developing one web application in .net, I want to develop a component a console project which will run as server for any data access.I am confused in how the web server will connect to this data access server for data accessing. I just want to distribute this data processing out side web server ie only a function will be called from web server from the dataaccess server which will be running on different m/c , and function will retu ...Show All
Windows Forms Using XML Schemas in C++ Unmanaged Code
Hi I am trying to use a "from" schema and a "to" schema to transform an XML stream in unmanaged C++ using the MSXML3/MSXML4 DLLs. Does anyone know how to do this Thanks, Royce ...Show All
Visual C++ Essential libraries/SDKs for development
Good afternoon... I was wondering what are considered the essential libraries or SDKs that I should add to my Visual C++ Express installation. I realise the Platform SDK is an important one, and I'm downloading that. But what others should I get my hands on sooner than later Thanks. Nothing is really "essential" it all depends on what kinds of application you planning on developing. If you are planning on writing a game (or a program that ...Show All
Visual Studio Team System Bug in tf merges?
Hi, I use the following command to find all merges to my branch: tf merges $/project/branch /r What I find VERY strange is that some lines look like this: Changeset Merged in Changeset Author Date --------- ------------------- -------------------------------- ---------- ... 6438 6436 author 02.03.2006 This means, that a changeset with a higher changeset id has been merged into a change ...Show All
Software Development for Windows Vista WWF Final Release To Run On Windows Server 2003?
Hi, Curious as to whether the final release of WWF will be able to run on Windows Server 2003 For development, will it also still run on Win XP Pro Thanks! Shawn Hi, All the WinFX including WWF will work on Windows Server 2003 and Windows XP SP2 as well. Regards, Vikram ...Show All
Smart Device Development How to use the eVC Upgrade Wizard ?
Is there any information regarding how to use the "eMbedded Visual C++ Upgrade Wizard for Visual Studio 2005 Beta 2" http://www.microsoft.com/downloads/details.aspx FamilyID=77ffddbf-b215-4d96-94dd-6ae9b7bb53d2&displaylang=en I have installed it, but then what should I do I cannot see this wizard in Visual Studio 2005. How do I start it Any pointer would be welcome! In order for the eVC upgrade wi ...Show All
Windows Forms Can I edit a form and its code in the same tab?
Is there an option in Visual Studio to show both a form and its code in the same tab with "subtabs", as in Eclipse or #develop Personally I think having separate tabs for the form and the code clutters up the tab strip and makes it harder to find the tab I'm looking for when lots of tabs are open. (Reference screenshot: http://www.icsharpcode.net/OpenSource/SD/Default.aspx - notice the Source and Design tabs at the bottom of the MainFo ...Show All
SQL Server Merge 2 Databases?
My problem is this: I have a database file on a hard disk. I have to read that data and merge it into a database on a sql server. How can you merge The databases are set up the exact same way. The only difference in them is the data. Also, in the database file I have image names, I have to compare them to what is on the database on the sql server. Thanks Takes some logic, y ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Flicker in Direct3D application ???
Hello guys, I developed a small(very simple) 2D game last summer, and I remember I had to use a temporary output for the Drawing/Graphics, and then whole Output draw at once(like one bitmap) so that I avoided "FLICKER PROBLEM". Now, I am trying to get into 3D programming and want to ask, if there could be the same problem, because when my SpaceShip is moving I think its not so smooth as it should be and that it might be the same ...Show All
Visual Studio Team System Private accessors for static classes don't compile
Hi, I'm writing unit tests for static helper classes, e.g.: namespace UnitTestExample { public static class Helper { private const string KEY_EXAMPLE = "Example"; public static void DoSomething() ...Show All
Visual Studio AvailableItemName - unexpected behaviour
When I add a new Build Action entry via the AvailableItemName Item, the text "AvailableItemName" also shows up in the Build Action's drop-down list. I added this entry in my .csproj file: <ItemGroup> <AvailableItemName Include="JScript"/> </ItemGroup> These were from the instructions provided here: http://msdn2.microsoft.com/en-us/library/ms171468(VS.80).aspx How can this behaviour be av ...Show All
Windows Forms Adding a DataSource property to my Control
I want to add a DataSource property to my control that, at design time, will allow the designer to drop down a list of valid datasource components just like the DataGrid control. The type on the DataSource property is just 'object', so I& ...Show All
