Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

sakurahito

@sakurahito
About
Posts
2
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Image Store in MySQL db
    S sakurahito

    in vb window

    Private Sub btnBrowse_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnBrowse.Click
    Dim OpenFileDialog1 As New OpenFileDialog
    With OpenFileDialog1
    .CheckFileExists = True
    .ShowReadOnly = False
    .Filter = "All Files|*.*|Bitmap Files (*)|*.bmp;*.gif;*.jpg"
    .FilterIndex = 2
    If .ShowDialog = Windows.Forms.DialogResult.OK Then
    ' Load the specified file into a PictureBox control.
    PhotoPictureBox.Image = Image.FromFile(.FileName)
    TextBox1.Text = OpenFileDialog1.FileName.ToString()
    End If
    End With
    End Sub

    in C# window

    private void btnBrowse_Click(object sender, EventArgs e)
    {
    if (customeropen.ShowDialog() == System.Windows.Forms.DialogResult.OK)
    {
    txtCustomerPhoto.Text = customeropen.FileName.ToString();
    pccustomerphotosample.Image = Image.FromFile(customeropen.FileName);
    }
    }

    :)

    Java database mysql tutorial question

  • For Java Project
    S sakurahito

    I am studying java.I want to write java project. How to write.Please answer with answer complete sample project.

    Java java tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups