mario l gutierrez's Q&A profile
Visual Studio Express Editions How to make radio buttons in a groupbox unchecked when form loads?
The excercise is a small app containing 3 group boxes (2 contain radio buttons, 1 contains check boxes) When the app starts the first group box containing Male & Female radio buttons receives focus,but for some strange reason always checks the Male radio button by default. I am trying to get both radio buttons in this group box unchecked so that the user decides without a default option being used. Any help gratefully received Regards Gaz gazleaver@hotmail.co.uk Public Class Form1 Private Sub radMale_CheckedChanged( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles radMale.Ch ...Show All
Visual Basic Replacing MSFlexGrid in Visual Studio 2005
Hey, can anybody help me with replacing FlexGrid in VS2005, since it appears they are no longer using that. I've looked on the internet all day today, but haven't found anything. I've used FledGrid for my VB6 programs, and I know it will do exactly what I want it to, but this time, I'm using VB2005 for other reasons. In my project, I'm not using any databases or db connections. Basically, a simple socket program that will display data I get from a socket in a grid format. So far, everything I've seen says to use the new DataGridView, but it appears you have to connect to a data source to use that, which I don't have. any idea ...Show All
SQL Server about DTS
Where can i find DTS for my SQL server express edition Please email me at chi2king@yahoo.com Thanks. Hi there, The functionality you are looking for is not a part of SQL Server Express Edition. You need to use one of the other SQL Server 2005 flavours (e.g. Enterpise, Developer Edition) in order to use SQL Server Integration Services (the successor to DTS in SQL Server 2005). Also, no offense or unfriendliness meant, but it might be a good idea to refrain from requesting that people email you with answers. It's better for answers to be posted on these forums as others might be in your situation a ...Show All
SQL Server Uninstall SQL 2005 Beta CTP
Anyone come up with a cleanup of the CTP that keeps the RTM version from installing when even after the vs_uninst_betas.exe is run and doesn't remove it all. The SQL 2005 RTM won't install if it still detects any of the CTP left. Jeff, I have the DVDs for VS2005 Pro & VSTS, Beta 2 (July 2005 CTP) and I cannot find the file sqlbuw.exe that you mentioned. Where does it live Thanks. ...Show All
Visual C++ Cannot run C++ program that was compiled with Beta 2 (Side by Side problem)
Hi! I am trying to rerun using Beta 2 a program that ran fine under Beta 1. After building the whole thing on Beta 2, I get the following error (extracted from the Event log) when trying to run it: Generate Activation Context failed for c:\Documents and Settings\Yuval\My Documents\Visual Studio Projects\Home\cpp\HomeTouch\Debug\HomeTouchWin32.exe.Manifest and Resolve Partial Assembly failed for x86.Microsoft.VC80.DebugCRT. Reference error message: The referenced assembly is not installed on your system. The manifast look like: < xml version = " 1.0 " encoding = " UTF-8 " standalone = " yes " > < assembly ...Show All
Visual Studio Team System Event Viewer error 3000 (TFS Warehouse)
We see to get two of these error events logged every hour on the hour. Is there something here we need to fix Event Type: Error Event Source: TFS Warehouse Event Category: None Event ID: 3000 Date: 12/13/2005 Time: 9:15:48 AM User: N/A Computer: MYVSTSSERVER Description: An unexpected condition has occurred in a Team Foundation component. The information contained here should be made available to your site administrative staff. Technical Information (for the administrative staff): Date (UTC): 12/13/2005 5:15:48 PM Machine: MYVSTSSERVER Application Domain: /LM/W3SVC/3/Root/Wareh ...Show All
Visual J# axWebBrowser
I have this problem in vusal j#, C:\Work\Form1.jsl(92): Cannot find method 'Navigate(String)' in 'AxSHDocVw.AxWebBrowser' I have no clue how to fix this, the program works on my friends comp but not mine, I'm running win xp sp2 with zone alarm security suite installed. Please reply -- Thanks I have been trying to do exactly the same thing, however, what you have suggested there, does not work for me. Anything I could do ...Show All
SQL Server TSQL for permissions script ?
Hi There I know i can script permissions for a table via enterprise manager but i need to do this for hundreds of tables, is there a TSQL command to generate permissions script file for a table then i can do this via a dynamic script Thanx You can do this in a couple of ways. One, create a .NET application in C# or VB.NEt using SMO. Or you can use TSQL. To display all the tables in a SQL Server database, execute a SELECT * FROM sysobjects WHERE xtype='U'. Then you can do your iteration to do a GRANT, DENY, REVOKE on the user tables generated from the list. ...Show All
Visual Studio Team System Problems deleting Queries from Currituck.xml
I'm trying to produce a minimal MethodologyTemplate - see my other posts. I have successful removed most of the initial tasks, work item type 'Qos', work item type 'risk' and work item type 'Scenario'. I have also added the new work item type 'Story' and added a corresponding query 'All Stories'. All this seems to work fine. However there are the following issues 1. Although the Team | Add work item menu correctly shows Bug, Story, Task the 'Value' drop down menu in the query viewer (select a project query, right-click | View Query) still contains Risk, QoS and Scenario as well as Bug, Story, Task. 2. If I remove the 'Al ...Show All
Visual Studio Team System Custom project template error
We have tried TFS for a while and really like it. We however felt the need to customize the project template. I started a copy of the MSF for Agile Software Development template downloaded from TFS. But everytime I try to upload a custom copy back it results in the same error. So I decided to minimize the change to just the title. Everything else remains as in the downloaded template. When I upload it back to the same TFS server, I again get the very same error. Here's the part of the error log. It seems to indicate something about Sharepoint. Can anyone make sense of it 2006-03-06 13:50:43Z | Module: Engine | Thread: 13 | Running Task &q ...Show All
Windows Forms Custom Updates Problem
I am using ClickOnce, but the application checks for updates by it self, using manual update check. The problem is that if the user doesn't update the application; the next time, when the application starts, it starts like be configure to check for updates before start, so the user get a message from ClickOnce that tells to him that a new version is avaible. How can I avoid this behavior and configure the application to never checks for new updates automatic. Jaime, thanks for the reply. My biggest concern was that it would permanently change my custom settings, but it doesnt. I dont have a problem with this ...Show All
Visual FoxPro UML Design Tool
Is there a UML design tool I can use that will generate (and ideally reverse engineer) VFP code I want to do use cases, object models and maybe object sequence diagrams. I am currently using Visual Modeler that came with Visual Studio 6 but it has limited VFP support and only supports object models. It's not exactly clear on their website whether or not it still does VFP. The online ordering doesn't seem to say it does. I have sent them an email. See what I get back..... ...Show All
Visual C# problem registering windows service
hi, i'm using vs 2005 to develop a windows service, but i have a problem in the registration routine. the program install and uninstall by command line without problems, but i would like to add a command line parameter in the service registration. I'm using the TransactedClass installer to register it and a Installer class to register the assembly but i have problems in the definition of the parameter: 1. if I add the parameter in the assemblyPath parameter, all the row is enclosed in " ( "D:\Sorgenti\Web Specials 2\WsService\bin\Debug\WsService.exe -svc" ), and the command line parser handle all as a single command and ...Show All
Visual C++ simle form in c++
CODE bool InitWindowApp(HINSTANCE instanceHandle, int Show); int Run(); LRESULT CALLBACK WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR pCmdLine, int nShowCmd) { if(!InitWindowApp(hInstance, nShowCmd)) { ::MessageBox(0, "Failed to create Window!", "Fail", MB_OK); return 0; } } bool InitWindowApp(HINSTANCE instanceHandle, int Show) { WNDCLASS wc; wc.style = CS_HREDRAW | CS_VREDRAW; wc.lpfnWndProc = WndProc; wc.cbClsExtra = 0; wc.cbWndExtra = 0; wc.hInstance = instanceHandle; wc.hIcon = ::LoadIcon(0, IDI_APPLICATION); wc ...Show All
Visual Studio Express Editions Visual C# Express Beta 2 and MYSQL?
Is it possible to use MySQL as a database for C# express Thank you - that was the answer I was looking for. Do you have a sample of this code handy somewhere ...Show All
