User Profile

Collapse

Profile Sidebar

Collapse
leeogrady
leeogrady
Last Activity: Sep 8 '08, 05:00 AM
Joined: Jun 27 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • leeogrady
    started a topic Creating sound files

    Creating sound files

    Is it possible to create a sound file (ie wav/mp3 or similar) from within vb2005? I import data from a excell file, i would then like to make a series of sound files, 1st file = first line read out using speechlib,
    2nd file = 2nd line read out using speechlib... through the whold file

    Any advice would be much appriciated
    many thanks
    Lee
    See more | Go to post

  • leeogrady
    replied to drive letter
    I dont know how to change within vb, but it is possible to assign drive letters through windows.
    To do this (win xp):
    control Panel; Admin tools; Computer Management - Disk Management - Then right click, change drive letter/paths
    It is possible in 98, cant rem off hand but google will know!

    Hope this helps (well confirms its possible!)
    Lee
    See more | Go to post

    Leave a comment:


  • leeogrady
    replied to Button link problem
    im assuming the name of pageb is 'pageb',
    to do this the code wud be

    pageb.visible = true
    See more | Go to post

    Leave a comment:


  • to use the 'username' variable on the new page you need to access it by using $_POST['username']...
    See more | Go to post

    Leave a comment:


  • leeogrady
    replied to problem with image box
    Hi, i have just written your code into a test app, an it doesnt appear to 'flash' in theory, i guess it could be your computer running slow? as the image will disappear, then re-appear in the new position...
    Depending on what you are trying to do you could reduce the 'step' of moving (the imag1.left +50) to a smaller value an the timer tick, this may make the movement smoother and appear not to flash.. (just out of curiosity, may not have...
    See more | Go to post

    Leave a comment:


  • leeogrady
    replied to Regular expression Match :
    in PHP
    No i havent!?! thanks for that markusn00b, i will look in to them!

    Dam. Yes of course, explode() is what i was trying to think of but couldnt! strtok() was the only thing i could think of!
    See more | Go to post

    Leave a comment:


  • leeogrady
    replied to problem with image box
    More information would be helpful to assist you, the section of the code maybe?
    All i can assume from what you have posted is that the image box is flashing as the timer ticks, this would be normal as it is redrawing itself... If you give me an idea of what you are trying to do, and or a code segment, i may be able to assist further..

    Lee
    See more | Go to post

    Leave a comment:


  • leeogrady
    replied to Regular expression Match :
    in PHP
    I am still not sure what preg_match is, but i think there is a better way...
    I would use strtok() a built in function to PHP
    the code is something like:
    Code:
    $delims = "/(.*)$/";
    $hostname = "mg-st-005.xyz.pqr.dyd";
    
    $word = strtok($hostname, $delims);
    if($word == "mg-st-005") {
      'IT IS A MATCH!
    }
    I hope this helps
    Lee
    See more | Go to post

    Leave a comment:


  • leeogrady
    replied to Regular expression Match :
    in PHP
    what is 'preg_match' ie what is the code and its purpose?
    are you just after code that will retrieve the string information before the first '.'?
    See more | Go to post

    Leave a comment:


  • leeogrady
    started a topic GPS/Routing /Mapping problem

    GPS/Routing /Mapping problem

    Hi all,
    I am trying (i know this is going to be very complex, but looking for somewhere to start) an there appears to be nothing similar on any forum; many hours of google'ing!

    I have written a program for a distrubution job, my program loads in data from an excell spreadsheet (this is how i get given the data) it contains 100-300 addresses.
    The program then reads the address to me (through the speech lib), an plots...
    See more | Go to post

  • leeogrady
    replied to Getting a File Path
    Basically the following, however this does not account for erronus data etc..

    Code:
        Private Sub Browse_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Browse.Click
            If OpenFileDialog1.ShowDialog() = Windows.Forms.DialogResult.OK Then
                FilePath.Text = OpenFileDialog1.FileName.ToString()
            End If
        End Sub
    Above code is assuming;
    • the button to
    ...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...