DaveMPlano's Q&A profile
Visual Studio Tools for Office Combobox into perticular cell
Hi, I am using following code to bind the ListObject: DataSet dsTrims = new DataSet (); string strWhere="select col1, col2, col3, col4 from tableTrims"; dsTrims = MyProvider .ExecuteDataSet(System.Data. CommandType .Text, strWhere); this .bindingdataSource1.DataSource = dsTrims.Tables[0]; myListObject.AutoSetDataBoundColumnHeaders = true; myListObject.SetDataBinding(bindingdataSource1); Now as p ...Show All
Visual Studio Problem with VSS internet access and IIS in 64 bits server
Hello, I just installed Visual Studio 2005, Sql server 2005 and Source Safe 2005 (RTM) in windows server 2003 (64-bit). All works fine. I can work with the services installed in IIS (reportserver and custom services I have created). But when I enable internet access in VSS database, the services stop working, with error messages as Service Unavailable or Internal server error. Anyone can help me Thanks Josep M Busquets Girona ...Show All
SQL Server How do you add MSXML6.DLL in GAC?
Hi! I need to add MSXML6.DLL in GAC. It does not have assembly manifest. Even if I create a strong key, I cannot associate it with the dll without a source module. Would you help me on this please Gulden Vendor Web services is a document based web service. Their very poor documentation and VB6 demo program were using the toolkits. Since I don't have much experience working with the xml web requests, I ...Show All
Visual Studio Deploy web app with ReportViewer to hosted site embedded mode
I'm using a ReportViewer control in an .aspx page using ASP.NET 2.0 in Visual Studio 2005 Beta2. I want to deploy this ReportViewer control to my hosted site at WebHost4Life in "local" or "embedded" mode. My report runs fine on my development machine. But when I deploy it to my hosted website at WebHost4Life, I'm was getting this error. Parser Error Message: Could not load file or assembly 'Microsoft.ReportViewer.Web ...Show All
SQL Server execute SSIS package stored in remote SQL server from a client machine.
I have written a VB component to execute a SSIS package stored in SQL server. I am using the Microsoft.sqlserver.dts.dtsclient, dtsconnection/dtscommand and executereader and everything works perfect on the local machine. This is descibed in a msdn site . But my customer have a remote SQL server and want no extra BI clients/SQL server clients etc on the client machine, only an ordinary windows client and network connection to the SQL se ...Show All
Visual C++ resource editing in June CTP problem
I'm having a strange problem. My ported program compiles great (it's a big solution with about 8 projects). When I go to edit a dialog resource and save changes it complains "cannot save file: reourcename.rc". Then it shows me the save as file dialog. When I enter a new resource name, it tells me the proper resource.rc file is using resource.h edit.. I just confirmed this bug. 1. I open the solution and then close it, but not exit visual studio ...Show All
Visual Studio Help Integration Wizard broken
I'm trying to use the html help integration wizard, but get a dialog box telling me Microsoft Visual Studio (as title) The operation could not be completed [OK] when I try to create a new project using the wizard. First try I got it to work but canceled it somewhere in the middle, after that I get the error message mentioned, I've tried doing a repair from add/remove programs, I've removed and re-installed it, but still the same problem.. Ho ...Show All
Visual Studio Express Editions 1 connection, more queries
Hello, I use vb 2005 Express Edition with a remote MySQL (version 4.1.14) database (MySQL Net connector). I want to execute more queries on 1 connection. There is already an open DataReader associated with this Connection which must be closed first. ... appears by executing the 2nd query. > CommandText is "SELECT category_id FROM categories" > Then, I execute (with ExecuteReader), works fine > I use while reader ...Show All
Visual Studio Team System Recorded webtest fails to run
I am able to record and create a webtest that goes to one site (in this case google.com) . When I try to run it I get the following error msg: Request failed: Exception in PreRequest event: The hidden field group name is invalid. For other webtest I get the following error when I attempt to run them: Request failed: Unable to connect to remote server. Recording the webtests works fine and IE if fine on its own. Any ideas ...Show All
Visual Studio Team System Check naming of boolean fields/variables
Thank you again for all the answers. I have a new question. I have written this code: Cinthia, As pointed out on your original question, the following blog post has some sample code that shows you how to do this: FAQ: How do I access the locals of a method in a custom rule Be aware though, that symbols (.pdb) will need be generated and be alongside the assembly you are analyzing for the local's name to be populated. Re ...Show All
SQL Server Page break occurring between a list and a table
I have a fairly simple report, which consists of two datasets, and one list and one table. I have the list and table both as part of the body (no embedding inside each other). Everything works as expected, except that there is always a page break between the list and the table. I've double checked all the PageBreakAtEnd/Start, but it's false all the way over. Is there some other place that I need to set something to force everything on one page ...Show All
Visual Studio C#, VS 2005, Crystal Reports XI, Business Objects Enterprise/Crystal Reports Server XI.
Hi, I must be missing something with my versions, etc, but for the life of me I can't work this out. I have my report which happened to be written in Crystal Reports (or the Visual Studio version, it doesn't seem to matter) that I have loaded in to Crystal Enterprise. I create a web page with a crystalreportviewer in it (version 11.0.3300.0 ) all my references in the project are the same. and then in my codefile I do this as per the documentatio ...Show All
SQL Server Limit CPU utilization
HI, Is there any parameter on SQLSERVER to limit the utilization of the CPU. I made a storeprocedure that has several Loops and when i execute it the processor stay's on 100 % for several minutes and this is blocking the server to the other applications. I would like to set the server so that SQLSERVER could not make use of 100 % of the CPU. Is possible to set a parameter on the SERVER or in the storeprocedure so that the CPU utilization w ...Show All
Visual C# Splash Form ProgressBar Update
Hi! I have problems getting a ProgressBar on a splash screen to update nicely. My scenario is as follows: * I call my main form from the Main Void with Application.Run(new Main); * In the Main Load event I Show the splash form and sets a bol variable (m_running) to true, then I loop while the variable is true executing something like Thread.Sleep(0); (doing nothing that is) * In a separate thread I invoke methods through delegat ...Show All
Visual C# Casting an enumeration that has a defined type..
public enum foo : ushort { foo, bar } ushort test = foo.bar; Cannot convert from 'Test.foo' to 'ushort' Sure, I can make variable of type foo, but I'm encoding the value to a network stream, so I want it as a ushort. The thing is, I specifically told the compiler the enum is of type ushort, so why do I have to typecast it You need to cast it :-) ushort test = (ushort)foo.bar; Oh - you sai ...Show All
