March 21st, 2013 05:12 PM
How do you debug a single ASPX file?
I am somewhat new to ASPX files, but I am not new to C#.
I figured that all asp.net c# projects were run on the server as compiled code. And so there was...
November 23rd, 2012 07:29 PM
How do I get search engine results programatically? Some search engines use AJAX to display content and so the URL does not change. This makes it difficult to get result content from a search engine...
November 7th, 2012 02:50 AM
No, the issue is that the browser processes the html data for a bit after it gets a loaded message from the server. I wish I knew how to snag the html data during an idle time. Any ideas?
I have...
October 25th, 2012 08:59 AM
WebRequest and WebResponse has issues
I wrote a C# program that uses WebRequest and WebResponse to perform a simple web crawler. I discovered something about web sites. Web browsers such as IE...
August 22nd, 2012 08:48 PM
In C#, how do you output the contents of a Dictionary class?
Once you have loaded a Dictionary class with keys and values, how do I cycle through them and output the individual values in a foreach...
August 18th, 2012 06:19 PM
How To Modify An Element in the Dictionary Class?
=======================================
C# has this cool Dictionary class that you can use like a Hash Table. Is there a way of changing the...
August 16th, 2012 02:12 PM
Error 1 An object reference is required for the non-static field, method, or property 'ConsoleApplication_FileTest.Program.GetAverageSalary(string)' C:\Users\Dawn\documents\visual studio...
August 6th, 2012 12:05 PM
I have got the following in a header file for a class:
#include <vector>
#include <math.h>
In the class description, I have the following protected member:
vector<Point2D> samples;
...
August 2nd, 2012 11:06 AM
In a silverlight app, I have a BitmapImage defined as System.Windows.Media.Imaging.BitmapImage and it as a method called "SetSource" where I can set the source like this:
BitmapImage bitmap = new...
December 29th, 2011 10:31 PM
Help me Convert this WPF to Silverlight
I am interested in a Charles Petzold C# example that shows how to do a fisheye effect (...
October 19th, 2011 10:53 AM
How do I center a <div> vertically?
I have managed to horizontally align a Div object. Here is how I did it. I got the width and the height of the object I wanted to center (XAML CODE)
...
October 4th, 2011 06:02 AM
How do I add row data directly to a DataGrid Class?
I am using a free opensource class from a company that I will not name (even if it is RadiantQ) that I like a lot. It has this cool...
October 4th, 2011 06:01 AM
How do I make a more sophisticated "Roller"?
I am looking for a good example of a percentage roller in Silverlight. (someone told me that they were called rollers)
The little default...
October 3rd, 2011 03:28 AM
How do you get an Idle Message in a UserControl class in C# / Silverlight?
Back when I was programming in C++ and MFC there was an idle message for user intervace classes that one could overwrite...
September 23rd, 2011 09:15 PM
How do I update Sample Data in C#?
I have this sample data. Right now it is defined in a seperate C# file like this:
public class SampleData
{
public static...
September 11th, 2011 09:22 PM
TextBlock wrapping of text in Silverlight XAML file.
I have a wierd and annoying problem. I have a textblock that is inside a stackpanel that is Oriented horizontal. It would be nice if I could...
August 9th, 2011 11:20 AM
How do I add an image to a dataset?
This is a C#/Silverlight question although I am trying to emulate what I see in Excel.
In the screen snapsot below, there is an excel file that has little...
August 1st, 2011 09:22 PM
How do you dynamically assign a datagrid's headers in c#?
Consider the following XAML:
<data:DataGrid x:Name="dataGrid" AutoGenerateColumns="False" Margin="1,1,1,1" >
...
August 1st, 2011 01:18 PM
Is there something like an "OnPaint" method in C# and Silverlight?
Back when I was writing C++, I found that it was easy to use the OnPaint event to customize the display of a class to the screen?...