Web hosting bandwidth - A String converted according to conversion. Description Performs

A String converted according to conversion. Description Performs special conversions on a string Rules at a Glance The following intrinsic conversion constants specify the type of conversion to perform: Constant Converts… VbStrConv.UpperCase The entire string to uppercase. VbStrConv.LowerCase The entire string to lowercase. VbStrConv.ProperCase The first letter of every word in str to an uppercase character. VbStrConv.Wide Narrow (single-byte) characters in str to wide (doublebyte) characters. VbStrConv.Narrow Wide (double-byte) characters in str to narrow (singlebyte) characters. VbStrConv.Katakana Hiragana characters in str to Katakana characters. VbStrConv.Hiragana Katakana characters in str to Hiragana characters. VbStrConv.LinguisticCasing Uses linguistic rules for casing. Can be used only with UpperCase and LowerCase. VbStrConv.None Performs no conversion on str. VbStrConv.SimplifiedChinese Traditional Chinese characters in str to Simplified Chinese. VbStrConv.TraditionalChinese Simplified Chinese characters in str to Traditional Chinese. You can combine some of these constants by adding them together or using a logical OR. For example: VbStrConv.UpperCase + VbStrConv.Wide The only restriction is that the constants must be mutually exclusive. For example, specifying the value: VbStrConv.UpperCase Or VbStrConv.ProperCase ‘ Error will produce an error. VbStrConv.Katakana and VbStrConv.Hiragana only apply to locales in Japanese. Use of these constants on systems using other locales generates runtime error 5, “Invalid procedure call or argument.” VbStrConv.Wide and VbStrConv.Narrow only apply to locales in the Far East. Use of these constants on systems using other locales will generate a runtime error. When determining the start of a new word to convert to proper case, StrConv recognizes the following characters as word separators: o Null Chr$(0) o Horizontal Tab Chr$(9) o Line-feed Chr$(10) o Vertical Tab Chr$(11) o Form Feed Chr$(12)
Note: If you are looking for good and quality webspace to host and run your java application check professional java hosting services

Comments are closed.