Search results for query: *

  • Users: gazeranco
  • Content: Threads
  • Order by date
  1. G

    Question Count occurance of words in a .txt file

    Hey, I am new to programming and I have something I want to do which I think might be simple but I cannot figure it out, could someone point me in the direction of a useful example? So it should work something like this... Dim mywords(5) mywords(0) = hello mywords(1) = world mywords(2) = how...
  2. G

    try catch - error handling

    Hello all, my new rss reader program is very buggy contantly throwing errors etc Just wondering what is the best way of coding in my error handling, do i just work through and do it, or is there a way to make all my error handling be in a seperate file? :confused: Some examples of error...
  3. G

    Scrolling Text Problem

    Hello :) I have the following code to make a linklabel on my form scroll.. Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick If LinkLabelRss.Left <= (Me.Left - (2 * LinkLabelRss.Width)) Then LinkLabelRss.Left = Me.Width End If...
  4. G

    Why won't it work? (array resize)

    I have made code to assign the title of an xml page to an array like so:- If Not IsNothing(rssDetail) Then title = (rssDetail.InnerText) ReDim myarray(myitemint) myarray(myitemint) = (title) Else The code is in a for next loop so the integer myitemint is going up each time and so should be...
  5. G

    Dynamic Arrays

    Hello could someone provide me with a code example for the following... I want to create a dynamic array of type string and i want to tell it how big it will be using a variable(int) at runtime and then i want to add a list of strings to it by using a variable which will contain strings at...
  6. G

    xml items issue

    No one ever seems to go in the web section so i'll place this here aswell.. sorry :P http://www.vbdotnetforums.com/showthread.php?t=8105
  7. G

    Problems selecting rss items

    Hello all, I have made an RSS reader which puts the text from the current item into a linklabel and assigns the url to a variable of the linklabels click event... The problem i am having is this... My linklabel only displays one of the "title's" from the xml i want it to display them all in...
  8. G

    Text on a form help

    Hello, I asked a question about scrolling text but i placed it in the wrong forum, so here it is again :) How do i make the text of a label or a linklabel scroll accross the form? Could anyone provide a code example? Thanks! :o
  9. G

    Small RSS Reader App

    Scrolling text/hyperlinks? Hello :) I want to make an RSS Reader application, but i only want it to display the Title in a very small window, I want it to scroll the headers/titles from right to left and I also want the scrolling text to be clickable i.e take you to the URL scrolling...
Back
Top