Hattrick's Q&A profile
.NET Development MSXML 6
Is there a merge module available yet for the new MSXML 6 If not, why Thanks If they haven't yet, it is probably not going to be done. I install MSXML6 using my bootstrap program (using the .msi) rather than through the merge module. ...Show All
Visual Studio Team System How to Apply a Threshold rule on a specific page
Hello there, I created a load test for a web application and I am trying to apply threshold rules but on specific pages. All I was able to do is to create a treshold rule on the LoadTest : Page : Avg.PageTime counter. Another thing, I can't visualize the avg.pagetime of a specific time in the loadtest graph.To visualize it, The threshold applied above must bust, and only then we can see the avg page Time of every Page that the test has visited... How can we visualize the Avg.PageTime counters for every page in the web test and how do we apply treshold rules to specific pages. Erik To view a ...Show All
Software Development for Windows Vista FileWatcher Activity - Event Time
Hi, When file watcher detects the creation of a file, at what point in the creation is the event raised. We want to use the filewatcher to trigger a move from the triggering directory to another directory. However, if the file is being copied from another source to the triggereing directory, will the event be raised as soon as the file directory entry is created or will it be raised when the file is completely copied ... this is important particularly if the files are large and take a long time to get completely created. If it is not on completion, what is the best way to test for completion Regards R. ...Show All
Visual Studio Tools for Office Moving text within a document without using the clipboard
Hi, I am trying to move some text within the document, but without using cut/paste. In Word it is possible to move text by selecting it and dragging it with the mouse. The same thing is achievable using the keyboard by pressing F8 to select some text and then pressing F2 to select the place to move the text to. Under the covers Word enters what is called "special mode", and the boolean property Application.SpecialMode can be queried to find out if Word is currently in it. Unfortunately this is a get only property, so it is not possible to make Word go into special mode by setting it to true. I recorded the following macro ...Show All
SQL Server T-SQL UNION QUESTION
why if I use the alias named "derivedtbl_1" he fields show me Undefined data type else without the extern select the fields are showed exactly in pane grid SELECT IDMessaggio, Descrizione, IDLingua, ID FROM (SELECT IDMessaggio, Descrizione, IDLingua, ID FROM ESMessaggi AS t1 WHERE (IDLingua = 1040) AND (NOT EXISTS (SELECT IDMessaggio, Descrizione AS DE1, IDLingua, ID FROM ESMessaggi AS t2 WHERE (IDLingua = @plingua) AND (IDMessaggio = t1.IDMessaggio))) UNION ALL SELECT IDMessaggio, Descr ...Show All
SQL Server Can I use AMO from .net 2003?
I'm working with SQL server 2005 beta 2 from C# 2003 I want to know if I can somehow work with amo I would really appreciate any kind of sugestion AMO (Microsoft.AnalysisServices.dll) is built and works with .net framework 2.0, so you will not be able to use it with Visual Studio 2003 (that uses .net framework 1.1). SQL Setup 2005 install .net framework 2.0, so you can build AMO applications from command line with csc.exe. Or use Visual Studio 2005 Beta 2 ( http://lab.msdn.microsoft.com/vs2005/ ). Adrian. ...Show All
SQL Server Microsoft’s SQL Server Version support
Does anybody no where Microsoft publishes a listing of supported SQL Server versions with final support dates Thanks, Dave Here you go: http://support.microsoft.com/lifecycle/search/ sort=PN&alpha=sql+server&x=8&y=10 Peter ...Show All
Visual Studio Suppress report regions
I am currently evaluating report viewer as a replacement for CR. So far I could reproduce almost everything I could do with CR, *except* for suppressing report regions when specific conditions are met. By suppressing I don't mean hiding, since this sinply leaves a blank region behind, which still occupies the original space. I need to avoid this, the last element before the suppressed region needs to immediately follow the element after the region without a gap. - Are there any ideas on how to achieve this Thanks for your help! Stefan I'm experiencing the same thing. Please keep the thread posted if ...Show All
Visual C# Config file for a windows form app
Hi, I'm working on a windows form application, so far I've only worked on ASP.Net applications. My question is, is there a config file you create similar to the web.config file Cheers Stephen yes it is name.exe.config ... you can add it by adding new item (Application Configuration File) it will be called "App.Config" in your project. ...Show All
Visual Studio unable to load development environment dll
I get this message when trying to run Visual interdev 6.0. I have uninstalled then re-install Visual interdev 6.0 now get this message, i also have Vb 6.0 installed. I have latest sp's on all. Thanks in advance William I got the same problem... although I see this post is OLD, I'd just add in here what I did... Read this: http://support.microsoft.com/kb/248675 Basically its an dll you have to register. Above link tells you how. Cool. Jesus bless you! ...Show All
Visual Studio Soultion Explorer and Microsoft.VisualStudio.Package.Project sources
Hi I have a managed VSPackage that was using the Microsoft.VisualStudio.Package.Project.dll to implement the project hierarchy. I have created an assembly from the source code that was distributed with the October VS SDK and am having trouble with my project not expanding in the Solution explorer. When I look at the DTE object and pull out the project object I can see under the projectItems that all of my source files have been added from the template files OK. When I try to expand the project in the Solution e ...Show All
Visual C# mask
What is a bit mask Also how do you use it Cisco check this url http://en.wikipedia.org/wiki/Bitmask ...Show All
Windows Forms form close reason
Hi! I would like my form to be hidden when the use clicks on the window close button (the X button on the top-right corner). The e.CloseReason does not provide a value to determine that this particular button is the reason that is closing the form. This was very simple in VB6: Private Sub Form_QueryUnload(Cancel As Integer , UnloadMode As Integer ) If UnloadMode = vbFormControlMenu Then Cancel = True End If End Sub How is this possible in .NET Forms Please read this thread: http://forums.microsoft.com/msdn/ShowPost.aspx PostID= ...Show All
Windows Forms ApplicationDeployment.CurrentDeployment.ActivationUri
I am using this API (ApplicationDeployment.CurrentDeployment.ActivationUri) to get the query string passed into my application. It works fine except it does not get refreshed while the application is running. For example: the first URL to start the app is: http://localhost/myapp querystring=mytest . The URI passed to the app will be querystring=mytest. However if I tried to run the application again (while it's running) with different parameters (i.e. http://localhost/myapp querystring=mytest1 ) it does not pass in the new value. I am thinking this is a bug in beta2. Has anyone run into this before ...Show All
Visual Basic Automating Excel - code doesn't execute on 2nd loop iteration
Hello all. I have written code in VB.NET to automate Excel. This portion will copy a range on 1 sheet, find the last cell in a particular column on a 2nd sheet, paste the range and then sort the data so to remove any empty cells. The problem is that the code executes the first time in the loop (index = 0) but not the 2nd time although while stepping through it, it appears that it should work fine. It works for the 3rd iteration on to 15 or above, just not on the 2nd time it loops index = 1). I put break points in the code and all of the values appear to be set correctly and there is no error. What happens is that the code trys to activate ...Show All
