Visual Basic Code , VB.NET Code
Find Code:
  All
  VB.NET
  ASP.NET
  C#
  VB Classic
  ASP Classic
  Snippets
  Popular
  Submit Code
  Forums
  Articles
  Tips
  Links
  Books
  Contest
  Link to us
 Home >> Code Snippets

Math & Physics Functions ModuleVersion: VB6
Author: Johan BadenhorstSubmitted: 4/18/2005Views: 23053
Math & Physics Functions Module, great reference if you want to develop a 2D game.

Find Duplicate Values in Excel Version: VB6
Author: Kishor RautSubmitted: 3/23/2005Views: 29723
'Insert Module Excel's Visual basic Editior, and copy the code and execute macro name FindDuplicate. What is Find Duplicate ? Tips This small macro written by me helps you to find duplicate values in a specified column Duplicate values will be h ...more>>

Decimal ControlVersion: VB6
Author: Muhammad Imran VohraSubmitted: 3/13/2005Views: 10125
This code is very usefull for the programers who actually control decimal on Textbox... Example Text1_keypress(keyascii as integer) keyascii = deccontrol(keyascii, text1, 2)

Disables or enables TextboxVersion: VB6
Author: Muhammad Imran VohraSubmitted: 3/13/2005Views: 10964
This is very usefull for programers to disable or enables control (textbox, label datepicker or much more) Text1_keypress(keyascii as integer) keyascii = deccontrol(keyascii, text1, 2)

Decimal control in textboxVersion: VB6
Author: Muhammad Imran VohraSubmitted: 3/5/2005Views: 24435
This code is used to control Decimal places in textbox. This is very usefull to all VB Programers. This code is placed in module.. Example Private Sub Text1_KeyPress(KeyAscii As Integer) KeyAscii = DecControl(KeyAscii, Text1.Text, 2) End Sub

OpenFileVersion: VB6
Author: DexterSubmitted: 2/17/2005Views: 41795
The OpenFile function creates, opens, reopens, or deletes a file.

AutoXP StyleVersion: VB6
Author: Steve HuntSubmitted: 2/16/2005Views: 16290
We have all seen how to make our VB6 applications use the XP style in place on our PC's, by using a Mainfest File. Add this code to your main form and it will not only use XP styles, but if the Manifest File is missing, it will be created.

Encryption & Unencrytion FuntionVersion: VB5, VB6
Author: MandiSubmitted: 2/14/2005Views: 18339
You may use this sample routine to encrypt and unencrypt a string.

How to hide controls using VBScriptVersion: ASP
Author: Syed Irtaza AliSubmitted: 2/14/2005Views: 19416
You could use tags to hide controls within your ASP page by using VBScript.

Using Reflection.Assembly to Load FormsVersion: VB.NET 2003
Author: Syed Irtaza AliSubmitted: 2/14/2005Views: 26924
=============================================== This code sample is going to make your day. The scenario where this code could be quite helpful is where you are fetching a form name from the database and would like to open that form by passing the name ...more>>

<< Previous  Page 25 of  67  Next >>

Go to page: 25  26  27  28  29  30  ...