Jeff Walsh's Q&A profile
Visual Studio Team System how to customize ProcessGuidance.html and be able to see it in team explorer
Dear all I am now able to customize the ProcessGuidance.html by opening ProcessGuidance.XML file from :- ...\MSF for Agile Software Development\Wss\Process Guidance\Source\XML and can see the effects for my editing in file ProcessGuidance.htm which in this path :- ...\MSF for Agile Software Development\Wss\Process Guidance\Source but my changes didn't apper from team explorer there is other file called ProcessGuidance.html in this path :- ...\MSF for Agile Software Development\Wss\Process Guidance which I think that this one is the one which avilable from the team explorer any help ... Hi, Sorry you ...Show All
SQL Server Custom connection manager development sample?
Does anyone has code/sample/tutorial/pointer to developing custom connection manager with a custom UI. And then developing a custom task with a custom UI that can point to this custom connection manager... and passing values during runtime from UI to the custom class. TIA, Nitesh I assume you mean a custom UI for the component not connection. You follow a similar pattern to tasks, but inherit from IDtsComponentUI Interface . Developing a User Interface for Components ( ms-help://MS.MSDNQTR.v80.en/MS.MSDN.v80/MS.SQL.v2005.en/dtsref9/html/10b829a1-609b-42e3-9070-cfe5a2bb698c.htm ) A sample is available from here, Ch 14 & 15 - Wr ...Show All
SQL Server Error of Microsoft OLE DB Provider for SQL Server
Hi All: I have a ASP page which use external DLL load data from SQL 2000 server, but it keeps give me error as following: HTTP 500.100 - Internal Server Error - ASP error Internet Information Services Microsoft OLE DB Provider for SQL Server (0x8004000) the line cause the error is as: <% dim newRS dim visiter = Server.CreateObject("ExternalDLL.visit") newRS = visiter.enews.getENews %> visit and enews are all class file inside ExternalDLL. any body can help me out what's wrong with my page the external DLL and sqloledb.dll are both registed on the machine. Your help is great apprecia ...Show All
Windows Forms unbound column in a data bound datagridview
I have a unbound column which i want to show data that is related to the current data this is showing in the grid. The unbound column is read only. And the datagridview is used for data-entry so it being edited or added to. The grid is used to show which instructors are teaching a course and for editing this particular file. Instructor_id is save in the file that is bound to the grid. And I am trying to show the instructors name in the unbound column. This following code works only for the highlighted row. When you leave the row the cell doesnt show the instructors name anymore. Private Sub InstGridView_CellValueNeeded( ByVal sender ...Show All
Smart Device Development No result code for SendMessage with WM_COPYDATA
Hello, I've asked this question in MSDN forum , but without result. So I' want to ask somebody here, whats the problem with my code. I try a inter process communication with windows messages and WM_COPYDATA. It should work for managed and unmanaged applications. The receiver of WM_COPYDATA messages is a managed applications. For the sender the result code of SendMessage is important. In the managed receiver I use Microsoft.WindowsCE.Forms.MessageWindow. I override the WndProc, to check for WM_COPYDATA. Then I set the msg.Result to the desired value and call base.WndProc. But the sender always get 0 as result of his Se ...Show All
Visual Studio Express Editions Database problems: Save data, Change table definition
Although a problem was recognized months ago regarding saving data, I'm disappointed that the Start Page "How Do I... (Database updating) still has a serious error and several suggestions are still floating around to resolve. Forum messages show this is causing a great loss of productivity with programmers and companies. See below for another problem. My past experience is with VBA and 2003 Net, using Excel as a database. Basics: 1. There are two separate items utilized by computer applications: -Definitions (object names, properties, methods etc.) -Data (actual information entered by user in various ways) 2. There are two per ...Show All
Visual C++ Rationale for C++/CLI Value Types not having a default constructor
Given value class X { public: // Not allowed: X():i(100000),s(10000) { } // Allowed void InitializeDefaults() { i = 100000; s = 10000; } private: int i; short s; } How can: 1) X x; x.InitializeDefaults(); be better semantically than 2) X x; for setting the default values of 100000 for i and 10000 for s In other words what is the rationale for removing the natural user-defined default constructor for value types and forcing the user to default construct the value type object to its zero or null values and then have to call another function to set default values which the type may want I read that 2) can not be guaranteed to occur properly in ...Show All
Visual C# Infinite integer
Hi, my application is using some integers which is too big for int32 and even int64, can anybody tell me how to create infinite integer variable that can accept very large numbers Thanks, I guess you could write a class which allocates as much memory as possible, making it 'infinite' in the sense that it would continue to grow as the required value increases. ...Show All
Windows Live Developer Forums Meet the MSN Messenger Team at the PDC (9/12 to 9/16)
If you are attending the Microsoft Professional Developers Conference (PDC) in Los Angeles this week, you can meet members of the MSN Messenger Team. MSN Messenger has a demo station in the Microsoft pavillion. Stop by and say, "Hi". Attend the COM301 breakout session on Wednesday, Sept 14, at 1:45pm - Room 406 AB, to learn the details of building an Activity API application. "Ask the Experts" on Thursday, Sept 15, from 5:30pm to 9:00pm. Drop by our discussion table to talk about the Activity API or anything else about MSN Messenger you care to discuss. Daily Hands on Lab - Come to the Hands on Lab area ...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.. How can I get the wizard back to a working state again /Simon I installed Visual Studio 2005 SDK – April 2006 v2 RTM and then the Wizard started working again! Bengt ...Show All
Windows Forms ¿Why TaskVision does NOT use DataBinding?
¿Why TaskVision does NOT use DataBinding I see a lot of code doing things like oneDataRow["someField"]=someTextBox.Text; I am building a big (i am in 5° Month, of about 6 months of development, and maybe more, if the client likes it and wants more) project in .NET, in Windows Forms, and I use DataBindigs for every window, but some times i do ...Show All
SQL Server Previews OK, but then error: "Rowset not returned"
I am using a proc that runs fine in SSMS Query editor and also produces rows when I click the Preview button in the OLEDB Source Adapter. It has two input parameters. The proc contains some CTE's and UNION ALL's. It does not contain any dynamic sql. However, when I run the package I get this error: [OLE DB Source [1]] Error: A rowset based on the SQL command was not returned by the OLE DB provider. How can that be when the Preview shows rows being returned Try adding "SET NOCOUNT ON" at the start of your stored procedure. However, I am writing this from the airport, without access to ou ...Show All
Windows Forms Current Record
Hi, how i can get the current record in the dataset that i select in the datagrid Thanks Alejandro Dim cm As CurrencyManager = CType(Me.BindingContext(grdMyGrid.DataSource, grdMyGrid.DataMember), CurrencyManager) Dim dv As DataView = CType(cm.List, DataView) Dim dr As DataRow dr = dv.Item(cm.Position).Row ...Show All
Windows Forms Image Combo vb.net
Hi Has anyone developed a nice imageCombo in vbnet I have tried some but as soon as you load more than 50 items it really slow down. thanks ...Show All
Visual Studio Dynamically Changing ConnectionString for reports' ObjectDatasource
Suppose that there is set of servers (in my case it is only one server, but I would prefer a more general solution), each with their own set of databases. All the databases have the same structure (for example, they are all editted copies of the Northwind DB), but contain different data. How can one write the report such that it can choose which database to use based on user-specified parameters When designing a report with VS 2005, the datasets are created and their connection is built and stored in web-config. At runtime, all related properties for these objects seem to be read-only. As such, I am unable to change ...Show All
