Medezark's Q&A profile
Visual Studio local MSDN with VS2005
Hello After reading posts about MSDN and trying suggested solutions I cave still problems to install it. I had VS2003 witj MSDN October installed on my XP SP2 PC. Then I've installed VS2005 from CDs version and MSDN October from DVD as a result no help was available on 2005. I've tried repair, then reinstall, then uninstall VS2005 and MSDN and re-install again. Nothing Then I've removed everhithing: VS2003, 2005, MSDN, MSSQL (all) Document Reade ...Show All
Windows Forms Associating a File Type To An Application
I have a .net application which is associated to a file extension. When I double click on a file that is associated to my application, my application is supposed to launch, then I check the command line arguments and open the file which&n ...Show All
Visual Basic New Project dialog is empty - No templates whatsoever!
Look at this screenshot: http://dondata.homepage.dk/Empty.gif I have allready tried to Repair the installation, and allso completely uninstalled VB and the installed it again, but the dialog is still empty. What is happening and more important; how to get my default templates back Maby I can copy them from CD or something Perhaps Visual Studios is looking in the wrong place for the templates Check b ...Show All
.NET Development XML Schema Help with FIX 4.4
I am attempting to import the Fixml 4.4 schemas into Visual Studio .net 2003 as available on http://www.fixprotocol.org . I can create datasets for fixml-datatypes-4-4.xsd, fixml-fields-base-4-4.xsd and fixml-fields-impl-4-4.xsd. However, when I attempt to convert fixml-components-base-4-4.xsd to a dataset, I receive the following error: c:\inetpub\wwwroot\FIXml\Schema\fixml-components-base-4-4.xsd(1): Custom tool error: Unable to convert inp ...Show All
Visual C# Executing Exe
Ok i added a exe file to my solutions explorer and i wanted to know what code i needed to execute the exe in my form 1 It should be as simple as: System.Diagnostics. Process process = new System.Diagnostics. Process (); process.StartInfo.FileName = "Full Path to EXE"; process.Start(); ...Show All
SQL Server Converting T-SQL *= OUTER JOINS to ANSI-92 syntax
Hello all. I have an application that has worked smoothly using the following query syntax: FROM tbl_participation, tbl_adult, tbl_month, tbl_school_year WHERE tbl_participation.adult_ID =* tbl_adult.ID AND tbl_participation.month_ID =* tbl_month.ID AND tbl_participation.year_id =* tbl_school_year.ID AND tbl_adult.ID = 8 AND tbl_school_year.ID = 5 It works just fine, as I want the results to include a ta ...Show All
Visual Studio Team System Creating a new workspace from command line
We are writing some automated scripts to do some performance benchmarks between various SCM system we use in house. I would like to automate as much as I can. With that in mind, I want to be able to automate the creation of a TF Workspace on a system without ever having to run VS 2005. I have created a "template" workspace and I want to use that but when I try this on my system: tf workspace /new /template:SCMTest;hillr /server ...Show All
Windows Forms Getting BindingContext to save current edits.
I have a form that uses BindingContext and CurrencyManager. It works fine, but when I click save, the current TextBox does not save its information (maybe it's not marked as dirty until moving to a different Position ). What's the simple, standard way of ...Show All
Visual Basic Loading Crystal Reports Report, How To Stop Prompt Enter Login ID And Password, This Never Happen Before
How do I stop VB from asking me this I want to view the Crystal Report immediately without the prompt. With a simpler version of my application, it never asked me this. Thank you, Christopher Lusardi Private Sub Open_Report_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Open_Report.Click Dim reportsource1 As New crystalreport1 '<--------- the name of the report ...Show All
Visual Studio Tools for Office Refedit Control for VSTO
http://msdn.microsoft.com/library/default.asp url=/library/en-us/odc_vsto2005_ta/html/OfficeVSTOLanguageMigrationFromVBA.asp The link above talks about a refedit control that can be used with VSTO. However, it does not appear to be implemented in VSNET 2005 Beta2 What is the status of such a refedit control Has anyone on the list found a workaround / solution / alternative As gsbraun was ...Show All
Visual C# Unmanaged codes for C#?
Please corrected me if I was wrong, because I discuss this issue with my supervisor. Typically C# writes the managed codes and unsafe codes, but my supervisor insisted that C# could write unmanaged codes, at least in .NET Framework 1.0( ). I know C# could work with unmanaged codes, but I doubt C# could write unmanaged codes. C# need CLR, right Yes, the C# code is always managed... the unmanaged DLL’s t ...Show All
Visual Studio Team System CMMI - Team Queries - work item columns
Using Beta 3 refresh. Created team project using CMMI process template. In team queries, the "All Tasks" query has two columns "Discipline" and "Rank" that don't seem to ever show any data. I think the Rank column needs to be changed to Priority in the column options. What should I change the "Discipline" field to Discipline should be replaced with Task Type. However, the queries shipped with Beta 3 Refresh of CMMI are not the intended ...Show All
SQL Server DB Owner & SqlDependency Problem
I deleted the account owning Test Database after creating Test Database. Everythings work well except SqlDependency. SqlDependency OnChange Event is not working. I have tested SQL 2005 ent RTM & VS 2005 Pro RTM. I'm curious why it happened. Thank you. SqlDependency needs the EXECUTE AS infrastructure to do it's work. If the account that created the database was deleted, EXECUTE AS user 'd ...Show All
Windows Forms Searching files in directories
hi.. how do i search files in a directory using file attributes like modified date,file size,create date time using .Net. Regards dhn Here is a self-explaining example: DirectoryInfo directory = new DirectoryInfo("c:\mydirectory"); foreach ( FileInfo file in directory.GetFiles() ) { if ( file.CreationTime.Date.Equals( DateTime.Now.Date ) { // Found a file that was created to ...Show All
SQL Server Trendlines in Charts? (RS2000)
Are Trendlines available in charts in RS2000 I have been able to get most of what I need, except for a trendline. I know Excel has the capabilities, but since the report is intensive, creating it in Excel was not easily feasible. The data is a list of sales transactions since Jan 2004. The Y-axis shows the $ amt and the X-axis shows the month-year. If trendlines arent available, any other suggestions other than exporting data to Excel Th ...Show All
