Ralf_from_Europe's Q&A profile
Visual Studio Team System Project inheriting
I need to know if I can generate a new project inheriting all information of another one, and at the time of updating one the other of automatic form is updated, if possible that on Team System, some people tell me than tool "Share" can help me, but i don't have this option, any idea can I do this Thanks! Ray What kind of information are looking to inherit between projects If you base the 2 projects on the same process template they have the same work item types, queries and reports. However, if you update stuff in 1 project, it won't automatically update the other project. It will help to know more details on your specific scenario. ...Show All
SharePoint Products and Technologies Specify height and width in a list instance webpart
I am creating a list instance with the following xml: Page.xml < xml version="1.0" encoding="utf-8" > <Elements xmlns="http://schemas.microsoft.com/sharepoint/"> <ListInstance FeatureId="00BFEA71-2062-426C-90BF-714C59600103" Id="FinancialWebLinks" Title="Web Links" Description="Financial Web Links" TemplateType="103" Url="FinancialWebLinks"> <Data> <Rows> <Row> <Field Name="URL">http://www.dnb.com/us, Dunn and Bradstreet</Field> </Row> ...Show All
.NET Development xml loading data into a class made from xsd
Hello, I need an example of how to load data into a class files properties, right now I have something like this: CheckAPIState ChkState = new CheckAPIState (); System.Xml. XmlDocument myxmldoc = new System.Xml. XmlDocument (); string xmloutput = ChkState.CheckState(); //gets the returned value as xml data myxmldoc.LoadXml(xmloutput); string messg = myxmldoc.SelectSingleNode( "ShippingAPIResponse/APIState" ).InnerText; textBox1.Text = messg; myxmldoc = null ; I would rather put the ShippingAPIResponse/APIState value into a class property. Now this example ohnly shows one key however there is going to be alot of output data with other methods. I know I can do something like : pub ...Show All
SQL Server Can I use the foreach loop to obtain the sub folder names within a folder?
I have a set of folders with the following structure: MainFolder 1999 SpreadsheetA.xls SpreadsheetB.xls SpreadsheetC.xls 2000 SpreadsheetA.xls SpreadsheetB.xls SpreadsheetC.xls etc. Is there a way that I can use the foreach loop container to loop the sub folders My plan was to get the folder name and path into a variable, use this to build the connection string for each file in this folder, carry out the upload for that folder, then move onto the next folder and do the same thing, but I cannot see a way to do this. Thanks, Sam If the list of folders is known and finite then you can just type them into the ForEac ...Show All
Software Development for Windows Vista Sample Simple-STS for RC1+: Cannot retrieve a Managed Card from SampleSecurityTokenService
I can create *.crd without any problems. However, I’m unable to retrieve the Managed card form SampleSecurityTokenServices. Repro: 1. Run SampleSecurityTokenService.exe to accept Managed Cards 2. Go to https://www.fabrikam.com/CardSpace/Sample.htm and click on “Click here to get the Token” 3. Select the Managed Card and Send. Windows CardSpace tries to contact https://www.fabrikam.com:7001/sample/trust/selfissuedsaml/mex and receives the following error. “Your data could not be retrieved from the Managed Card. Check your network connection and verify you have supplied the correct authenticated credentials." In the Event Log, I found the following message: There was a failure making a WS-Trust e ...Show All
Software Development for Windows Vista Raising an Event from a Workflow
Hi, I have a very simple question. I have a WinFX Browser Application. Through this I start a Workflow and add a Service into this. The Browser Application Registers for Events in the Service. This event is raised by the Workflow itself when a certain condition is met. For some reason the Workflow raises the event but the code on the Browser Application never gets executed. I have searched everywhere for an example of this kind but could not find any. Could someone tell me how to get this done. Thanks I'm trying to do the same thing as you mentionned, but this time, passing parameters to the event. Is there a way to do that What I mean is to call the service directly in the code behind file insead of ...Show All
Audio and Video Development HDDVD_E_ARGUMENT on style setting
Player.playlist.titles["foo01"].chapters[0].top(); document.BG.style.display = "false"; This is throwing an error on the second line. Some conflict with the video playing Try: document.BG.style.display = "none"; ...Show All
Visual Studio Team System Install VSTS with data tier on a Cluster SQL Server
hi .. I was wondering if someone can send me a link for installing VSTS in a dual server mode. where data tier resides on a clustered SQL Server instance. I am not having any luck with finding such a doc on msdn. thanks I have it installed in VPC without problems, and as far as I know (I don't have VMWare) it is not sensitive to VPC nor VMWare, it's just a question of performance, not a problem of compatibility ...Show All
SQL Server SQl 2005 Server Not accesible through ASP.Net 1.1 Code
I am trying to connect a production SQL Server 2005 which is under firewall through an Application written in ASP.Net 1.1 and I get error "SQL Server not available or Access Denied". I am able to connect to the Server through SQL Mgr also using the same Code and Web.Config file I am able to Connect to the SErver using ASP.Net 2.0. I am able to run the application for a SQL Server 05 which is in the same domain as of the Application Server. My Application is not working only when I use ASP.Net 1.1 code for the Remote SQL Server 05 which is under Firewall. But for the same Server ASP.Net 2.0 works fine. I have searched a lot for the problem and port No, DBNETLIB update is also tried. Please let me know if anyone has ...Show All
Visual Studio Team System How can I found what was changed by a developer or a group of developers?
How can I found what was changed by a developer or a group of developers Ok, so we have a Team Foundation Server, and … - The project was added to the TFS source control. - There are 10 developers working on the project. - The project is C# / Windows Forms / ASPX (VS2005) - The code and ASPX / Forms design is modified every day. I am the one who is looking after the code itself, and I would like to find what was modified by a developer in the past 2 days or by a group of developers in a perio ...Show All
Windows Forms app.application Publish file
Hi, I know this has already been posted, but I need to get it clear in a simple way. The 'app'.application file is created when you publish an application to a web/ftp server, along with other files. The publish.htm page shows a button linking to the 'app'.application file and I can correctly install it, but a friend of mine (and maybe many more people too) get the 'app'.application file contents displayed in his browser. He has the .NET Framework 2.0 installed (installed automatically with VB 2005 Express), and I would like a simple solution to resolve this issue, without reinstalling .NET 2.0 (unless you are sure it resolves it). I also heard that it has to do with MIME types , but I'm not too familiar with this term to unders ...Show All
Visual Basic vb.net 2005 ALT-TAB forms not hidden
In v2003 setting the form property 'ShowInTaskbar' to FALSE would hide the form from the task bar but also hide the form if I did a 'ALT-TAB'. This is not the case in v2005. WHY and how can I hide the form for 'ALT-TAB'. The form has to be borderless. rune You can set the following properties of the form controlbox=flase and text = "" ( ie delete the default text of the form ) ...Show All
Windows Forms Why using childForm.MDIParent = this not show childForm
I use the following command but it does not run : childForm f=new childForm; f.MDIParent = this; f..show(); If I omit the second command f.MDIParent = this; It run normally I do not understand that because in .net 1.1 they are correct. Please tell me what the problem. Thanks in advance! Hi, what do you mean by "not run", are you getting a compiler error, if so what is the exact error text you got If so did you make sure you set the IsMdiContainer property of you main for to true Mark. ...Show All
Visual Basic How do I add projects to my solution
In VS 2003 I just created a blank solution, then right click on it and choose add project. I could do this several times to set up my projects within my solution before I started coding. Now in 2005 when I create a blank solution and right click on it in solution explorer and add new project, the solution disappears and is replaced by the project. The only way I can find to add projects is to first add folders to the solution (seriously tedious when you consider the old version did this for me) Is there some menu I missed, or did they really take 10 steps back on this version Go to Tools/Projects and Solutions/General and make sure that "Always show solution" is checked. This should keep the solution icon visibl ...Show All
Visual C++ How to overload the ">>" operator for a user-defined type
Hi, I have a Location class in my project, and I need to read a Location object by using cin >>, eg: Location locationObject; cin >> locationObject; I'm wondering if there is a way to overload the >> operator for a user-defined type like this. I trid to code the overloading method: istream& operator >> (istream& is, const Location& addLocationObject) { return is >> addLocationObject; } The compiler does not complain, but there is a error at runtime when the >> operator is called: "Unhandled exception at 0x00414219 in C++Project.exe: 0xC00000FD: Stack overflow." and it's pointing at the second line of the method above. Any suggestion Thanks in ...Show All
