sgktest's Q&A profile
SQL Server SQLDumper
Hi I have been reading KB 917825 about SQLDumper and have the following questions: The article explains that we can automatically produce a dump in a clustered environement and explains how to set it up. It doesn't mention however how to set it up in a standalone environment . However it mentions the trace flags 2540 to 2559, is this what we need to set as they are also not documented Also there are various parameters in Analysis Services for the same thing which are not documented. The reason for asking is because if we have a failure we would have to set this up and then wait for a second failure before we can analysis it. This ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Could not load the Visual C++ component "VCBuild.exe"
I'm unclear on whether this Premier Partner Edition thing is supposed to actually be able to build MC2 or if you need the full version of Visual Studio. If it isn't, let me know. If it is, what am I doing wrong AFAIK, I have installed "Microsoft Windows Installer 3.1", "XML 6.0", ".NET Framework 2.0", "Visual Studio 2005", and "XNA Build CTP" succesfully - I was able to mess around with an XNA project some, a la the tutorial. But if I open MechCommander2.xnaproj and try to build it, I get the error message: Error 1 Could not load the Visual C++ component "VCBuild.exe". To fix thi ...Show All
SQL Server How do I export data in certain table through management studio
Hi there, In SQL Server 2005 How do I export data in certain table through management studio Thanks, Anu This is only possible if you have SQL Server 2005 and not with the SQL Server Management Studio..... I have the same problem and would like to export my tables to the ASPNETDB after installing the latest version of ASP.NET 2.0 with VWD. After upgrade, I cannot login anymore to my site... This is due to SQL Express Stored Procedures that have been changed... and even when changing manually the Stored Procedure, it doesn't work... So... I think I will need to create my table again... Rrrrrrrrrrr..... Anyone a su ...Show All
Software Development for Windows Vista WF version packaged with WinFX Beta 2
I saw that WinFX Beta 2 was released today. From the online documents that are available, it wasn't clear which version of WF is included with the WinFX runtime. Does it contain WF Beta 2.2 If so, is it the same WF Beta 2.2 that has been available as a standalone download Thanks. Bruce Bukovics Author of .NET 2.0 Interoperability Recipes http://www.apress.com/book/bookDisplay.html bID=10116 Workflow Foundation Beta 2.2 is the version contained within WinFX Beta 2 released today. This is the same version of WF that was available in a standalone form. ...Show All
Windows Forms Capturing click event ahead of ActiveX control
I've got a form which has a standard right-click behaviour. In the form I also use an ActiveX control ( the Flash player one from Macromedia) which has it's own menu it likes to pop up if it receives a right-click. Is there any good way to intercept or override the event in question so that my form can have a standard response to a& ...Show All
SQL Server VS 2005 - VB.NET - Connect to mobile SQL database from Desktop PC
I want to physically move my .SDF file to my desktop and then access this file from VS 2005 VB.NET. Ideally, I would want to access this .SDF file from MS Access 2003 but I undersand this is not possible. Here are my VS 2005 VB.NET statements.... Dim ConnPPC As New System.Data.SqlClient.SqlConnection("Data Source = C:\Documents and Settings\G014436\My Documents\SQL Mobile\ActMgr6CE.sdf") Dim mySqlDataAdapter2 As New SqlDataAdapter("select * from T0002_AE_Activity_Entry", ConnPPC) mySqlDataAdapter2.Fill(myDataSet2) On executing the last statement(fill)...I get the following error. function failed: A ...Show All
Windows Forms Adding Fields
As a relative newcomer to the world of .Net I am looking at the TaskVision source. I am keen to understand how to add further fields easily to the project Any ideas or top tips. Many thanks I checked the DatasetTasks.vb anf the field TaskRTF has been added. Any other suggestions thanks ...Show All
SQL Server Export table from SQL 2000 to SQL 2005
Hi, I have just installed SQL 2005 and I started moving my tables from one server (SQL 2000) to the new one (SQL 2005). I noticed when I use the import option (SQL 2005) it does not create indexes, pk, and do not create columns as identity. In this case I decided to script all objects and create them in 2005 what should be fine. After that I use the same import to move data from 2000 to 2005 when it show the data mapping screen if I do not click on edit and check the option "Enable Identity Insert" it will fail for tables where I have identity columns. Is there a fast way to move tables from 2000 to 2005 with data ...Show All
Visual C# GetPixel/SetPixel very very slow...
I'm using C# and the latest release of Visual Studio 2005. I have written a small filter to modify an image that is being loaded by some picture boxes. The filter works great except it takes about 30 to 40 seconds to run. How can I speed this up public void GreyFilter() { Color pixel; int t; for ( int y = 0; y < mainImage.Height; y++) { for ( int x = 0; x < mainImage.Width; x++) { pixel = mainImage.GetPixel(x, y); t = (pixel.R + pixel.G + pixel.B) / 3; mainImage.SetPixel(x, y, Color .FromArgb(t, t, t)); } } MessageBox .Show( "done" ); } Are you familiar wi ...Show All
Visual Studio Team System How to make my ordered test the default test to run?
I created an ordered test and added all my tests in the test view to this ordered test. Now when i click on the "Start Selected Test Project Without Debugger" i want only the ordered test to run since all the other tests have been added to this. Currently, when i click on the above button, my ordered test as well as the all the tests in my project are getting executed. I want only the ordered test to get executed. How do i do this Thanks, Priya Hi Priya, The easiest way is to open the Test View window from Test\Windows\Test View, select the ordered test there and press " ...Show All
Visual Studio Team System Build using the AdditionalReferencePath
Hello All ! I have developped a web site using a Class library which is using the Microsoft Enterprise Library (November CTP) So I have installed the library locally and I have referenced it in my class library (reference to "C:\Program Files\Microsoft Enterprise Library November 2005\bin") The compilation and execution is ok in local Then I have created a new build type to build it on a server, on which I have also installed the Enterprise Library. If I launch my build, it doesn't compile. Normal it cannot find the EL DLLs. So I have updated my build file to add an Additional Reference path : < AdditionalReferencePath Include = " ...Show All
Visual Studio Team System TFS on Domain Controller?
Can TFS Beta 3 be installed in Single-Server Deployment on a server that is also a domain controller The documentation appears to suggest this is OK (in "How to: Install Internet Information Services for Team Foundation Server") but I am having some permissions problems relating to asp.net "temporary asp.net files" folder and wondered if it was to do with the asp.net process account on a domain controller Kind regards, Ian In my case I only had to allow the TFSService and TFSReports accounts to log on locally after the installation. (For details on how to add this security setting: http://www.petri.co.il/logon_loca ...Show All
Visual Studio Visual Studio 2005 for beginners?
Hi! I wonder if someone knows if/where I can find: - An introduction/Presentation/Demo of Visual Studio 2005 for developers that never have used Visual Studio before - A walkthrough about how to create a basic webpart in Visual Studio 2005 Beta 2 I would need this since I, in my master’s project at Microsoft Sweden, am doing a usability study of VS2005. I would be very grateful if someone could help me with this. Hi MollyBos! I'm also a beginner in visual basic programming code. I did some SQL thought. At least as much as was needed in Access to have th ...Show All
SQL Server Incorrect Results with t-sql Query in SQL Server 2005
I'm seeing some change in behavior for a query in SQL Server 2005 (compared to behavior in SQL Server 2000). The query is as follows: ------------ create table #projects (projectid int) insert into #projects select projectid from tblprojects where istemplate = 0 and projecttemplateid = 365 Select distinct tblProjects.ProjectID from tblProjects WITH (NOLOCK) inner join #projects on #projects.projectid = tblprojects.projectid Inner join tblMilestones WITH (NOLOCK) ON tblProjects.ProjectID = tblMilestones.ProjectID   ...Show All
Visual Studio Express Editions Get value from gridview column
How to get value (text) from gridview control in VB. textbox.text = (value in column2 of selected row in gridview) TextBox.Text = DataGridView1.Item(1, DataGridView1.SelectedRows(0).Index).Value BTW, I suggest to don't use "TextBox" as a name for a textbox, this make the programmer confuse... ...Show All
