Do not use on any
shared computer
July 24, 2008 07:22pm pdt

Experts Exchange is proud to recognize the top Experts of 2008. Alter egos aside, these Experts are technological superheroes!

 

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

 
Top MS Visual C# Solutions: 151 - 175 of 539
null
Hello, I have no problem consuming a web service from an ASP.NET Web Application project. I add a Web Reference and after that  I can easily consume the web service and its methods. Now ...
Hi, I have been using VB for around a year now and have picked it up relatively well, I wanted to try something new so have moved onto C#. I am working on creating a simple RPG to play wit...
Hi, I am reading a file which hs the amount value as "packed signed hexadecimal". I need to print this value as normal currency value. For example the value in the file is "FF FF FB" whi...
Hello all I'm attempting to integrate our MRP with the UPS XML tracking tool. After the shipment has been authenticated, ups returns a BASE64 encoded string that I need to decode and sen...
I cannot get FindControl() to work in a page which uses a master page.  Can anybody point me in the right direction ? The following code works as expected if I do NOT use a master page: ...
When I drag a table from Server Explorer, Visual Studio only generate code for the InsertCommand. Why is it not creating for the rest (UpdateCommand, DeleteCommand) ?
I get a string value return from the server and want to display it on a list view, but when i use the code below, I get the vertical display, not the horizontal display as I expected. It sho...
How can I save the contents of a textbox to and image (jpg).
Hi, I need to write some data into an XML file. I am using C# and that should work with (.Net Compact Frame Work). My XML file almost looks like: <student>       <id>1001</id>       ...
Hi Experts, In my C# application I have created a database (Store.sdf) and then a Strongly Typed DataSet (Store.xsd). Everything is set up correctly and I can read information from the data...
Newbie to C# 2005, I have an error on code from a book and it won't compile. Line 31 gives the error, and it is the line that says: "protected override void Dispose(bool disposing)" ...
I am trying to create a symmetric gradient background for a panel - or any other paintable object. The following code works for the most part. However, as I change the form size, occasionally ...
Imagine you have running more instances of one program (can be more computers), that are using one MS SQL 2005 server for reading/writing data there. One spec. writing operation can take more...
I am attempting to modify the code found on: http://www.codeproject.com/KB/database/FinalCSVReader.aspx to me it looks like it should be possible to add a where clause to the select statemen...
A mysterious thing is happening when the users of an application I am developing runs under Windows XP with its appearance setting set to "Windows Classic Style".  The application loads okay, ...
I have an array of itemIDs:  5, 7, 8, 1, 2, 4, ... (itemID is indexed field in my table tblTest) I need to open DatarRader and read records in the given order. What is an efficient way to...
hi all, I have a TabControl in my form, when i am trying to set its TabControl_Leave() Event it doesn't work properly When I click a control in my ToolStrip it doesn't fire but it will fire ...
New to C# programming.  Need help to write a dll component for changing the database connection to a ODBC system data source name.  Using SQL Server 2005 and Visual Studio 2005 Thank you fo...
using Visual Studio 2005 C# I want to have a fie ( a text file ) embedded in my C# Project and want to be able to read and write to it at run time. additionally I DONT want the users of th...
I receive this error on a page with a button, and only a button and text. I have seen some articles on the internet, but don't really see a good answer. Security is important for my Internet a...
I don't know why my main form was disappeared after I start to run the project. I view the process by looking at Task Manager and find the program, but can't find the Form. File Program.cs ...
Basically, I am trying to check a field to determine if it is blank.  If it is, then I give it a null value if not then I capture the .value parameter for the field and add it to my paramaters...
I am trying to extract a cell from a row in a table and store it in a variable.  I thought I had defined everything properly but obviously I am missing something.  Can someone point out the ob...
I am trying to use a variable in my application.  I originally had the variable in a try block which was giving me the same error.  I removed it from the try block and that fixed one location ...
In C# I would like to format my text boxes to accept and display 2 digit numbers only. What is the best way to do this? These text boxes are on a Windows form.