vote up 0 vote down star

How to declare variable containing character limiting to 1000 bytes in vb6

flag

14% accept rate
1000 bytes is example only.. I want a variable of charater type which can store upto certain no . of bytes only – Pradeep Aug 17 at 7:00
I don't think VB6 has a "char" variable type. Have a look here at the different types: en.wikiversity.org/wiki/Variables_and_Types_in_VB6/…. – Mr. Smith Aug 17 at 7:11
Can you clarify whether you mean bytes or characters? A VB6 character is two bytes. – MarkJ Aug 17 at 11:04

3 Answers

vote up 3 vote down

Here is the syntax for a fixed-length string of 500 characters, which is 1000 bytes. VB6 strings are Unicode (UTF-16) and therefore each character has two bytes. The value of a fixed-length string will always have 500 characters - trailing spaces will be added, or excess characters truncated.

Dim s As String * 500  ' 500 characters, 1000 bytes

I wonder whether you are dealing with binary data rather than text. The Byte data type is better for binary data.

Dim byt(1000) as Byte  ' an array of 1000 bytes
link|flag
vote up 7 vote down
Dim myString as String * 1000
link|flag
I had no idea... +1 – ChaosPandion Aug 17 at 15:29
vote up 0 vote down

This is a rough approximation. It assumes you are flexible with that 1000 byte limit.

Private mData As String
Public Property Let Data(value As String)

    If Len(value) <= 1000 Then
        mData = value
    Else
        'Do whatever '
    End If

End Property
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.