Skip to content

Instantly share code, notes, and snippets.

View Nelson-Chinedu's full-sized avatar
🚀

NelsonDev Nelson-Chinedu

🚀
View GitHub Profile
@Nelson-Chinedu
Nelson-Chinedu / index.html
Created January 17, 2018 00:08
landing page
<!DOCTYPE html>
<html>
<head>
<title>Landing Page</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
body{
margin:0px;
padding: 0px;
@Nelson-Chinedu
Nelson-Chinedu / vb.net 2010
Last active May 22, 2017 19:11
i'm having a problem on how to retrieve saved picture from mysql db to picture box and datagridview using vb.net 2010
Imports MySql.Data.MySqlClient
Imports System.IO
Imports System.Drawing
Public Class children
Dim conString As String = "server=localhost;database=foursquaredb;uid=root;password=;"
Dim con As New MySqlConnection(conString)
Dim cmd As MySqlCommand
Dim adapter As MySqlDataAdapter
Dim dt As New DataTable()