pic_az's Q&A profile
Visual Studio Team System Using Project Level Groups
Hi, I have couple of Project Groups defined and field in Work Item Type declared as follows: <FIELD name="Developer" refname="MyNamespace.Developer" type="String"> <WHEN field="MyNamespace.Team" value="GUI"> <ALLOWEDVALUES> <LISTITEM value="[Project]\GUI" /> </ALLOWEDVALUES> </WHEN> <WHEN field="MyNamespace.Team" value="BL"> <ALLOWEDVALUES> & ...Show All
Visual FoxPro foxpro exe and dbf's, fpt's, bak's, tbk's, but now prgs etc.
foxpro exe and dbf's, fpt's, bak's, tbk's, but now prgs etc. I was given a foxpro program and i would like to see the code (the formulas)... i'm not sure how to do this... thank you... modify command <insert your prg file here> modify form <yourformname> use <yourdatabasename> ...Show All
Visual C++ VC++ 2005 redistributable (vcredist_x86.exe etc.)
Hi there, I noticed that the Beta 2 redistributable is hosted on the Microsoft download library, but the final ones seems not to be. Will it be hosted on microsoft.com (or is it already somewhere ). Also, it has been reported to me that on Windows 2000 the (RTM) redistributal gives an unuseful error message if Windows Installer 3.1 is not installed. The message is error 1723. "A DLL required for this install to complete could not be run." . It would be a lot more helpful to my users if this was a more informative error message - the solution of installing Windows Installer 3.1 was only found by trial and error. Thanks. ...Show All
Windows Forms Advice requested: Windows Forms Binding:
I have been trying to get the following Windows Forms binding working, without success. The following Code, successfully populates the GridControl, and both combo boxes with data. The two comboBoxes represent: SalesOrderType, and SalesOrderStatus. There six SalesOrderTypes, and five SalesOrderStatus values. The GridControl contains all of the Sales Orders. My Problem: I want the comboBoxes to display the same value that is in the DataGrid, each time a user clicks on a different DataGrid Row. I want the comboboxes synchronized with the dataGrid control. I am using: VS2005 Beta 2 C#. 1 DataGridView 2 ComboBoxes SqlConnection con = ne ...Show All
Game Technologies: DirectX, XNA, XACT, etc. directsound q
if i have a directsound buffer, how do i play it twice at the same time caz if u go: buffer.Play(); buffer.Play(); the second Play call doesnt do anything caz the first one is still running For each sound you want to play simultaneously you create a SecondaryBuffer All the secondary buffer will mix inside the PrimaryBuffer automaticly and you normally don't fill directrly the primary buffer To see if one of your secondary buffer run you check it's status (Play,Pause, Stop) Before you stop it to restart the sound of that buffer ...Show All
Windows Forms difference between as and =
Hello can sombody explain me the difference between as and = opperator in the following sample: * Dim insert_log = New SqlClient.SqlCommand("spINSERT_log", Conn_log) * Dim insert_log As New SqlClient.SqlCommand("spINSERT_log", Conn_log) What is the difference between "= New" and "As New" Only thing I can think of is if you wanted  ...Show All
SQL Server Temporary tables
Hello, I have to import all the data from xml files (xml source) into temporary tables so that I can manage the data with sql statements (sql tasks). Then I created a sql task creating the temporary table (ie. Create table #temp ( a int)) followed by a data flow task. Into the data flow task I cannot see the temporary table from the sql server destination component. Any suggestion Thanks, Pierre Temporary tables should be visible from SQL Server Destination component. Can you make sure that you have actually executed the sql task with the create table statement, so that the temp table actually exists in the database, before you tr ...Show All
Visual Studio C++ express edition and JIT debugging
I installed Visual C++ 2005 express edition (+ the SDK) on a computer which already had the Visual Studio 2003 installed. Now if my program crashes the JIT debugger which is available is the 2003 version. It appears to have problems with the version8.0 dlls ( ) so I would like to invoke the express edition debugger here. Is this possible, or is it something only available with VS 2005 pro I noticed that C:\Program Files\Common Files\Microsoft Shared\VS7Debug contains some relatively new files (coloader80.dll etc) which makes me some what hopeful that I would be able to somehow solve these problems. Edit: While writing the text above I conti ...Show All
Windows Forms open an application from a windows service
Does anyone know how to open an application from a windows service I have an application that I have to run while passing command line parameters. I figured I could open up this application from a windows service while passing the parameters along with the application call. Does this sound possible Any help I could get would be greatly apprec ...Show All
Windows Forms Garbage collection in Windows Forms:To finalize or not?
Hi, I would like to know if someone can tell me exactly when to finalize, and when not to finalize objects. I have a C# MDI application with windows forms, containing user controls (and user controls within them) and use a class called DataManager as static variable in a form to call methods to get my data. The DataManager class has references&nbs ...Show All
SQL Server Deployment question: SQLDB - SSIS on different boxes with SQL Agent for scheduling
I am interested in how you guys are deploying your packages. I am running SQL Server Integration Service(SSIS) and SQL Server Database Service (SQLDB) on different boxes. I can't have SSIS installed on SQLDB box because in my prod. environment, the DB box has *just* DB - no services or no other fancy stuff. So far so good. Now, if I want to schedule the SSIS packages (deployed on MSDB) to run periodically, I need to create an SQL Agent job (or everyone else here is using a Windows scheduler instead ). SQL Agent has dependency on SQLDB and so it goes on the SQLDB box, correct Can I run job steps to execute SSIS packages&n ...Show All
Visual Studio Express Editions What now? - x86
I have downloaded http://www.microsoft.com/downloads/details.aspx familyid=32BC1BEE-A3F9-4C13-9C99-220B62A191EE&displaylang=en . To let me redistribute my applications, but I don't understand how to use this. I installed it and I was given no instructions on how to use it. Please help, Wilko Yes. That is unless you want to rewrite your entire app from scratch, avoiding the use of CLR whenever you're tempted to use it. For C++ Express this pretty much means you'll have to ditch the entire user interface and resort to the command line only. I don't know about you, but I'd rather ask the use ...Show All
.NET Development How to set a specific RUNTIME for a library?
I have used Visual Sturdio 2003 to create a DLL compativle with COM and I want that dll to run in .net 1.1 even if .net 2.0 is installed. Can I set this property in anyway to my library or it will always run with the las .net installed in the machine MSDN says: The startup code for an application hosted in Microsoft Internet Explorer ignores the <requiredRuntime> element. So this is still an issue sometimes. ...Show All
Visual Studio VSS 2005 and Visual Studio 2005 Professional Edition
Is Visual Source Safe 2005 included in Visual Studio 2005 Professional Edition I haven't been able to find information on this anywhere. We are worried that we may have to purchase Visual Studio 2005 Professional Edition and also purchase Visual Source Safe 2005. Previously, we only had to purchase Visual Studio .NET 2003 Enterprise Architect which included Visual Source Safe 6. Any information will help. Thanks. Sorry, according with http://msdn.microsoft.com/vstudio/products/subscriptions/chart/ it seems that VSS2005 can only be downloaded if you h ...Show All
Visual Studio 2008 (Pre-release) WCF Web Services
I'm interested in hosting web services in my Windows service using either WCF or WSE 3.0. My is that I have to use an existing wsdl file to build my web service and I'm going to have a non-Windows client send me SOAP-based messages. The svcutil.exe appears to only be useful for Windows clients wanting to communicate with a web service. I'm not sure how I go about building my web service in such a way that I know I have to use this pre-exising wsdl file and I'm going to have non-Windows clients sending my SOAP messages. On first pass we see a the connection being closed and the client reports a SOAP version mismatch. I don't know that this is ...Show All
