CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Complete

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    502

    How do you debug a single ASPX file?

    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...
  2. How do I get search engine results programatically?

    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...
  3. Replies
    2
    Views
    527

    Re: WebRequest and WebResponse has issues

    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...
  4. Replies
    2
    Views
    527

    WebRequest and WebResponse has issues

    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...
  5. In C#, how do you output the contents of a Dictionary class?

    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...
  6. How To Modify An Element in the Dictionary Class?

    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...
  7. Error 1 An object reference is required for the non-static field, method, or property

    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...
  8. Thread: vectors

    by Complete
    Replies
    3
    Views
    413

    vectors

    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;
    ...
  9. Replies
    0
    Views
    623

    how do I load a bitmap in WPF?

    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...
  10. I am trying to go from 32 bit Vista to 64 bit Windows 7.

    I am trying to go from 32 bit Vista to 64 bit Windows 7.

    The 32 bit Vista was installed by mistake. My system can handle a 64 bit OS. Now I have finally found the time to upgrade. But the 64...
  11. How do you find missling links in a web site using Visual Studio?

    How do you find missling links in a web site using Visual Studio?

    I am studying a web site that caught my eye by making a test site privately. Since the original html and CSS and JavaScript code...
  12. Replies
    1
    Views
    1,379

    Help me Convert this WPF to Silverlight

    Help me Convert this WPF to Silverlight

    I am interested in a Charles Petzold C# example that shows how to do a fisheye effect (...
  13. Replies
    0
    Views
    1,024

    How do I center a vertically?

    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)

    ...
  14. How do I add row data directly to a DataGrid Class?

    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...
  15. How do I make a more sophisticated "Roller"?

    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...
  16. How do you get an Idle Message in a UserControl class in C# / Silverlight?

    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...
  17. Replies
    1
    Views
    1,552

    How do I update Sample Data in C#?

    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...
  18. TextBlock wrapping of text in Silverlight XAML file.

    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...
  19. Replies
    0
    Views
    1,868

    How do I add an image to a dataset?

    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...
  20. How do you dynamically assign a datagrid's headers in c#?

    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" >
    ...
  21. Is there something like an "OnPaint" method in C# and Silverlight?

    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?...
  22. How do I handle a requirement to put a magnifying glass feature onto my Silverlight a

    How do I handle a requirement to put a magnifying glass feature onto my Silverlight app?

    It is not as easy as one might think.

    The previous programmer did it and thought it looked cool.

    It...
  23. Replies
    1
    Views
    1,414

    Re: How do you span columns in C#?

    Grid1.Children.Add(UserControl01);

    Grid.SetColumnSpan(UserControl01, 3);
  24. Replies
    1
    Views
    1,414

    How do you span columns in C#?

    How do you span columns in C#?
    In silverlight, suppose you have a grid, and this grid is in 3 columns.
    and you want to add a UserControl to this grid but you want it to span all three
    columns. ...
  25. Replies
    0
    Views
    1,001

    icon size and silverlight app

    A tester was having a look at my silverlight app and his results were nothing like I expected. After some discussion I found out that the difference stemmed from his setting his operating system to...
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4



HTML5 Development Center

Click Here to Expand Forum to Full Width