Search results for query: *

  1. I

    Question MP3 to Wav converter

    I have been searching for a way to convert mp3 audio files to wav audio files with vb.net I see the Lame dll but I dont think this will work for converting mp3 to wav , only the other way around wav to mp3..... does anyone have an idea as to how this can be done or point me in the right...
  2. I

    Question need to get first line with the lottery numbers from html text

    *UPDATE* I removed the string.join and used dim NUMstr = WinningNumSmallString & WinningNumLargeString this works fine...... I wonder why string.join didnt work like I thought it would? InkedGFX
  3. I

    Question need to get first line with the lottery numbers from html text

    *UPDATE* it seems that the code is working and getting all the winning numbers ...the problem is with my Dim NUMstr As String = String.Join(WinningNumSmallString, WinningNumLargeString) seems this is not joinning the two strings InkedGFX
  4. I

    Question need to get first line with the lottery numbers from html text

    I am in need of some additional help with this Lottery Number Program...it seems that the Lottery Number Program was working fine until the lottery numbers have single digit numbers in the winning numbers drawing......the last few drawing only had double digit numbers...but last night , the...
  5. I

    Question need to get first line with the lottery numbers from html text

    ok...I see your point...I took out the un-needed variables and removed the for loop ....everything is working ....... thank you very much for all your help..... InkedGFX
  6. I

    Question need to get first line with the lottery numbers from html text

    ok..I think I am finally getting my head around this...I added a few things to the code that IanRyder provided me with...now I have the html being downloaded to a stream then the numbers are processed from the reader... then they are saved and the labels are loaded with the numbers...... here is...
  7. I

    Question need to get first line with the lottery numbers from html text

    yes...I see my mistake now...I didnt copy and paste the final solution...I always rewrite the example..so I can try to learn from it...... thank you for pointing that out for me... InkedGFX
  8. I

    Question need to get first line with the lottery numbers from html text

    here is the code I am using....the entire html source is downloaded then put into a rich text box....then the below code is fired in a button click event.... 'define the regular expressions to match date and numbers HTMLString = RichTextBox1.Text Dim Counter As Integer = 0...
  9. I

    Question need to get first line with the lottery numbers from html text

    thank you for clearing that up....I added a reference to the mscorlib.dll but still received the error....so I changed the line of code from "count" to "length"...fixed the error.....but the code still gets only 4 of the 6 numbers.......it gets the first date then 4 numbers........ not sure...
  10. I

    Question need to get first line with the lottery numbers from html text

    I get an error on this line "For DateStringCount As Integer = 1 To myDateSplit.Count - 1" error says "Count isnt a member of System.Array" not sure why....I have (I think) all the imports. Thanks For your Help InkedGFX
  11. I

    Question need to get first line with the lottery numbers from html text

    Thank You for the help.... I have a question .... what does the (1,1) mean in this code block ? InkedGFX
  12. I

    Question need to get first line with the lottery numbers from html text

    let me start out by apologizing...by no means did I try to wind you up...I know you are trying to help me out......I don't expect you to do the code for me .... I tried to post the html code earlier but there was to much to post , so I posted a link(which you could get to work). I will post...
  13. I

    Question need to get first line with the lottery numbers from html text

    How am I winding you up? and what is mosleading about what I posted......I asked if there is away to get the first line with the most recent date and numbers from the html source...... I have tried it ...like I said , the code you helped me with gets the first numbers and the last date.......if...
  14. I

    Question need to get first line with the lottery numbers from html text

    yes , that is the display , not the html...sorry about that....my 2nd post has the html code that i need to parse to get the date and numbers of the most recent lottery drawing.....the regex gets all the dates and numbers? correct? what i need is only the most recent drawing which will be the...
  15. I

    Question need to get first line with the lottery numbers from html text

    here is a sample of the html I need to parse ..the html is alot longer than this ..there is 20 pages worth of numbers in one html page , this is the first page.... thanks for your help. InkedGFX
  16. I

    Question need to get first line with the lottery numbers from html text

    Thank You for the help..... the numbers and dates are here http://www.flalottery.com/exptkt/l6.htm the list is to long to put in this post.....what I want is the most recent date and corresponding numbers...keep in mind these will change twice a week....but the most recent date and numers will...
  17. I

    Question need to get first line with the lottery numbers from html text

    thank you very much for your help....this code works but it gets the last date in the list and first line of numbers on the page.....I need to get the first date and the corresponding numbers to that date......the page I am trying to parse is the lottery numbers history page which has all the...
  18. I

    Question need to get first line with the lottery numbers from html text

    ok maybe you need more info....sorry about that.... this is what I need to parse I have tried to use Mid and if line.contains("=46") but nothing works...I know i'm doing it wrong....I need some help here.......also this date and numbers will change twice a week, but they will always be in the...
  19. I

    Question need to get first line with the lottery numbers from html text

    I am having a difficult time getting the most recent winning numbers from the lottery website....I have some code that will get the html from the site , the problem I am having is ....I dont know how or where to start to get the exact line of numbers I need...the line will change twice a...
  20. I

    Resolved Split() String code not working

    I got my code to work ......I also commented it out a little so I can tell whats going on. Dim SourceNumbers As String = GetLotterynumbers() ' this is the text doc on the website with the winning lottery numbers Dim num As String = Mid(SourceNumbers, 12) ' this is the line with...
Back
Top