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

Search:

Type: Posts; User: ecoder47

Search: Search took 0.05 seconds.

  1. Replies
    1
    Views
    562

    Events description panel

    When I am in the designer, over in the properties panel after I click on the events, there used to be a panel below that would give me descriptions of the events. For example when I click on...
  2. Change all fonts on an application at runtime

    When the program runs I want the text of all the controls for "label", "textbox" "richtextbox", to be set to a certain size, for example size "12". This would override all the text sizes that were...
  3. Replies
    1
    Views
    732

    Using a derived class

    I'm kind of new to C#. I want to use the class below that modifies ListView so that it doesn't flicker. Normally I would just drag over the listview control from the toolbox, edit the properties and...
  4. Textbox that behaves like browser text box

    I want a textbox that will function similar to a browser text box. When you first click on the url of the browser with your mouse it will select the entire url. When you continue clicking on the...
  5. Replies
    0
    Views
    546

    Parse rss feed

    I want to parse an rss feed and get everything between the tags <item></item> and have each <item>..</item> tag be an element in an array. What is the best way to do this?

    I have tried regex...
  6. Replies
    0
    Views
    475

    Programming RSS reader client

    I'm working on creating an RSS reader and I want each of the news items to be displayed in a similar way as to how mail is displayed in outlook express. When there is new mail it is bold, after it...
  7. Replies
    2
    Views
    1,643

    Access violation error from listview

    On double clicking a row in a listview I had the following code to make sure the right data was being selected.

    MessageBox.Show(listView1.Items[listView1.SelectedIndices[0]].Text);

    The...
  8. Replies
    1
    Views
    778

    Resizable panels

    I have a form with a richtext box and an webbrowser control side by side. The richtextbox is on the left, the webbrowser control is on the right. I want to be able to have the separator between the...
  9. Replies
    0
    Views
    2,076

    Error when using webbrowser control

    I have a webbrowser control, a text box, and a button. When I input "tm" in the text box and press the button, the webpage http://chart.finance.yahoo.com/c/5y/t/tm is supposed to load in the...
  10. Replies
    3
    Views
    1,041

    Re: get data from website

    What is the website url and the data that you want to get from it?
  11. Replies
    1
    Views
    600

    Save all control values

    I want to loop through all the control values in a program and save all their values in a text file. How would I do this?
  12. Replies
    1
    Views
    644

    Listview question

    I have a listview. When I double click an entry I want to be able to edit it whichever row or column it is located in. I know how to detect which row was double clicked, but how do I determined...
  13. Replies
    2
    Views
    3,182

    Finding distance between two cities

    I want to be able to get a rough distance estimate between two cities as well as finding out all the cities that are X miles within a certain city.

    I have a rough idea of how to do it using zip...
  14. Replies
    1
    Views
    770

    mciSendString question

    I made an mp3 player that plays mp3s using mciSendString. The issue I'm having is that the mciSendString doesn't seem to keep track of time correctly.

    I went to the 10 minute mark on the...
Results 1 to 14 of 14





Click Here to Expand Forum to Full Width

Featured