About Us
This blog about free Visual Basic and HTML CSS Coding to help you. we have placed here free coding which you can use in your project and website.you can learn from here the complete visual basic C# HTML CSS etc.… Read more »
How To Redirect Page After Some Time In Javascript
For current page var timer= setTimeout(function() { window.location='http://google.com' },3000); For open in new tab var timer= setTimeout(function() { window.open('http://google.com'); },3000); .button { background-color: #4CAF50; … Read more »
Drop down Link Html Open In New Window
create analog clock in vb.net
Imports System.Drawing.Drawing2D Public Class Form1 Dim Minute1 As Bitmap Dim Second1 As Bitmap Dim HourP As Bitmap Dim Height1, Width1 As Integer Friend WithEvents PictureBox1 As New System.Windows.Forms.PictureBox Private S… Read more »
Datagridview Data Export to Excel In Vb.Net with Save File Dialog
Imports System.IO Imports Excel = Microsoft.Office.Interop.Excel Public Class Form1 Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load SaveFileDialog1.Filter = "Excel Documents|*.xlsx" … Read more »