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 3 of 3) 84 Result(s) found 

 

Split2 - A Split variant that parses multiple lines of text
Total Hit (1707) «Code LangId=1» ' A Split variant that parses a string that contains ' row and column separators, and returns a 2-dimensional array ' ' the result String array has a number of columns equal ' to the highest number of fields in individual text lines Function Split2(ByVal Text As String, Opti ....Read More
Rating
SplitMultiSeparators - Split variation that works with multiple separators
Total Hit (1905) «Code LangId=1»' a variation of the Split function that works with more than one separators ' note that separators can consists of 2 or more chars ' Example: ' Dim res() As String ' res() = SplitMultiSeparators("one,two(three four)five", " ", ",", "(", ")") Function SplitMultiSeparator ....Read More
Rating
SplitQuoted - A split variant that deals correctly with quoted elements
Total Hit (1780) «Code LangId=1» ' split a string, dealing correctly with quoted items ' ' TEXT is the string to be split ' SEPARATOR is the separator char (default is comma) ' QUOTES is the character used to quote strings (default is """", ' the double quote) ' you can also use a character pair (eg "{}" ....Read More
Rating
SplitTbl - Split a string with multiple delimiters
Total Hit (1845) «Code LangId=1»' A variant of the Split function, that offers the following improvements ' You can pass a list of valid delimiters to the second argument ' (however, only single-char delimiters are accepted) ' Differently from the regular Split function, consecutive occurrences ' of del ....Read More
Rating
SplitWithQualifiers - An improved version of the Split function
Total Hit (2207) «Code LangId=1»' A variant of the Split function, that offers the following improvements ' You can pass text qualifier as the third argument and optionally specify ' to treat consecutive occurrences of delimiters as one ' For example, the following source text contains comma inside one of ....Read More
Rating
StripControlChars - Delete control characters in a string
Total Hit (1789) «Code LangId=1» ' Strip all control characters (ASCII code < 32) ' ' If the second argument is True or omitted, ' CR-LF pairs are preserved Function StripControlChars(source As String, Optional KeepCRLF As Boolean = _ True) As String Dim index As Long Dim bytes() As Byte ....Read More
Rating
StripExtendedASCII - Delete extended ASCII characters in a string
Total Hit (2597) «Code LangId=1» ' Strip all extended ASCII characters ' (that is, all characters whose ASCII code is > 127) ' Function StripExtendedASCII(source As String) As String Dim index As Long Dim bytes() As Byte ' the fastest way to process this string ' is copy it into an arr ....Read More
Rating
StrReverse - A replacement for the VB6's StrReverse function under VB4 and VB5
Total Hit (1417) «Code LangId=1»' A replacement for the StrReverse function for VB4 and VB5 Function StrReverse(ByVal Text As String) As String Dim length As Long, index As Long length = Len(Text) StrReverse = Space$(length) For index = 1 To length Mid$(StrReverse, length + 1 - ....Read More
Rating
StrReverse - A replacement for the VB6's StrReverse function under VB4 and VB5
Total Hit (1529) «Code LangId=1»' A replacement for the StrReverse function for VB4 and VB5 Function StrReverse(ByVal Text As String) As String Dim length As Long, index As Long length = Len(Text) StrReverse = Space$(length) For index = 1 To length Mid$(StrReverse, length + 1 - ....Read More
Rating
UniqueWords - Extract all individual words in a string
Total Hit (1693) «Code LangId=1» ' build a list of all the individual words in a string ' ' returns a collection that contains all the unique words. ' The key for each item is the word itself ' so you can easily use the result collection to both ' enumerate the words and test whether a given word appears ' ....Read More
Rating
Concatenate an array of strings with commas and a final "and", or other separators
Total Hit (1557) «Code LangId=1»' Concatenate an array of strings with commas and a final "and", ' or other separators ' ' Example: ' Debug.WriteLine("Choose one from " & CreateStringList(New String() {"item1", ' "item2", "item3"})) ' ' => Choose one from item1, item2 and item3 Function CreateStringL ....Read More
Rating
StringBuilder Class. Very efficient way to append string
Total Hit (2918)
Rating
Load string to byte array with very simple way without any API.
Total Hit (2220)
Rating
Remove Extra Spaces in between words
Total Hit (1572)
Rating
Encrypt / Decrypt Password
Total Hit (1454)
Rating
Floating Point Numbers Validation
Total Hit (1981) «Code LangId=1»Private Sub Form_Load() Text1.Text = Empty End Sub ' USAGE 'Create a form a text box Private Sub Text1_KeyPress(KeyAscii As Integer) ' Precision is 2 in this case ' Send the Precision Value same in both the Functions Call ValidateNum(Text1, 2, KeyAscii) End ....Read More
Rating
Improve String Concatenation Performance
Total Hit (2928)
Rating
How to use FormatMessage API to format string with placeholder (para with %)
Total Hit (5316) FormatMessage is a very powerful API. In this article we will explore possible use of FormatMessage API. Some possible use of FormatMessage api is «UL»«LI»Getting API error description from Error Code «LI»Reading Message String from Resource of DLL or Exe «LI»Replacing placeholders in a string w ....Read More
Rating
Working with string APIs
Total Hit (2359) «code LangId=1»Private Declare Function lstrcat Lib "kernel32" Alias "lstrcatA" ( _ ByVal lpString1 As String, _ ByVal lpString2 As String) As Long Private Declare Function lstrcmp Lib "kernel32" Alias "lstrcmpA" ( _ ByVal lpString1 As String, _ ByVal lpString2 ....Read More
Rating
How to convert all accent char to normal char (Only for win2k)?
Total Hit (2290) This example will show you how to convert all accent characters to normal character. «b»Step-By-Step Example«/b» - Create a standard exe project - Add the following code in form1 «code LangId=1»Private Declare Function FoldString _ Lib "kernel32" Alias "FoldStringA" ( _ ByVal dwMapFlags ....Read More
Rating
How to sort string Array using CompareString API
Total Hit (3064) CompareString compares two strings and determines which one would come first in an alphabetic sort. Although this function can use a number of different comparisons, by default it conducts a case-sensitive word sort. In a word sort, all symbols except hyphens and apostrophes come before the letter " ....Read More
Rating
How to format miliseconds into hour, minute and seconds using StrFromTimeInterval API
Total Hit (2329) If you're working with VB built-in date/time functions, you can use VB Format function to convert Date/Time to any format you need. But API functions often return time in milliseconds. See how to convert it in readable format: «code LangId=1»Private Declare Function StrFromTimeInterval Lib "shlw ....Read More
Rating
How to format file/folder size into KB, MB or GB using StrFormatByteSize API
Total Hit (2637) Many functions (VB and API) return file/folder/drive size in bytes. To show this size user-friendly, you need to format it in KB, MB or GB. It's easy to do this with a simple math: 1KB = 1024 B, 1MB = 1024 KB etc. and many apps I've seen have a special function to perform this task. But there is a b ....Read More
Rating
This is a link to a different site StringBuilder Class for VB
Total Hit (1779) If you need to build a string by adding lots of pieces together, VB's string handling is slow because a new string is created in memory every time a new piece is added. This article presents a class which allocates a string chunk and then uses memory copy methods to manipulate the data within the sa ....Read More
Rating


(Page 3 of 3) 84 Result(s) found  1 2 3

Recommanded Links

 

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

© 2008 BinaryWorld LLC. All rights reserved.