Already purchased the new Motorola Droid? We want to hear from you! Tell us what you think about it and Google's Android 2.0 software.

 

Having problems asking a question? Have a general question about Experts Exchange? Let us know!

 
Top C# Solutions: 1 - 25 of 1465
 
Hi all, Is there a way to round a Double number such as 12.4556 to something like 12.46?  I found ways online that can round the Double number down, but through that way it converted the nu...
Hi there, I am writing short code where I do need to read and write EXCEL files (97, 2000, 2003, 2007) using C#. Is it possible to get sample code to understand? I'm aware of the office aut...
Hi I have a Datatable "dt" from a third party SOAP call, and I wish to get ALL the Row data where a Field value = "some_value" and then use the data to fill a string query to update my MyS...
i am using a ModalPopupExtender inside a gridview.        my requirement is when i clicks a linkbutton(linkFlagsNew) in the gridview it should display "ModalPopupFR", which contains the user...
Hi, I am facing one problem while exporting datagrid to excel... i.e  How to set the Datagrid column width to excel sheet cell wdth? In Excel cell one word instead of horizontal it is v...
I have 3 related combos on an aspx page. The 3rd combo populates a RadGrid when it is selected. When this happens and the page posts back the combo selections disappear. The data is coming fro...
Hello, I need to convert JPEG image to byte array in C#. I need a byte array of unencoded image that each 3bytes(RGB) or 2bytes (YUV) will represent a pixel. So if I have a pixel of size ...
I have a working application that captures a webcam frame every few seconds using VFW. The first approach I used was to have VFW copy the captured image to the clipboard which is of no practic...
I have created a custom user control called ListViewEx inheriting the ListView control.  The OwnerDraw is set to true, and I've already implemented the DrawColumnHeader, DrawItem, and DrawSubI...
I have a click once c# visual studio 2005 project that references several custom dlls, all of a sudden it will not build the project anymore. It keeps giving me the above error. Each of the dl...
Hi All, Before I go BALD from tearing my hair out I remembered my Experts Exchange account, hopefully you can save me. I am writing some softwear in C# to communicate over serial with a har...
I use VS 2008 and I want to open a html file with Response.WriteFile but the image doesn't appear. On the disk, I have in the folder where the html file is saved, a folder 'images' where th...
I need to parse the following string into a C# DateTime object.   Fri, 28 Aug 2009 01:00:39 GMT For some reason, using DateTime.Parse("Fri, 28 Aug 2009 01:00:39 GMT") produces a DateTim...
Hi, I want to add a preview button in a print dialog. my application is WPF and I know you can't creat a print preview based on WPF print dialog. I m able to create my XPS printPreview ...
Hello experts, I am utilizing a WebBrowser control.  I have a custom toolbar that accesses certain features of the control, one of them being a print button.  The print button calls the Sho...
Hi Can anyone please assist me, I have a couple of folders lying in the IISRoot, I need to set the sharing permissions as well as add the users with their respective rights. I need to gi...
Has anybody ever used PRINTDOCUMENT to print anything else besides TEXT files? I want to print the contents of a control (picturebox1.image) and I can't determine a good solution. The image is...
Hi Can any body please help me to convert .ds2 file into mp3 or wav format by using dot net platform please?
i am developing a application in which i need to get the list of installted programs on windows xp, from add or remove programs. I am using C#. any idea how to do it. thanks.
I have two values in a class, an integer which will represent a percentage (5 would be 5% or .05 really) and a decimal for money 100.50. I want to multiply the percentage by the decimal and...
Hi, I'd like to add a shortcut in the start menu to uninstall my application, which is created with Visual Studio 2005. I've heard about creating a .bat file with the uninstall command a...
I am losing my mind here. I have written simple windows service in C# that checks a shared directory and, if there is a batch file present, pulls it to the local machine to run it. I am ...
I have the resource file called X. Whenever I add any image to that it comes as internal.  Not the public one. So I am not able to access them from other projects. Also. Each time whenever...
I am using the Zedgraph classes to make a chart. I use the code to generate vertical bars like the one on this link. http://zedgraph.org/wiki/index.php?title=Vertical_Bar_With_Labels_Demo ...
How can I get the current property name? I am looking for something like MethodBase.GetCurrentMethod().Name, but for Property. For example: class Car with int property MaxSpeed and string...