quicksilverm26's Q&A profile
SQL Server Can't backup SQL Server 2005 Express DB using SQL Server Management Studio Express
Hoping that someone can help me with this... I get the following error when I try to backup my database (I've copied the text of the error dialog that appears): TITLE: Microsoft SQL Server Management Studio Express ------------------------------ Backup failed for Server 'ACCOUNTING\SQLEXPRESS'. (Microsoft.SqlServer.Express.Smo) For help, click: http://go.microsoft.com/fwlink ProdName=Microsoft+SQL+Server&ProdVer=9.00.1399.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Backup+Server&LinkId=20476 ------------------------------ ADDITIONAL INFORMA ...Show All
Visual Studio Team System eXtreme Programming Process Template
Hi, Just wondering if anybody knows of an eXtreme Programming Process Template for Beta3 XP is being introduced across all projects in my organisation and concepts such as Iterations which have Stories which have Tasks doesn't match with the MSF Agile process (from what I can see there are 3 fixed iterations with no way of creating new iterations and setting stories under them and so on). Does anybody know of an XP process template for beta 3 Brian We've run XP based projects under MSF Agile for about 6 months now. Just about got the hand of calling Storys "Scenarios" ( ...Show All
Visual Studio 2008 (Pre-release) XAML SplitView tool
For some reason I can't find XAMLPad after installing NetFX Beta 2. I've been looking for SplitView online and can't find it. Can someone please point me in the right direction Thanks, -Alex Start Menu => All Programs => Microsoft Windows SDK => Tools => XAMLPad Or C:\Program Files\Microsoft SDKs\Windows\v1.0\Bin and search for XAMLPad :) HTH ...Show All
.NET Development Problem in 'System.Management' NameSpace....
I m havin code example of VB.NET..which is using System.Management Namespace.... but when i try to use this NameSpace(System.Management), it doesnt allow me to Use...and give error. 'System.Management' Namespace is available in Object Browser....but it is not available in my Form1.cs...HELP!!! ( i m using VS 2005).... you have to do two things: 1. reference system.management.dll 2. put using System.Management on top of you code the you will be able to use its member classes see this example using System; using System.Management; public class Sample { public static void Mai ...Show All
Visual C++ msvcr80.dll Problem
Hi there, can someone possibly tell me why Noton WinDoctor is telling me that 10 executables in the .NET Framework 2.0 cannot access the necessary dll file msvcr80.dll I see that the dll exists in the WinSxS directory and I'm running XP pro. I didn't have this problem until I downloaded the 2.0 framework at windows update. Any advice appreciated. Thanks. Naolin Thank you for sharing the solution to this msvcr80.dll problem. I had the exact same problem as everyone else and when I followed your instructions, my Norton Win Doctor found no more probems, and my machine is back to normal. You have really ...Show All
Visual C# Windows Forms application works fine on XP; falls over on Windows 2000
We have a C# Windows Forms application using the December 2005 CAB that I can't get to run on some of our customers Windows 2000 machines. The error is 'Exception has been thrown by the target of an invocation' falling over at the System.RutimeTypeHandle.CreateInstance method call. On the xp machines when we are running the Client we only install the Dot Net framework 2.0 and the client runs with no problems. Any ideas where we should start looking Due to security issues, its impossible for us to debug the Client on the customers mahines. We are using stongly named assemblies Thanks We ...Show All
Visual FoxPro Cursors, Views, and Grids
Using VFP8... I have a simple form with a grid. I want to use a cursor object to use as the record source for the grid so I can let the user change which column to sort on. I Select and order the data and create the cursor (csrTemp) in the form.init, the view that is used in the Select is in the Data Environment. I'm not sure how to reference the cursor in the data source for the grid, when I run the form it seems like the order is from the original view, even though if I browse the cursor (from the init) the cursor is populated and ordered as I requested. These are my settings: grid.recordsource = csrTemp grid.recordsource ...Show All
Visual C# enumeration was modified operation may not execute
Hi all; i am using the following fuction to close some open forms with tag "NOTMAIN" in my application. private void CloseOldForms() { FormCollection frmColl = Application .OpenForms; foreach ( Form tempFrm in frmCOll) { string tempFrmTxt = tempFrm.Tag.ToString(); if (tempFrmTxt.Equals( "NOTMAIN" )) { tempFrm.Close(); } } } But the application stops after executing foreach loop for only one time, with an exception i.e enumeration was modified operation may not execute i.e FormCollection enumeration was modified.can someone plz tell how to handle it or ...Show All
Visual J# Does Vj# allows to get Parent Window of an Iframe
Hi all we are now porting the webappplication codes from vj++ to vJ#. In that we are accessing a parent iframe window from its child window ,which was working in vj++.But the same code now ported to vj# seems to be not working.Whether any other things need to work or not.so please provide some ideas to get its parent or its topwindow. the sample code DhWindow botomWindow= this .getWindow().getParent().getParent(); DhWindow leftwinindow = botomWindow.getFrame("dleftframe"); DhDocument cachefram=leftwindow.getFrame("cachecolorframe").getDocument(); here i am geeting an iframe window called bottomwindow from the ...Show All
Software Development for Windows Vista Visual Studio 2005 Extension in German Studio?
Microsoft Visual Studio 2005 Team Edition for Software Developers - DEU with installed Extensions (3.0.3203.56) will show the Workflow logo on the Splash screen. But the workflow project types and workflow classes are missing in the corresponding wizards. Is there any chance to get these versions work together I take it that you have English Workflow Services installed. Presently English on a German Visual Studio is not working as a result of a bug and will be fixed in RTM. However if you install German Workflow Services on German VS it will work. Workflow Services in German will be available in Be ...Show All
Windows Forms DataGridView events master detail
I have 3 nested DataGridViews (Parent, child, grandchild). Which event in the grandchild(most detailed) DataGridView should be used to capture when it's data has changed Since it's bound to the child, which is bound to the Parent, it's data changes when either of these other two grid's change. I've tried the grandchild's DataBindingComplete and SelectionChanged events but these sometimes fire more than once when clicking (making selections) in the other two grids. I can't seem to find any event in the grandchild grid that fires just once. VS 2005 Thank you. What type of da ...Show All
SQL Server AcquireConnection returns null
Hi, we are facing some issue to get the underlying OledbConnection from the runtime ConnectionManager. below is the code sample that we are using IDtsConnectionService conService = (IDtsConnectionService)this.serviceProvider.GetService(typeof(IDtsConnectionService)); if (conService == null) return; ArrayList conCollection = conService.GetConnectionsOfType("OLEDB"); for (int count = 0; count < conCollection.Count; count++) { string conName = ((ConnectionManager)conCollection[count]).Name; if (conName == conMgrname) { conMgr = DtsConvert.ToConnectionManager90((ConnectionManager)conCollection[ ...Show All
SQL Server connection problem
Hi I want to connect a VB6 application to a sql express 2005 database. My database is on a server with windows 2003 server and my application is running on a windows XP machine. I try to use ado and almost all connection string i saw on internet, the best i got is the error: connection failed SQLState '01000' SQL Server error: 53 SQL Server does not exist or access denied. even if i use the same server name and authentification as in the microsoft sql server management studio express. This is my code: Dim cn As ADODB.Connection Set cn = New ADODB.Connection cn.Properties("Prompt") = adPromptAlways cn ...Show All
Visual Basic Read a Tab delimited Text file through VB 6
Hi all, I need to read a tab delimited text file. It contains 7-10 columns separated by tab and few 100 lines. how can i read it through vb6. after reading i like to have the column wise data seperatly. Thanks. Sam Alex These forums are for VB.NET and there are better places to find answers for older versions of VB. Maybe the VB6 newgroups - http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.vb.general.discussion&lang=en&cr=US Or perhaps the VB6 resource center http://msdn.microsoft.com/vbrun/ or perhaps www.vbcity.com may be useful places to searc ...Show All
SQL Server SQL 2005 specifications and performance documentation
Does anyone know the links to doucments showing the SQL 2005 specifications and performance data for the various versions of SQL 2005 including SQL Express Not sure if you mean the system requirements If so, that's here: http://www.microsoft.com/sql/prodinfo/sysreqs/default.mspx If you mean data on different benchmarks for performance, scalability, etc., if so, just head to the SQL Server home page and browse the variety of white papers, case studies, etc. listed there. HTH ...Show All
