Search results

  1. L

    How to set focus on dynamically created controls in VB.Net?

    I have a program where I dynamically create some Textboxes within a Panel on my form using this code Panel1.Controls.AddRange(New System.Windows.Forms.Control() {TextBoxes(num - 1)}) These textboxes are automatically labeled Layer1, Layer2 etc etc.. Everything works fine. I also have a...
  2. L

    how in VB.NET to convert milliseconds to hh:mm:ss format?

    Hi all, I am working on a program with a VLC (video player) activex component in it. The activex control can return the length of a video file in milliseconds only (ie 5423). Using simple math I can convert those milliseconds into this format h:m:s. so for example 0:3:22 What I want to do is...
Back
Top