Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

(Page 14 of 133) 3985 Result(s) found 

 

Base Conversion module - A module to convert numbers between any bases
Total Hit (4002) «Code LangId=1»'----------------------------------------------------------------- ' Module: mBases ' (C) 2000 Trinet Ltd, http://www.trinet.co.uk ' Author: R. Deeming (richard@trinet.co.uk) ' ' Purpose: To provide simple conversion between different ' number ba ....Read More
Rating
Bin - Convert from decimal to binary
Total Hit (2700) «Code LangId=1»' convert from decimal to binary ' if you pass the Digits argument, the result is truncated ' to that number of digits ' Function Bin(ByVal value As Long, Optional digits As Long = -1) As String Dim result As String, exponent As Integer ' this is faster than creating t ....Read More
Rating
BinToDec - Convert from binary to decimal
Total Hit (4018) «Code LangId=1»' convert from binary to decimal ' Function BinToDec(value As String) As Long Dim result As Long, i As Integer, exponent As Integer For i = Len(value) To 1 Step -1 Select Case Asc(Mid$(value, i, 1)) Case 48 ' "0", do nothing Case 4 ....Read More
Rating
BitClear - Clear a bit in a value
Total Hit (2634) «Code LangId=1»Function BitClear(ByVal value As Long, ByVal bit As Long) As Long ' simply AND with the negation of the bit mask ' Range checking is performed in Power2() BitClear = (value And Not Power2(bit)) End Function ' Raise 2 to a power ' the exponent must be in the range [ ....Read More
Rating
BitCount - The number of "1" bits in a number
Total Hit (2627) «Code LangId=1» ' The number of 1's in a binary number ' ' This routine is based on the following property ' of binary numbers: n And (n-1) always clears the ' least significant "1" bit in the number Function BitCount (ByVal number As Long) As Integer Do While number number = ....Read More
Rating
BitSet - Set a bit in a number
Total Hit (2805) «Code LangId=1»' Set a bit in a value ' ' NOTE: requires Power2() Function BitSet(ByVal value As Long, ByVal bit As Long) As Long ' simply OR with the bit mask ' Range checking is performed in Power2() BitSet = (value Or Power2(bit)) End Function ' Raise 2 to a power ' the e ....Read More
Rating
BitTest - Test the value of a bit
Total Hit (3501) «Code LangId=1»' Test the value of a bit ' ' NOTE: requires Power2() Function BitTest(ByVal value As Long, ByVal bit As Long) As Boolean ' simply AND with the bit mask ' Range checking is performed in Power2() BitTest = (value And Power2(bit)) End Function ' Raise 2 to a po ....Read More
Rating
BitToggle - Invert a bit in a value
Total Hit (2873) «Code LangId=1»' Toggle a bit in a value ' ' NOTE: requires Power2() Function BitToggle(ByVal value As Long, ByVal bit As Long) As Long ' simply XOR with the negation of the bit mask ' Range checking is performed in Power2() BitToggle = (value Xor Power2(bit)) End Function ....Read More
Rating
CComplexNumber - A class for dealing with complex numbers
Total Hit (2673) «Code LangId=1»Option Explicit '------------------------------------------ ' A class for dealing with complex numbers '------------------------------------------ ' The main properties Public Real As Double Public Imaginary As Double ' Initialize this complex number ' (returns Me) Fu ....Read More
Rating
Ceiling - The integer equal or higher than a given value
Total Hit (2607) «Code LangId=1»' Returns the integer equal or higher than its argument Function Ceiling(Number As Double) As Long Ceiling = -Int(-Number) End Function «/Code»
Rating
CelsiusToFahrenheit, FahrenheitToCelsius - Convert temperature values
Total Hit (2683) «Code LangId=1»' Returns the integer equal or higher than its argument Function Ceiling(Number As Double) As Long Ceiling = -Int(-Number) End Function «/Code»
Rating
Combinations - The number of combinations of N objects in groups of N
Total Hit (2500) «Code LangId=1»' number of Combinations of N objects in groups of M ' ' Note: requires the FACTORIAL routine Function Combinations(ByVal Objects As Long, ByVal GroupSize As Long) As Double Combinations = (Factorial(Objects) / Factorial(Objects - GroupSize)) / _ Factorial(GroupSize ....Read More
Rating
Cot, Sec, Csc - Missing trig functions
Total Hit (3464) «Code LangId=1»' Cotangent of an angle Function Cot(radians As Double) As Double Cot = 1 / Tan(radians) End Function ' Secant of an angle Function Sec(radians As Double) As Double Sec = 1 / Cos(radians) End Function ' cosecant of an angle Function Csc(radians As Double) As ....Read More
Rating
Crc16 - Evaluate the 16-bit CRC of an array of bytes
Total Hit (4463) «Code LangId=1»Option Explicit ' Evalutate the 16-bit CRC (Cyclic Redundancy Checksum) of an array of bytes ' ' If you omit the second argument, the entire array is considered Function Crc16(cp() As Byte, Optional ByVal Size As Long = -1) As Long Dim i As Long Dim fcs As Long Static ....Read More
Rating
Dec2Any - Convert a decimal number to any other base
Total Hit (3161) «Code LangId=1»' convert a number to any base ' BASE can be in the range 2-36 Function Dec2Any(ByVal number As Long, ByVal base As Integer) As String Dim index As Long Dim digits As String Dim digitValue As Long ' check base If base < 2 Or base > 36 Then Err.Raise ....Read More
Rating
DecToFrac - Converts a decimal number into a fraction
Total Hit (1734) «Code LangId=1»' Converts a decimal value into fractional parts as integers ' (based on the concept of Continued Fractions) ' Examples of usage: ' Call DeclToFrac(0.125, a, b) ' 1 and 8 are returned in a & b ' Call DecToFrac(5/40, a, b) ' 1 and 8 are also returned ' Call DecToFrac(2/3 ....Read More
Rating
DegreesToRadians, RadiansToDegrees - Convert from radians to degrees and back
Total Hit (1683) «Code LangId=1»' convert from degrees to radians Function DegreesToRadians(ByVal degrees As Single) As Single DegreesToRadians = degrees / 57.29578 End Function ' convert from radians to degrees Function RadiansToDegrees(ByVal radians As Single) As Single RadiansToDegrees = radia ....Read More
Rating
Factorial - The factorial of a number
Total Hit (1666) «Code LangId=1»' The factorial of a number ' ' if NUMBER is negative or >170 it raises an ' "subscript out of range" error Function Factorial(ByVal number As Long) As Double Static result(170) As Double ' this routine is very fast because it ' caches all the possible resul ....Read More
Rating
Fract - The fractional portion of a number
Total Hit (1530) «Code LangId=1»' The fractional part of a floating-point number ' note that negative numbers return negative values Function Fract(number As Variant) As Variant Fract = number - Fix(number) End Function «/Code»
Rating
GCD - The Greatest Common Divisor of two integers
Total Hit (1633) «Code LangId=1»' the Greatest Common Divisor of two integers ' (it uses the Euclide's algorithm) ' if either argument is zero you get a "Division by Zero" error Function GCD(ByVal n1 As Long, ByVal n2 As Long) As Long Dim tmp As Long Do ' swap the items so that n1 >= n2 ....Read More
Rating
GetPrimeNumbers - Evaluate the first N prime numbers
Total Hit (1578) «Code LangId=1»' Returns an array with the first N prime numbers ' ' Note: you can easily convert this routine to VB4 and VB5 by ' returning the result array through an argument instead of ' the return value Function GetPrimeNumbers(numberOfPrimes As Long) As Long() Dim found As Long ....Read More
Rating
HiWord - The most significant word in a Long value
Total Hit (2146) «Code LangId=1» Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (dest As _ Any, source As Any, ByVal bytes As Long) ' Return the high word of a Long value. Function HiWord(ByVal value As Long) As Integer CopyMemory HiWord, ByVal VarPtr(value) + 2, 2 End Function ....Read More
Rating
IsPrime - Determine whether a number is prime
Total Hit (1579) «Code LangId=1» ' Return True if the number is prime Function IsPrime(ByVal number As Long) As Boolean ' manually test 2 and 3 If number > 3 Then If number Mod 2 = 0 Then Exit Function If number Mod 3 = 0 Then Exit Function End If ' we can now avoid to consi ....Read More
Rating
LCM - The Least Common Multiple of two integers
Total Hit (3292) «Code LangId=1»' the Least Common Multiple of two integers ' (it uses the Euclide's algorithm) ' if either argument is zero you get a "Division by Zero" error ' ' Note: if your app also includes the CGD() function, ' you can simplify the following code as follows: ' LCM = (n1 * n2) ....Read More
Rating
Log10 - Base-10 logarithm
Total Hit (1646) «Code LangId=1» ' Base 10 logarithm Function Log10(number As Double) As Double Log10 = Log(number) / 2.30258509299405 End Function «/Code»
Rating
LowWord - The least significant word of a Long value.
Total Hit (2094) «Code LangId=1»Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (dest As _ Any, source As Any, ByVal bytes As Long) ' Return the low word of a Long value Function LowWord(ByVal value As Long) As Integer CopyMemory LowWord, value, 2 End Function «/Code» ....Read More
Rating
MK? And CV? - Convert numbers to strings and back
Total Hit (3059) «Code LangId=1» ' This group of routines convert a numeric value into a string ' that contain the internal representation of the number. ' They can be useful when converting outdated QuickBasic programs, ' because that language supported these functions that were ' never ported to Visual Basic ....Read More
Rating
NormRand - Produce random numbers with normal distribution
Total Hit (2309) «Code LangId=1»' VBA's intrinsic Rnd function returns numbers evenly ' distributed between 0 and 1. Each number in that ' interval has equal probability of being returned ' for any given function call. ' This function NormRand returns a random number between ' -infinity and +infinity distib ....Read More
Rating
Permutations - Number of permutations of N objects in groups of M
Total Hit (1642) «Code LangId=1»' number of permutations of N objects in groups of M ' ' Note: requires the FACTORIAL routine Function Permutations(ByVal Objects As Long, ByVal GroupSize As Long) As Double Permutations = Factorial(Objects) / Factorial(Objects - GroupSize) End Function «/Code» ....Read More
Rating
Power2 - A power of 2
Total Hit (1737) «Code LangId=1» ' Raise 2 to a power ' the exponent must be in the range [0,31] Function Power2(ByVal exponent As Long) As Long Static res(0 To 31) As Long Dim i As Long ' rule out errors If exponent < 0 Or exponent > 31 Then Err.Raise 5 ' initialize the arr ....Read More
Rating


(Page 14 of 133) 3985 Result(s) found  1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 ...

Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.