thee's Q&A profile
Visual Studio Team System Load Test Display
Is it possible to display where each user is during a load test My goal is to have code webtest that is similar to the following: display (User Login) <http requests> display (User Logged in As UserABC) <http requests> Then while running the load test I have created for the webtest. I would be able to see where each user was in the code with the display statements in a list. For example, User1 User Login User2 User Logged in As Us ...Show All
Windows Forms I've beaten my head against the wall for 7 hours on this Icon problem..HELP?
Alright, here's the deal..I have 32bit alpha blended XP icons that i'm using in a control... I'm using a manifest for comctl v6, which I read was the solution..but I cannot make Images that come from an ImageList to work with transparency..i know&nb ...Show All
Windows Forms Limit number of lines in a TextBox
Is there a simple way to limit the number of lines in a multi-line textbox that wraps I want to be able to look for soft returns as well as hard returns. You know what I really miss I could swear that somewhere alo ...Show All
SQL Server Variables in CONTAINSTABLE. IS IT POSSIBLE? NO ERRORS AND NO RESULTS.
I know the use of variables is allowed with CONTAINS but I can't seem to get return results with CONTAINSTABLE My test Code: DECLARE @textstring varchar(4000) DECLARE @firstword varchar(80) DECLARE @secondword varchar(80) SELECT @textstring = ltrim(rtrim('SAP America Inc') select @firstword = dbo.GETWORDNUM(@textstring, 1, ' ,.:') --Returns the first word with no spaces, commas or colons select @secondword = dbo.GETW ...Show All
Visual Studio Trusted Assembly referenace Problem
So, i have this web project tempalte, that has an extension which will hopefully run and execute some code. however, when i go to create the new site, select my template, i get the error... Error: This template attempted to load an untrusted component 'xxxxxxx, version=xxxxx, cutlrue=netirau, plublickeytoekectn=xxx.........' The assembly xxxxxx is signed and in the GAC, so I am not sure what else to do... Bacially, in that assembly i ...Show All
Visual Studio DSL using languages
Some of the scripting languages use what is called 'MOP'. An object can implement special methods and if a non-existent method is called on the object it is routed to this special method. They call it meta-programming and a DSL can be written for a particular domain using languages like this. What is the difference between what the VS tools are trying to achieve and these language based D ...Show All
Windows Forms copy file from CD
i'm want to copy file from CD to HDD and my code works fine 1st time but when i try to copy the same file 2nd time it doesn't work because the file is "read only" so how can i fix it my code Try &nb ...Show All
Visual C# Why ??
Why the list of code snippets in Vb.net is larger than C# I mean when used insert snippet ...Show All
Visual Studio Team System Performance Counter for Total Execution Time
Hi, I am trying to send a request to a webservice on a remote machine and calculate the total time it takes for the execution of the request. I am creating a webtest and a load test and adding required performance counters.Unfortunately, I am not able to figure out a performance counter to calculate the total execution time of the request on the remote machine. Can you please suggest if there is any performance counter availa ...Show All
.NET Development XmlDataDocument and EncryptedXml Problem
Hi there Gurus! Well, this is a new thing happening, and I believe it has not happened to anyone before because I did not find anything related to this problem on the web: I have this simple code. Dim Doc as XMLDataDocument Doc = New Xml.XmlDataDocument(Ds) Doc.PreserveWhitespace = True Doc.Load("file.xml") 'This file IS ALREADY ENCRYPTED Dim exml As New EncryptedXml(Doc) exml.AddKeyNameMapping( "some key" ...Show All
.NET Development Difference between Sockets and TCPlisterner-TCPClient
Hi, I'm new to sockets and I can't understand the difeerence on creating sockets using : New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp) or using the TCPListener and TCPClient classes. Any help will be appreciated.. Thanks. Ubercoder The Socket class is not protocol specific and provides an abstraction for network communication. This way you can write code using a ...Show All
Visual C# how to insert a new line programmatically in a richtextbox control?
in my form load event i want to set \n newline rtb.Rtf = string1 + \n + string2 + \n + string3 the output should look like this: string1 string2 string3 string string1 = "Line 1" ; string string2 = "Line 2" ; richTextBox1.Text = string1 + System. Environment .NewLine + string2; ...Show All
.NET Development New {MS Exchange 2003} mail notification using C#?
We’ve just set up an exchange server in a test environment and I want to get to grips with programming for exchange using C#. The first thing I’d like to do is create some sort of mail notification program (similar to the million POP notification apps) that sits in the system tray and alerts users when they have mail to collect. Is it easy to create something in C# that will check an exchange server for mail Anyone car ...Show All
Visual C++ project setup , using installsheild
I developed an mfc-dialog-based application. i need to setup the project. During setup, installsheid is asking the dll's . How can i know which dll's are needed to my developed project Please help. Use the program DEPENDS in the tools that is shipped with VS. It shows all DLLs that are used. But beware not all DLLs are allowed and needed to be redistributed. ...Show All
.NET Development Communicate across application instances
I need to send a signal from one instance of my application to another instance. What would be the best method to do this In Win32 I would just use a named event to do this, but they aren't available in .NET Depending on what you are doing, you may be able to use System.Threading.Mutex (v1.1) or System.Threading.Semaphore (v2.0). Worst case, you could write a little NamedEventType or something that extended W ...Show All
