sm1908's Q&A profile
Visual Studio Team System Error 32000 in Single Server installation
I have been trying to install the Team Foundation Server as a single server for about 3 days now. I have taken an old laptop and configured as the following: *Windows 2003 Server OS SP 1 and all other necessary Windows Updates *IIS *SQL Server 2005 *Visual Studio 2005 *SharePoint SP 1 When I tried to install TFS I got the infamouse 32000 error and I began searching this ...Show All
Visual Studio Team System Next Visual Studio (presumably VS2007, Orcas)
I'm just curious about the estimated release of the next version of Visual Studio. Is it going to coincide with the release of Windows Vista, or be before or after We will ship the next version of Visual Studio at some point after Windows Vista. At this stage we can not be more specific than that. ...Show All
SQL Server test - ignore
test ...Show All
Visual Basic Correct VB Code
I am using using the VB project available at: http://www.developerfusion.co.uk/show/1910/1/redir/ I downloaded the Visual Studio File and run the file from Visual Studio.NET 2003 (it upgrades automatically). After that I built the solution, type text in the text box and press the button- I don't hear the voice reading the text. The other buttons just start an application; it suppose to speak what application is being launched. Wh ...Show All
Visual Studio Exceptions in asynchronous delegates
I purposefully throw an exception from within my asynchronous delegate under specific circumstances. When running under .NET 1.1 and VS .NET 2003, I can easily process these exceptions by calling EndInvoke. Now, while debugging under .NET 2.0 and VS .NET 2005, the debugger, annoyingly warns me that the exception was not handled in user code even though the exception was handled on the calling thread. Microsoft Visual Studio An ex ...Show All
Visual Studio OutDir parameter used only on C# projects, not C++ projects
I'm running msbuild, with the OutDir command line parameter specified, on a solution that contains C# projects and C++ projects. Output files are being copied to the OutDir for the C# projects as I'd expect, but not for the C++ projects. What gives -- is there another property that needs to be set for vcbuild projects Thanks Setting outdir will only work for projects actually in the MSBuild format. C++ proje ...Show All
Visual Basic VB6 build/version number change...
Visual Basic 6 inexplicably omits one of the fields in your application's version number resource. The version number standard is as follows: Major.Minor.Revision.Build What VB normally gives you is this: Major.Minor.0.Build In other words, the Revision field is always set to 0. To confuse matters further, what VB calls the Revision field is actually the Build field. Is there any way to change this behavior Not in the IDE but command-line ...Show All
Windows Forms Datagrid and Errorhandling - best practice ?
Hi: I have a form with one datagrid and few textboxes - all bound to a dataview, modify and add operations allowed. My question is - what is the best way to do error handling. Some common validating tasks are : unique value fields, required fields&n ...Show All
Visual Basic Add New Data Source in VS 2005 Express Editition does not work
1. On the right column of the development screen I select the tab DATA SOURCE. 2. Click on the link in window above that says ADD NEW DATA SOURCE. 3. Click on the data source type WEB SERVICES and then click on the NEXT button. 4. In the URL field I type in the URL and then I click on the GO button. 5. WEB DISCOVERY SERVICE dialog and I click on the YES button. 6. I enter the URL, USER NAME, PASSWORD, DOMAIN ...Show All
Visual Studio 2008 (Pre-release) Create And Host Custom Designers With
Is there a sample for WPF like this one http://msdn.microsoft.com/msdnmag/issues/06/03/DesignerHosting/default.aspx I want to make a custom designer for the WPF. One of our goals for the WPF Designer in Visual Studio (Cider) is to enable similar scenarios. However the functionality is not available today. You could look at Mobiform's designer which I believe supports hosting their designer as a control ...Show All
Windows Forms BUG: XPanderComparer in XPanderList
Hi! In XPanderList.vb, you can read: Private m_XPanderComparer As XPanderComparer Private m_ControlList As New SortedList(m_XPanderComparer) In those 2 lines you declare an XPanderComparer (m_XPanderComparer ), and then you asign it to the SortedList "ControlLi ...Show All
SQL Server How To: Automatically run a script post-install as part of setup
I need to provide a media kit to other DBAs in my organization so that when they run the setup.exe it will automatically apply some "hardening" scripts that my team has written. We want it to be a seemless part of the installation process so that the scripts can be applied consistently across the organization. Is there anyway to do this There is no way to provide a script to setup.exe as you suggest. We are looking at provi ...Show All
Windows Forms converting image in a clipboard to memory stream
suppose i have copied an image to clipboard and then pasted it onto a picturebox. using: IDataObject iDataObj=Clipboard.GetDataObject(); //determine the format of data if (iDataObj.GetDataPresent(DataFormats.Bitmap)) { pictureBox1.Image=(Image)iDataObj.GetData(DataFormats.Bitmap); } in order to save this image to database. i would then have to convert the contnts of the clipboard to a memory stream object and then serialize to byte[] ...Show All
SQL Server Trigger on System View
Hi, Is there a way to create a Trigger on the Systemview [sys] . [dm_exec_connections] The Statement below Fails. CREATE TRIGGER [dbo] . [TG_CLEAN_LOCK_ID] ON [sys] . [dm_exec_connections] AFTER DELETE AS I need a trigger to be fired when a Connection ([sys] . [dm_exec_connections] .[connection_id] ) drops. Is it principally impossible to create a trigger on a system view or is it just a lack on permissions ...Show All
Visual Basic Display KB or MB depending on size..
I want to be also to show the size of an image from an OpenFileDialog component, which I am able to do, but I need to show the size in MB or KB depending of it's size. I am unsure of the conversion rates, but i think the conversion from bytes to Kilobytes is bytes / 1024. Here is my code: Dim oFile = My .Computer.FileSystem.GetFileInfo(OpenFileDialog1.FileName) Dim SizeKb = oFile.Length \ 1024 textbox1.text = SizeKB ...Show All
