Search results for query: *

  1. S

    Question Open File from MySQL

    Hi, i am a newbie to programming and i have google long time solution for my program. I want to upload files to MYSQL database, then open the file by its default application (pdf with adobe reader, doc with MS word etc etc.. ) but i still have an error, please help Upload: Private Sub...
  2. S

    Picture Array

    Hi jmcilhinney, thanks again for your reply. I had change the path before entering the for loop so it wont loop for 12 times. Is this way more ideal? Dim aPictureBoxes() = {picWallpaper0, picWallpaper1, picWallpaper2, picWallpaper3, picWallpaper4, picWallpaper5, picWallpaper6, picWallpaper7...
  3. S

    MDI Parent

    It' s better to use MDI parent MDI so that the child form will open under only 1 parent window. To use this feature, in your Main Form properties IsMdiContainer set to True and inside code, I assume that your child form is frmChild frmChild.MdiParent = Me
  4. S

    Picture Array

    Dim PictureBoxes() = {PictureBox0, PictureBox1, PictureBox2, PictureBox3, PictureBox4, PictureBox5, PictureBox6, PictureBox7, PictureBox8, PictureBox9, PictureBox10, PictureBox11} Dim i As Integer = 0 For i = 0 To 11 Dim List() As String =...
  5. S

    Picture Array

    Hi jmcilhinney, Thank for you reply . I had change my code to Dim PictureBoxes() = {PictureBox0, PictureBox1, PictureBox2, PictureBox3, PictureBox4, PictureBox5, PictureBox6, PictureBox7, PictureBox8, PictureBox9, PictureBox10, PictureBox11} Dim PictureFiles(11) As Image Dim i...
  6. S

    Picture Array

    Hi, I am new to VB.NET and i have a question about image array. I have a folder that contain many photos(sand.jpg,sea.jpg, flower.jpg....etc etc) and i only need to load the first 12 photo from the folder. Here is my code: Dim PictureBoxes() = {PictureBox0, PictureBox1, PictureBox2...
Back
Top