szabti's Q&A profile
SQL Server debugging stored procedures in BIDS
Is it possible to debug stored procedures in BIDS If I go to the 'Server Explorer' --> 'Stored Procedures' and right click on my stored procedure I see nothing related to dubugging from drop down menu. ...Show All
Visual Studio Team System FxCop Rules Deployment
Hi, We have written some FxCop rules for doing standards check as per our company policy. Can somebody help me with the following details like What are all the possible deployment options as the rules will have to be installed on all the client machines Which is the best option and why I would really appreciate your help in this regard Thanks and Regards Prash Hi, Deployment is for the Mana ...Show All
Windows Forms Vb.Net - Open Webpage from LinkButton on Status Bar
Hi all, I have a Windows Form and have a LinkButton in my Status Bar, and want to open a url from the Click Event. I just don't know how to write the code that actually opens a url. Sorry I'm used to working in ASP.Net and not familiar with Windows Forms stuff. Thanks in advance. Kind Regards, Grant. Process.Start ("www.microsoft.com") ...Show All
Visual Studio Team System How to move suppressions to the top of the source file?
(Using Visual Studio 2005's built in Code Analysis) Having all the suppressions mixed in with the code is very ugly and makes the code unreadable. Therefore for each ".cs" source file, I would like to move the suppression to the top of the file somewhere so (a) it is all in one place and (b) it doesn't obscure the code. Consider the following code: using System; // This suppression doesn't work: [assembly: System.Diagnostics.CodeAnalysi ...Show All
Windows Forms How to change a data row color based on a field value in run time?
Hi all, I have no idea how to do this, can you give me some idea Let's say one of the field is status of the data, if its value is "OK", then the row is displayed GREEN color in background of the whole row, otherwise it is RED color in background. Thanks for anyone help. Is there a solution for this in the datagrid .net 2003 tnx Remco ...Show All
.NET Development is the Client online????
Hi, I am new in C# programming. I have developed a Client-Server Application.The Clients can loggin to the Server and send messages to each other. My Question is: How can the Server know whether a Clients is still connected I use TcpListener, TcpClient .Connect(serverIP, serverPort), StreamReader and StreamWriter for the communication. Thanks. MAT. This question is better suited for the .NET F ...Show All
Windows Forms !!!URGENT!!! Accessing the Application Manifest and Deployment Manifest at runtime
Basically, I want to be able to load both at the startup of my ClickOnce app to 1. Get the Publisher and Product info from the Deployment manifest 2. Iterate through the Application manifest for optional download groups to provide a background process to pre-fetch these groups. I've scoured the API trying to find out how to get access to the current manifest in a programmatic way.... Thanks, Jim ...Show All
.NET Development Is the NET framework 2 the final version or beta?
Is the NET framework 2 the final version or beta My hosting provider is running NET Framework 1.1 and I hope for an upgrade… It has just been announced that Visual Studio will be released on November 7th: http://www.informationweek.com/story/showArticle.jhtml articleID=164301022&tid=13692 ...Show All
Visual C# Help - (More advanced) OleDBProblem - Please answer
I have to write a little Client/Server App. where the Client uses a MSDE to check out Data when he gets out of the House. When he reconnects to the System the Client haves to Sync the whole Data (including Authorisationinformations - new Users etc) So right now I've made 2 System.Data.OleDb.OleDbConnection's, connect to one SQLServer, Read the contents of a table/view via the DataReader line by line and fire a insert-Command foreach line! is t ...Show All
Windows Forms making windows forms or title bar BLink
Hi, How can I make form backcolor or form's titlebar blink Thanks, I forgot this struct, you'll need this too using System; using System.Runtime.InteropServices; [StructLayout(LayoutKind.Sequential)] public struct FLASHWINFO { public uint cbSize; ...Show All
Visual C# How to free up memory in C# apps?
hi.. In my application so many variables and XML files are used .. eventhough after finishing off the work with the file, im closing that. It works fine with few number of files but when i uses more than 50 files the application crashes... So. is there any way to resolve this by clearing the memory. need help !!! You need to make sure you call Dispose on any variable that has that method, before ...Show All
Visual Studio Problems opening an MSBuild Project file in VS Beta 2
Hello I am finding that the beta 2 is unable to open an existing msbuild project file in the editor. Previously it would just open and be recognised as a form of XML file in the text editor. Now when I double click on the file in the solution list it draws the tab on the editing pane, with the correct name on it, but does not display the file. The redraw process for the screen area for the file stops. I can still switch to oth ...Show All
Windows Forms Strange Location Behaviour
i make a new windows form project, I add 2 Lines of Code: Set the Location of the Form to 10, 10 Message box the location of the form: public Form1() { InitializeComponent(); this.Location = new Point( 10, 10 ); MessageBox.Show( this.Location.ToString() ); } and i get 10, 10 as you would expect. I then add: Point k = this.PointToScreen( new Point( 45, 40 ) ); above the message box call: public Form1() { Initial ...Show All
Visual C# C# VS C++
OK. I want to have a crack at programming - C#/C++ seems the way to go. What are the differences between the two - and which would you say was best to learn to create basic apps < erossetto@discussions..microsoft.com > wrote in message news:03583ce3-c8a0-4ba9-9606-d23ecdda6856_WBRev2_@discussions..microsoft.com ... This post has been edited either by the author or ...Show All
Visual Studio Publishing open source tools
Hi guys, As part of my and my friends work at my company we have developed a nice tool to work with Ms Build scripts. After consulting with the executives in the company we were permitted to release the tool as an open source. I would like to get your advice, how to publish the tool Where And what are the steps I should follow in order to make our tool well known in the .Net community. To be more focused, our tool is aimed for Configuration Man ...Show All
