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
Z

ZappaDog

@ZappaDog
About
Posts
4
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Enable usb ports
    Z ZappaDog

    It doesn't take a program to do that. The registry value

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\
    Services\UsbStor

    stores that function. Another approach is to prevent rights to \Inf\Usbstor.pnf and \Inf\Usbstor.inf files.

    Visual Basic

  • How to Save/Load Files like Pictures in/from Database
    Z ZappaDog

    'Save Dim ms As New MemoryStream PictureBox1.Image.Save(ms, PictureBox1.Image.RawFormat) Dim strType As String = ToolStripStatusLabel1.Text.Substring(ToolStripStatusLabel1.Text.LastIndexOf("."), 4) Dim arrImage() As Byte = ms.GetBuffer ms.Close() Dim strFileName As String = IO.Path.GetFileName(ToolStripStatusLabel1.Text) Dim connectionString As String = "Data Source=MIKEY-HP\jtsql;Initial Catalog=Images;Integrated Security=True" Dim cnn As New SqlConnection(connectionString) Dim DateFiled As Date = FormatDateTime(Now(), DateFormat.ShortDate) Dim strSQL As String = _ "INSERT INTO ImageTab (ImageData,Type,ImgFileName,DateFiled)" & _ "VALUES (@ImageData,@Type,@Filename,'" & DateFiled & "')" Dim cmd As New SqlCommand(strSQL, cnn) With cmd .Parameters.Add(New SqlParameter("@Filename", SqlDbType.VarChar, 50)).Value = strFileName .Parameters.Add(New SqlParameter("@Type", SqlDbType.VarChar, 10)).Value = strType .Parameters.Add(New SqlParameter("@ImageData", SqlDbType.Image)).Value = arrImage End With Try cnn.Open() cmd.ExecuteNonQuery() cnn.Close() Catch ex As Exception MsgBox(ex.ToString) End Try 'Load Try Me.ImageTabTableAdapter.FillBy(Me.ImagesDataSet.ImageTab) Catch ex As System.Exception System.Windows.Forms.MessageBox.Show(ex.Message) End Try

    .NET (Core and Framework) database tutorial

  • help for creating omr software
    Z ZappaDog

    An OMR application will require a collection of image zones which you compare with supplied images to determine if an acceptable amount of pixels have been provided in any zone to create a 'hit'. There is usually a user interface to address values in a questionable range. Values that make no sense, such as two marks in a row requiring only one mark, must also be resolved by a user, or predefined rule.

    .NET (Core and Framework) csharp help question

  • Need help on porting from VB application to Vb.Net
    Z ZappaDog
    1. Open VS 2008 and load the project. 2) Right click the project name in solution explorer and select properties. 3) Select the Compile tab and click the Advanced Compiler Settings 4) Check the target Framework version 5) Install that Framework version on target machine 6) Build project and copy EXE file to target machine
    Visual Basic csharp database visual-studio tools
  • Login

  • Don't have an account? Register

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