Advertisement

Over 40 Experts attended the first Annual Core Conference! Take a look at what happened throughout the week...

2008 Core Conference

 

Welcome! If you have any general questions about Experts Exchange, feel free to ask me.

 
Top MS Visual C# Solutions: 501 - 525 of 629
 
Hi, I have an application that cannot lost the focus. I wrote a C# application that stay in background and hook some keyboard command to create a kind of log files. Now what I need to do is t...
I need to store a list of Permission objects I will create and attach it to the Session object in ASP.NET 2.0 using C# and Visual Studio 2005.  Could someone give me a tip how to do this? t...
C# - .NET WinForms In my example there are 2 objects: the MainForm, which has a custom control "control1" in it, and a UserControl "control2" that becomes a child of the MainForm. I need to ...
UDSEventLoop problem Problem:  How to seperate the UDSEventLoop code  and opening of form on two different threads. Attached are the two files. UDSEventLoop_Problem contains the content belo...
Sometimes I see this:         [System.Xml.Serialization.XmlAttributeAttribute("gpsloc")] and sometimes I see this:         [System.Xml.Serialization.XmlAttributeAttribute()] Why? ...
I'd like to create a Data and have it consume an XML file and then provide the usual DataSet features to the data from the XML file. Could someone show me how?  I think you'll need to provi...
What is thread affinity and what does it mean in the context of C#.NET? thanks, newbieweb
Im currently redesigning an asp page that is using vb script/html/java script. Im doing the job in asp.net using c#. Now the current pages use a header which acts as like a master page I guess...
I'm writing a program that uses FileStream.Write and I'm using a Windows Form to do it.  I want to be able to see the progress of the FileStream.Write (how much has been written, etc.), but th...
I built the following window service program on VS2005, built it and install it on windows 2000 server. I can see it in control panel add/remove program. Then, I run installutil.exe /i Win...
I have an application running on either on the right side of the desktop(eg 0,0 to 200,768) or on the right side of teh desktop (eg 1000,0 to 1280x768) with the screen resolution being 1280x76...
Hi everyone.. Just wondering if anyone knows how to open windows explorer from a winforms app. I have a linklabel with a path to a folder. I want the user to click the link label and win...
Hello experts! I'm making a web application for the football league. Now I get to the problem how to get only one value from SQL database. For more data view on gridview,.. u need only to c...
I have created a form, that when button is clicked,  it shows a message that says, your message has been sent to the following member member name My problem is, Ive written a class tha...
I am looking for something along the lines of: #if debugging step over the following code block .... #endif is this possible in vs c# 2005?
I have a Treeview that contains part numbers.  Some of the part numbers are assemblies and have child branches.  If I am looking at one of the child parts, can I easily refer to its parent par...
Hello Friends, I am Developing and windows application that can check rank of the site according to keywords on Google, Yahoo and MSN. but i am facing a problem that it gives an error "A...
I have a collection of items (List<People>), they have ID NAME EMAIL PHONE[] The PHONE is an array of phone numbers, how can I order the list by Phone Number? Thanks a lot.
Visual Studio 2005 C# This is my class below. I want to go AddNumbers(10,20); from anywhere in the solution instead of Test.AddNumbers(10,20); public  class Test     {         public st...
Need a regular expression to validate 3 types.. Only a number which contains 0-9 Only a word it contains only a-z or A-Z Alpha numeric string which contains 0-9,a-z and A-Z And no specia...
how do you close x2 winforms programmically ? basically, have WinForm1 which has a menubar strip -- select login option (for example). a login window appears (WinForm2) -- press the ente...
I'm working on a financial application, which lists a bunch of stocks. I have a base class, just called stock, which holds all of the basic information, such as price. Then I have a few clas...
Hi I have a  dataview that I am getting from my data set  dataset DataView dataView1 = new DataView(dsChart.Tables["RESULTS"]); In it there is a column called ["Sales"]  I want to get t...
What "using" statement will make IsNullOrEmpty available to me? Thanks, newbieweb
Greetings all I have been asked to develop an application in such a way that the Data Access Layer and Business Layer can be shared by a WEB and GUI application. At present,m I have some...