Monday, April 11, 2016

FASTEST VB.Net Twitter Login and Post Tweet

Thumbnail
VB.Net Twitter Login. Happy coding bro... ^_^ Public Class Form1     Dim load, login, logout, tweet, cektweet As Boolean     Dim iP As Integer = 0     Private WithEvents TmrCek As New Timer      Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load  ...
Farray Cool Social Media, Twitter, VB.Net
Monday, November 03, 2014

How To Insert Cells In An Excel File In VB.NET

Thumbnail
Hi, folow this step for insert or edit cells in excel. You must add reference Microsoft Excel 12.0 Object Library in you project. * Create a new project and add a button to the Form. * Select reference dialouge from Project menu. Insert Cells In An Excel File In VB.NET | gambar from images.google.co.id * Select...
Farray Cool Excel
Thursday, October 16, 2014

Add Items To Combobox From Database In Visual Basic 2010 (VB.Net 2010)

Thumbnail
This is tutorial how to add items to Combobox from Database in Visual Basic 2010 (VB.Net 2010). Easy way binding datasource to Combobox. SOURCE CODE Imports System.Data.SqlClient Public Class Form1     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click  ...
Farray Cool Combobox, Database, VB.Net
Sunday, August 05, 2012

VB.NET String ToLower()

ToLower() As String Returns a copy of this System.String converted to lowercase, using the casing rules of the current culture. Return Values : A System.String in lowercase. Ex : Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click  ...
Unknown VB.Net

VB.NET String ToUpper()

ToUpper() As String Returns a copy of this System.String converted to uppercase, using the casing rules of the current culture. Return Values : A System.String in uppercase. Ex : Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click  ...
Unknown VB.Net