Search results for query: *

  • Users: shawnplr
  • Content: Threads
  • Order by date
  1. S

    Draw text to image

    I'm making a front end to dvdauthor. I have a picturebox which holds the menu background. In order to draw a textbutton on the background image I store the image in a hidden picturebox. So the text doesn't get drawn to the visible background. Code: Dim ctl As Control For Each c...
  2. S

    If AndAlso ignored

    I am getting an error: Conversion from string "" to type 'Double' is not valid. If any of my textboxes are blank even though I have used an if AndAlso statement. Private Sub tbWidth_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles tbWidth.TextChanged Dim wMath...
  3. S

    Question Control Panel as Admin

    When I use the following code with control or explorer nothing happens but it works with notepad and the like. Private pw As New System.Security.SecureString Dim cp As New Process With cp.StartInfo .FileName = "control" .UseShellExecute =...
  4. S

    Question ffmpeg progress

    I am using a backgroundworker to start ffmpeg and trying to use a progressbar. ProgressBar1.Value = e.ProgressPercentage does not seem to work probably because the way ffmpeg uses standard error to report progress. I think i could use the output text to do the trick. the output Seems stream 0...
  5. S

    Question Dynamic treeview node breaks xml.writer

    After adding a node dynamically to my treeview I can no longer write xml. The code I use to add the node is; Public Sub addVideo() Dim openFileDialog1 As New OpenFileDialog openFileDialog1.Filter = "Vidoe Files...
  6. S

    StartInfo.Arguments

    I can't seem to get this right even though it is probably quite simple. I have swf.StartInfo.Arguments = "-swf debug.swf -main -header 320:240:12 debug.as" Which works fine. But when I try to get info from a TextBox "-swf debug.swf -main -header" & txtWidth.Text & ":" & txtWidth.Text & ":"...
Back
Top