Lachu's Q&A profile
Windows Forms Microsoft Agent in WinForm
Hi. I want to use MSAgent in my Windows Form Application, Would anyone help me Here is a little resource list: MSAGENT In C#-Part1 [Text To Speech (TTS)] Using MS Agent in C#: Part 3 Working With Speech Using the MSAgent in C# ...Show All
Visual Studio SourceSafe 2005 Internet Plugin
Hello, I've succeeded working with the SourceSafe 2005 beta and the internet plugin on Visual Studio 2003. Is there any support for Visual Studio 6.0 (VB) I've tried using the internet plugin with VB 6.0, but received an error ("The source code control provider did not initialized properly") Thanks, Hi Tim, There is no separate option in installer just for the VSS Remote plugin. After installing VSS2005, to use the internet plugin wi ...Show All
Windows Forms Could not bind ... ValueMember
Hi I'm trying to run the code below: Me.cboPreferredContact.DataSource = respComms.Tables("Table").DefaultView Me.cboPreferredContact.DisplayMember = "comBy" Me.cboPreferredContact.ValueMember = "comById" and I keep getting the error: "Could not bind to the new value member. Parameter&nb ...Show All
.NET Development TableAdapters.....
Is there a way to expose the SqlDataAdapter within a TableAdapter as a Public property even after re-generating the TableAdapter I can't use TableAdapters, because they don't expose the SqlDataAdapter as a Public property since I need to pass down the DataAdapter to a separate DB I/O method. Not a generated DB I/O method within the TableAdapter. I'm forced to use the Component Designer and create a SqlDataAdapter like I have been doing in VS.Ne ...Show All
Windows Forms I need documentation on how to create a patch
We have just recently released and we know we will have to patch the product. So can anybody point me to some good documentation on how to create a patch. For the original product we used visual studio 2005 to create our install. I would also like to know how the patch interacts with the original install when it comes time to upgrade or uninstall the product. I believe the recommended way to update VS 2005 setu ...Show All
Software Development for Windows Vista Workflow compiler problem
Hi, in my application I'm using an embedded workflow designer (like the Lab10), on compiling a workflow the second time, I get the error message: error CS0016: Could not write to output file workflow1.dll. It's used by another process... It seams like the compiler itself doesn't release the references to the compiled assembly, are there any solutions with best regards Andreas The problem is no ...Show All
Visual Studio Tools for Office Excel file
hello their im trying to fill an excel file with data, i have a model file, and then i want to fill the model and save it as another file, but when i save it twice it say that file already exists and if i want to overwrite it. how can i make a if exists the file, delete it and make the new one this is the code i have: oExcel = CreateObject( "Excel.Application" ) oBook = oExcel.Workbooks.Add( "c:\ModeloRelatorio.xls& ...Show All
SQL Server SQLDMO Transfer object crashing
Hello All, I have a quick question. When I attempt to use the SQLDMO Transfer object with the CopyAllTables and CopySchema flags set to true - and attempt to transfer a database from sql server 2005 that has had database diagrams enabled (so the sysdiagrams table is added to the database), the transfer always fails with the following error: [Microsoft][ODBC SQL Server Driver][SQL Server] Incorrect syntax near ')'. Has anyone else had this error ...Show All
SQL Server A QUERY THAT RUN ON DB2 THAT HAVE MORE PERFORMANCE THAN SQL SERVER 2000
The execution time for this query on DB2 v8.0 DBMS one second but I execut e it on SQL SERVER 2000 is around 55 second so how i can incease the performance for SQL server SELECT ACC_KEY1,ACC_STATUS_LAST FROM PSSIG.CLNT_ACCOUNTS INNER JOIN PSSIG.CLNT_CUSTOMERS ON PSSIG.CLNT_ACCOUNTS.CSTMR_OID = PSSIG.CLNT_CUSTOMERS.CSTMR_OID WHERE (PSSIG.CLNT_CUSTOMERS.CSTMR_START_DT >= '1900-1-1 12:00:00') AND (PSSIG.CLNT_CUST ...Show All
.NET Development Loading external assemblies that are not strongly named
Hi, I have a project which references an assembly that is external to the application (it is not in the bin directory of the project or in a path relative to the application). At runtime I use reflection to load the assembly from a supplied path. The exception ‘System.IO.FileNotFoundException’ gets thrown. The external assembly is not strongly named and so I cannot use the ‘codebase’ ...Show All
Visual Studio 2008 (Pre-release) Strongly-typed member references
A major objective of C# and perhaps .NET in general is the reduction of weakly-typed constructs. Delegates are a prime example of this trend. I would like to discuss the possibility of strongly-typed references to non-method members (method references are made possible thru delegates). It is not a LINQ issue per say but this appears to be the primary C# 3.0 forum. Consider the [Association] attribute proposed for DLINQ: [ Table (Na ...Show All
Software Development for Windows Vista Workflow Creation in XAML and Code (Everything not supported)
I was using the xoml style of creating an activity and noticed that I couldn't create an simple single Activity only a Sequence activity. The Activity element was not available. This can be done in code so I am curious if the XAML is a little behind the class library or am I just doing something wrong. Perry, In Beta1, you could define the workflow paramters in the xaml. Something like <SequentialWorkflow ... > <Seque ...Show All
.NET Development Howto: Setting DataSource Property of CheckedListBox?
Hi! Is thers anyway to set the datasource property of checked list box, because in its documentation this is public property but I can't find it in intellisense. Has it to do something with Express Edtion of Visual Studio or MS forgot it or is it by design. I want to able to set two properties namely DisplayMember and ValueMember, since I can't set datasource I don't know anyother way of doing this. If someone else knows how to do that, th ...Show All
Visual Basic Save\Load values as text file
Hello In VB6, I was able to save and load values as text file, it saves them like this form: "V1","V2","V3" I was using this code: Dim A As String, B As String, Op Op = FreeFile A = "Value1": B = "Value2" Open "D:\File.txt" For Output As Op Write #Op, A, B Close Op How can I do it in VB2005 Thanks & Regards The following code ...Show All
Windows Forms Added unbound grid rows are blank
Added unbound grid rows are blank I have a master-child relationship. The master are unbound controls, and the two children are grids. The column names and types I created in the columncollection. When I save the master, values automatically go into the grid columns and saved. They appear in the grid and are updated correctly to the database. If I add another row, it's values appear in the second row. However, the first row ...Show All
