Srilatha's Q&A profile
SQL Server operationg system requirement
I am in the process of learning SQL from scratch and figure it would be helpful if I can run a local server and experiment with it as I move along some book reading. I have a few questions regarding the operating system requirement for running a localhost server and hope some of you can answer to my novice questions. Can I setup a server under Windows XP when I looked thru the documentation it indicated only windows 2000 and other Microsoft server OS will support a SQL server setup. Why then it also indicate XP as compatible Is it because it's compatible as a client If I do have to run a server under a different operationg system, what is th ...Show All
Visual Studio Team System TF single-server installation failed on a virtual pc
My installation steps are: 1. Install a Windows Server 2003 with SP1 virtual pc. OK! 2. Config the virtual pc as an application server, enable asp.net. OK! 3. Install the SQL server 2005 April CTP, config the application pools. OK! 4. Install the SharePoint Service, exclude the Reporting Services. OK! 5. Logon as tfssetup and install the Team Foundation. Hang!!! The ADAM installation seems good but the installation stops at the last step. I follow every instruction in the "visual Studio Team Foundation Installation Guide" but the installation just fails. I've tried twice but got the same results. Why Bruce Sorry, the VPC has been drop ...Show All
Visual Basic Installing VB.Net without product ID
I lost my CD box that has product ID on the back. I want to install vb.net 2003 on my new laptop. I have vb.net installed on my desktop. Is there any way I can install vb.net from my desktop or using the original CD without using product ID While I don’t know how to install VB2003 without a product key, this may be an opportune time for you to make a free upgrade to Visual Basic 8 with Visual Basic Express which is a version of Visual Studio 2005 that lacks a few of the advanced features of the paid versions and is simply a language specific version of the more expensive ones and still gives you exa ...Show All
Windows Forms Extending DataGrid
Hello, I have followed microsoft's Walkthrough: Creating Your Own Collection Class to create my own Collection object. I created the following classes: Receipt, ReceiptItemCollection, ReceiptItem. 1. I have bound a datagrid to my ReceiptItemCollection. 2. I am having trouble customizing the appearance of the datagrid. ( using this example ) (basically nothing happens..datagrid is automatically creating columns) I am supposed to specify a MappingName for the DataGridTableStyle and DataGridtextBoxColumn objects. This mappingName property is of type String. So i can't tell it to use the first column in the coll ...Show All
Windows Forms Master/Detail Multiple rows?
Is there any way when making a master/details Windows form that you can make it so that you're able to select multiple rows in the parent and have the child form display the results for each of the rows selected I'm having trouble getting this to work. I have a simple master details form working fine, but I need this additional functionality. Anyone have any idea how I can achieve this Thanks, Chris ...Show All
Windows Forms Change row colour depending on a cell value
Hi, I have a datagrid and need to change the row color depending on a boolean column value. I'm using c# and version 1.1. Please let me know how to do this. Many thanks. -VJ http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=373164&SiteID=1 ...Show All
Windows Forms Clickonce not updating all clients
I have a fairly simple application that is being used by about 50 users which I deployed using ClickOnce. The internal users clicked on the "publish" page to install the application and are now starting it by clicking on the icon under Start, All Programs. I have been regularly publishing updates to this application using VS 2005. I wanted to "force" every update on the users (make them mandatory), so I have been incremeting both the Publish Version and the Minimum Required Version. This seems to work well for 95% of my users - every time the application is run, it checks for a new update, downloads if necessary, and r ...Show All
Visual Studio Team System Coded Webtest - capturing failure, taking action
I have a coded Webtest that basically traverses my entire Content Management hierarchy, just looking for simple things like not going to error pages [thanks for the ValidateResponseUrl JoshC] and making sure all images load. When I view the results in the testing window when I run the test, I can see (1) if it failed my few validation rules, and (2) if any images are broken within the page. I think I'm missing something simple, because all I'd like to do, is when the current iteration of the WebTestRequest runs, I want to be able to see if it failed or not. If it fails, I want to do some action such as logging which images broke, just ...Show All
.NET Development Accessing Webservice from PDA very slow
I have an application on PDA which talks to the webservice, whenever I am getting data from webservice in the form of Dataset the reponse from is slowed. Please help its very very urgent Hello Partha, Reviewing older postings still unresolved.... The internal serialization of a dataset object is supported by our webdata/database group. They will be able to explain why serialization of this object is taking too long. If you haven't already done so then please post this question on the .NET Framework Data Access and Storage forum. If you need further assistance with this issue please call into the developer support line at 1-800-936- ...Show All
Windows Forms how to make datagrid sorting by dispay member?
Hi everyone, I have a combobox in a datagrid, the datasource of combox is a dataview, the datasource of datagrid is datatable, I override SetColumnValueAtRow and GetColumnValueAtRow two methods, every thing is working fine so far, but if you sort combobox column, it is sorted by combobox value member, not by display member. thanks We are currently looking into so ...Show All
Windows Forms toolStripComboBox to fill the toolsstrip
Trying to make toolbar like the Address for IE, I have a t oolStripComboBox that does the AutoComplete etc, but the problem is I cant get it to strech/auto size to entire toolbar. Any ideas on how to make tool bars similar to ones in IE TIA Thank you Josh Didnt realise that feature, Actually both answers are correct, Erics answer includes some good code thats quite handy. ...Show All
.NET Development how to Copy a table from mssql to ms access
Is there any way to copy a table(structure and data) from mssql to ms access Moved from the C# language group to the .NET Data access and storage group, as that's much more relevant here. Jon ...Show All
Visual Studio Express Editions Deploy SQL Server 2005
My question is if it's possible to deploy SQL Server 2005 Express Edition with an application written using VB 2005 Express. I would have a look at the following article, Embedding SQL Server Express into Custom Applications http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnsse/html/EmSQLExCustApp.asp ...Show All
Visual C# Problem raising Event with INotifyPropertyChange (ADD and Remove )New in 2.0?Need help
Hi I am trying to understand how you raise event when you implement INotifyPropertyChange interface explicitly I am new to c# (used to program in vb.net) so bear with me. What I am trying to do is that only when a property changes I raise an event in .net 1.1 you Would do the following public class Employee : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; private string mLastName; public string LastName { get { return mLastName; } &n ...Show All
.NET Development How to get the left digit value?
Hi Is there any function is available in Managed C++ to get the left side value of Integer value for example, that function should return the interger value like this... leftvalue(19,1) = 1 leftvalue(25,1) = 2 Assume leftvalue() is proposed function. Thanks in advance Jose Hi, If my memory serves me right, then InStr() - gets the location of a specified character(s), Mid() gets a substring. If thats the case then: String^ test = "Microsoft"; // INSTR() int idx = test.IndexOf('o'); //Mid String^ str = test.substring(1, 5); cheers, Paul June A. Domag ...Show All
