Do not use on any
shared computer
August 21, 2008 05:35pm pdt

250 organizations, including eBay, Ericsson and Lockheed Martin, now work smarter with Corporate Accounts. Save up to 42%

 

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

 
Time Tested C# Solutions: 201 - 225 of 5493
 
Hello, I've a problem with C#. I've created an Console Application but I want that the application starts in background without any windows and if is possible hiding it's process. How I can ...
I have this sturcture in SQL SERVER 2005. Table Name- Categories. CatID       LangID    EngID      OwnerID   SubOwnerID      categoryName        Show      OrderBy       PopRating 1     ENG     1     ...
I've got a class with this variable: private ArrayList addressList; There should be a property that makes this list public: public string[] Emails {     get { return this.addressLis...
I am trying to add the C# event below to a custom control.  However I am getting the follwing error, please help. Inconsistent accessibility: property type 'CA.UI.CustomControls.uccPostalCo...
I am trying to write this for the .Net Framwork 2.0 C# 2005. I keep getting an error message Fill: SelectCommand.Connection property has not been initialized on roTable.Fill(ds, "Results...
Hey Guys, I have GPS Device in my mobile phone, I get the following data from the device. What is the best and most effcient way to parase the GPS Strig to get Lat and Lng? $GPGGA,04014...
hi,     I have a datagrid with about 10 columns in it.Now i want to import the values in excel file to datagrid. scenario : 1-----There are only 5 columns in excel.So i want to match ...
Hi, I have an application that pulls appart code and does all interesting validations and such to this code. What I also want to do is take the information that I have pulled appart to gen...
I am writing a program that reads in a string and then converts parts of that string to a specific format. So i read in 1350 in from the string by the following code: Price = float.Parse(Str...
hi experts i need to convert text file to binary file format in c# can i have an example
Afternoon everyone, My department and I have been really struggling lately with server certificates and specifically bypassing trust errors brought on by the fact that our certificates are ...
Hello to all: I am trying to get an Intranet page running that has been composed in c# as an aspx page.  This page will enable us to upload Excel spreadsheet data to a SQL db.  Currently I ha...
Hi everyone, First of all happy snow storm and go Pats! ehem... Can someone show me the code that will reference the current date the program is run on and covert it to what ever "typ...
Code snippet (VB): Glut.glutIdleFunc(AddressOf IdleCallback)             Glut.glutDisplayFunc(AddressOf DisplayCallback)             Glut.glutKeyboardFunc(AddressOf KeyboardCallback) ...
Need some sample code in C# to see how to setup the XMLHTTP object and send the data. thanks!
I'm getting this error:  Input string was not in a correct format. this is the code... This is the line that failes: DataRow drFiltered = ds.Tables[0].Rows.Find(tagname); tagname i...
I have downloaded a sample asp.net app that uses a windows service.  I am trying to install the windows service but get the error "cannot start service from command line or debugger"  - the se...
Hi, I'm creating a program in C# that will run in the background on my pc. The program is a custom server and I will send a message to it remotely telling it to fake press a certain key. I ha...
I am new to C# and am having a hard time trying to figure some things out.  For example I have my main form where I create my connection:                                             public const strin...
Hello experts. I'm currently writing some code which will allow me to do the following: Send messages of a purely ASCII nature, containing no special characters. These messages will stri...
Below is my defined class.  Whenever I try to call the setControlLocation function, I get this error 'System.Windows.Forms.Control.width' is inaccessible due to its protection level'. This ...
I have a GridView with a decimal value in it This decimal value can be up to 4 digits to the right of decimal point but how do I get it to display only two digits if the far right 2 are 0's  i...
Hi , I have a DataTable in memory and i m trying to query on it like this: Datarow[] dresult= dtable.select("Location='  ' "); But this always returns no result, My DataTable has a column n...
Hi, How can I read/write data directly to a DBF file? If you suggest a third party tool, please make sure it is freeware without any license implications. I have resonable exposure to c# pr...
I'm wondering if it's supported - probably not, since the following won't compile, but perhaps there are alternatives? public enum A { } public enum B : A {     a, b, c }