T. J. Bussler's Q&A profile
Visual Studio Team System Record option is disabled.
Hi , I have added new project and added new test as web test. IE opened. But left side of the page Record, pause, stop button are disabled. I am opening new application and clicking on some links but it is not recording. I have reinstalled VSTS team edition for testers. Even then i am not getting recording enabled in web test. What should I do to enable record option Thanks, Shankar Shankar, It sounds like you're hitting a bug that some other users have reported. A hotfix is currently being tested to correct this issue. Can you try killing all iexplore.exe processes before trying to record Are you ru ...Show All
Windows Forms detecting multiple keys press
I am writing a multiplayer mode for my little c# game. I want two users to be able to control their car simultaneous from the same keyboard. The problem is that when I try to keep more than 2 keys pressed (let's say accelerate and left for both players...totally 4 keys) the computer doesn't recognize them (and in my case it starts beeping from the internal speaker). How can I solve this problem If you keep down only two keys everything it's ok... To make it work I used the keydown and keyup events of the form and an array of bool[] to store if a certain key is kept pressed. If you have any idea how to solve it.. please reply. I ...Show All
Windows Forms OOP in vb.NET and Oracle
We need for a project to work with oracle and classes. The problem is how to put information from the oracle database into objects of the classes and how to write information from textboxes into objects of the classes and then write these objects in the database Does anyone have some example program of working with objects and databases I have been&n ...Show All
.NET Development System requirements for VS 2005
Does anyone know what the runtime requirements are for solutions developed in VS 2005 Thanks, Eyvind. Never mind, I found it: http://www.microsoft.com/downloads/details.aspx FamilyId=7ABD8C8F-287E-4C7E-9A4A-A4ECFF40FC8E&displaylang=en " Supported Operating Systems: Windows 2000, Windows 98, Windows 98 Second Edition, Windows ME, Windows Server 2003, Windows XP" Yay! Eyvind. ...Show All
Visual Studio Team System stop build type on failure
If I am using MSBuild and the Team build type in a Desktop Build scenario, can I somehow tell it to stop building as soon as a project or solution fails to build Thank --MikeH Hmm - I haven't tried this myself, but I have a hunch that might work. You can use an Exec task that uses the command line to stop the current build and insert this in the AfterOnBuildBreak target in your tfsbuild.proj file. Of course, you would have to use the build number properties and make sure TFSBuild.exe is in path etc Let me know if you need more info. ...Show All
SQL Server Calc Measure Immediate Viewing
This is probably obvious, but.... In MSAS 2000, I could immediately view the new calc measure in Analysis Manager without rebuilding the cube. Is this still possible in SSAS 2005 Can you list the steps Yes you can using the new MDX debugger. When in BIDS, in the caluclaiton tab, create your calculated member and then select the Debug menu and start debuggging. The cube browser will appear just beneath the calculaiton script. You can not only step by step through your various caluclaiton, but you can also change them and see the impact immediately. It is a full fledge VS debugger for MDX... ...Show All
Visual Studio Team System Issues with Windows Sharepoint Services while Installing TFS
Hello All, I am installing TFS. while installing TFS we are geting following errors " Error 32000.The Commandline '"C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\60\Bin\Stsadm.exe" ...' returned non-zero value: -1. " and then doing everything what MS says we get this error. " Error 32000.The Commandline '"C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\60\Bin\Stsadm.exe" ...' returned non-zero value: -2130246864 " Can somebody please tell me what is this. I am so excited about using TFS as my Development environment. And we are not able to s ...Show All
Game Technologies: DirectX, XNA, XACT, etc. why cann't the 2D polygon be drawed correctly?
i try to draw a polygon which have 6 points .But no matter I draw it,It always cann't be draw correctly. My main code is below: public void OnCreateVertexBuffer(object sender, EventArgs e) { VertexBuffer vb = (VertexBuffer)sender; GraphicsStream stm = vb.Lock(0, 0, 0); CustomVertex.TransformedColored[] verts = new CustomVertex.TransformedColored ; verts[0].X=150;verts[0].Y=50;verts[0].Z=0.5f; verts[0].Rhw=1; verts[0].Color = System.Drawing.Color.Aqua.ToArgb(); verts[1].X=180;verts[1].Y=90;verts[1].Z=0.5f; verts[1].Rhw=1; verts[1].Color = System.Drawing.Color.Brown.ToArgb(); verts[2].X=350;verts[2].Y=150;verts[2].Z=0.5f; ve ...Show All
Visual Studio Tools for Office Proxy Remote Object?
Dears, I have a class file containing the following code: Excel.Worksheet wsActive = (Excel.Worksheet)Globals.ThisWorkbook.ActiveSheet; ((Excel.Range)wsActive.Cells[1, 1]).Value2 = "Test"; I can retrieve the ActiveSheet object successfully (because I can get the ActiveCell location from the ActiveSheet object), however, I can't assign a value to the worksheet. ERROR : ((Excel.Range)wsActive.Cells[1, 1]) Cannot obtain fields or call methods on the instance of type 'Microsoft.Office.Interop.Excel._Worksheet' because it is a proxy to a remote object. Microsoft.Office.Interop.Excel.Range Is there anything missed Thanks, ...Show All
Windows Forms How to: Webbrowser NewWindow and Navigating equivalent to axWebbrowser
At first, I enjoyed the new webbrowser control but then I noticed that the args provided by the events NewWindow3 and BeforeNavigate of the axWebBrowser had not been implemented in the new control. Arg. Good news, the guys from Microsoft gave us the a workaround recently in C# and said they will publish a sample soon on MSDN. In the mean time, here is some VB.net code inspired from Microsoft's C# that will give you 2 new events and the args people like me were crying for. NavigatingExtended gives you the following args: - Url as string - Frame as string - Headers as string - Postdata as string - PostdataByte () as byte - Ca ...Show All
Visual C# Enum at Runtime
I have an enum as constructor in one class library. I would like to give the user facility to add enum members at runtime. How can I add enum members at runtime. Please reply as soon as possible. Thanks in advance I saw the below code somewhere: Can anything be done with this code AppDomain domain = Thread .GetDomain(); AssemblyName name = new AssemblyName (); name.Name = " Enum Assembly"; AssemblyBuilder asmBuilder = domain.DefineDynamicAssembly( name, AssemblyBuilderAccess .Run); ModuleBuilder modBuilder = asmBuilder.DefineDynamicModule(" Enum Module"); Enum Builder enum Builder = modBuilder.Defi ...Show All
Software Development for Windows Vista Problem with HandleExternalEvent on a web service.
Hi. I'm trying to make a workflow that has a Listen and a HandleExternalEvent activity to work through a web service, but I'm not being able of doing it... I can make it work fine on a Win32 app, but when I move it to the web service, I'm getting a problem. What I'm trying to do with this Since it is not posible suspending a workflow, and passing parameters to it when resumed, I thought I could use the EventArgument parameter on the HandleExternalEvent_Invoked activity to pass my custom data to the workflow when resuming it. Perhaps there's a different way, but here's my code (The problem is at the end of this post, when I invoke the event ...Show All
Visual Studio Team System [RC Upgrade] Unexpected Error: Deserialization failed: The 'EditionID' element...
Hi, I got the following error when running "TFSUpgrade.exe imisfnd1srv /verify": Verifying connection to OLAP Server UPGRADE FAILED Unexpected Error: Deserialization failed: The 'EditionID' element in the 'http://schemas.microsoft.com/analysisservices/2003/engine' namespace is unexpected. Any ideas Thanks, Eli. I ran the tool locally from the Team Foundation Server and it worked... :-) ...Show All
Visual C++ LNK2005 error with ATL function pointer defined twice in project
Hello, I'm getting the following error on my computer with the latest VS 2005 Team Suite installed (8.0.50727.42): Error 1 error LNK2005: "unsigned int (__stdcall* ATL::g_pfnGetThreadACP)(void)" ( g_pfnGetThreadACP@ATL@@3P6GIXZA ) already defined in workflowud.lib(XMLExtendedContext.obj) atlsd.lib This is a C++ DLL which compiles and links fine on another computer. When I copy the library files over from out build computer (i.e.workflowUD.lib) to mine, I get the above error. Any ideas on how to proceed Thank you, Greg You can use the link switch /verbose to get more info on where the ...Show All
Visual C++ error C2220: warning treated as error
Hi, I am moving an application from VS2003 to VS 2005 and I got the following error: error C2220: warning treated as error - no 'object' file generated C:\Program Files\Microsoft Visual Studio 8\VC\atlmfc\include\atlfile.h Any ideas on how to correct this Thanks in advance, I just had this issue with <atlsecurity.h> After a lot of swearing and tearing projects to pieces, we discovered if you just include <atlbase.h> on the line before, the problem goes away. ...Show All
