NelsonCE's Q&A profile
Visual Studio Team System How to capture InnerText?
How can I extract InnerText or InnerHtml from the HtmlTag I get the enumerator from e.Response.HtmlDocument.HtmlTags.GetEnumerator() and then the HtmlTag but I dont see any method available for extracting the InnerText or InnerHtml. Can anyone suggest how to achieve this You might be able to use the built-in extraction rule "Extract Text" to achieive this. You can specify the surrounding text wit ...Show All
.NET Development Compiled regex in beta 2
In 1.1, when you create a compiled Regex, AppDomain.CurrentDomain.GetAssemblies will include an Assembly with a name like RegexAssembly12_0. In 2.0, this doesn't seem to happen. Is this a change in the way GetAssemblies works, or in the way compiled regexes work Good question. GetAssemblies should be the same as before. This is a change in the way compiled regexes work since Whidbey Beta2. ...Show All
Software Development for Windows Vista Question about TransactionalContext Activity
i am explaning the scenario...... i have decalred a variable a=1; I have placed "Transactional Context Activity" in Workflow Application and placed two "Code Activities" with in that Transactional Activity. In code1_execute & code2_execute , i incremented the value a. now place "Code Activity" after transactionalActivity. in Code3_execute i written Console.writeline(a); now when we set Transa ...Show All
Visual Studio Team System Excluding Specific Projects from a Team Build
Hello, When configuring the Team Build you can choose a solution (or solutions) to build. However, if you have a solution that doesn't build all the internal projects by default, how can you have TeamBuild not attempt to build those projects, or to just ignore those projects My scenario is this... we have to obfuscate our code which means running an obfuscator on the bits prior to releasing them. We use an obfuscator that plugs into VS and ...Show All
Windows Forms Forms AutoSize
i wantto be do that when i maximize or make fullscreen form, my form and its component automaticly autosize. how can i do with C# The easy way to do this is by using anchoring and docking . In the .NET 2.0 framework you can also use LayoutManagers for advanced layout management. See for instance TableLayoutPanel and FlowLayoutPanel. Similar behaviour is also possible in .NET 1.1, read this article a ...Show All
Visual Studio Visual Studio 2005 Documentation Missing...??
I have installed Visual Studio 2005 standard edition. Every thing works ok except for the documentation item. When I choose the documentation item from the start menu I get a page that has links for "How to install help for Visual Studio" and "Visual Studio 2005 Combined Help Collection". When I click the first link it says to put the install CD in and choose to install product documentation but there is no such option on the install CD. When I ...Show All
SQL Server Default Values not being transfered (repost)
Is this a BUG, Design feature, or somthing hidden in the bowels that I'm missing. Why does SQL 2005 Transfer Task NOT transfer the default values for columns on tables I have a dts package in SQL 2000 that Transfers tables from one db to another and it correctly transfers the default values. I create a Transfer Task package in SQL 2005 (SSIS) and I can not get the default values to transfer from my SQL 2000 tables. Why Please tell me it can b ...Show All
Visual Studio 2008 (Pre-release) How to determine ActualHeight for children of StackPanel?
Hi, I have a class the inherts from System.Windows.Controls.Control named Test. The control does some measurements and drawing based on the ActualWidth and ActualHeight of the control. When the control is initialized in a Window.Loaded handler the ActualWidth and ActualHeight have values that appear to be the content size of the given window when seen during the OnRender() method of the Test class. void Window_Loaded(object sender, Ro ...Show All
SQL Server Can't uninstall Reporting Services
I need to reinstall Reporting Services but during uninstall I face the following error: "The setup failed to read IIsMimeMap table. The error code is -2147024893" Nothing seems to help with the problem. Regards, Ksenia I've got the same problem here unstalling the September CTP Reporting services - please do post if you found a solution, Thanks, Mike ...Show All
Visual Studio Express Editions SQL Server 2005 Express x86 fails to install
I already installed VB and VC# Express editions together with MSDN library but the SQL wont. Do you have a clue on why is this happening I dont have any beta pre-installed. Thanks. Dan Petrescu alias fulga Just to clear some things up... When you installed the express ides did you get errors that sql express did not install or are you trying to install the package seperatly. Remember that the express sys ...Show All
Visual Studio 2008 (Pre-release) s/w installation
Hi All, I being a new to this world of AVALON can some body tell me where should i download this software, and start writing programs and what are the prerequisites for this. # It would be great if you can give me the link. # Installation process/ procedure. thanks in advance subramanian You can start here: http://msdn.microsoft.com/windowsvista/getthebeta/default.aspx ...Show All
SQL Server Diagram to Image
Hello I have created a Database Diagram for the tables I have in the database and set the relationships of the tables with the fields. Now I want to export this diagram to the Image format (jpeg, gif or any other one), so i can add this image in my documentation (ms-word-xp doc) of the project.. I have looked into the options, but i did'nt find any way to export it. So i thought something went wrong while installation, but was made sure that was ...Show All
Windows Forms How do i deploy my application on client computer
Hi! I am a newbie in .net windows application i need to know how do i deploy my windows application on client pc must the client have .net framework installed is there any other solution if i just want to include only the JIT compiler to ...Show All
Microsoft ISV Community Center Forums GroupBox Borders
I have looked on the online help files and community discussions, but haven't seen this question come up... Is there a way to set the border of a Groupox similar to what Panel does Panel will let you set Border Style to 3D Fixed etc. This property does not come up for GroupBoxes. I have seen VB screens that clearly are using GroupBox since it includes a caption on the top border and have a 3D type of border on them. ...Show All
Software Development for Windows Vista Authoring Workflows at runtime
I want to implement a designer at runtime for my clients so they can create their own Workflow. As there is no out-of-the-box control to implement this I suppose I have to work with the workflowview class explained in lab 12. I implemented this functionality but now I'm having some problems: 1) When I try to move activities in the workflow I get an error stating "Component Serialization Service is missing". 2) I've tri ...Show All
