vote up 0 vote down star

In my VB application,I am copying huge amount of data using VB string? This results in performance issue. What shoul I use in place of VB string to improve performance?

flag
VB 6.0 or VB.NET? – Mitch Wheat Jun 18 at 11:25

5 Answers

vote up 2 vote down

Try to make sure you are always passing ByRef wherever possible (in VB6). In VB.Net this is not an issue. Also, maybe preallocate your strings. Analysis and a better description of your programming task can help provide a better answer.

link|flag
vote up 2 vote down

This two part article is good source of information for VB6. Some tips mentioned there are:

  • Use $ version of string functions (i.e. Replace$ instead of Replace).
  • Use LenB() to check if string is empty (or not).
  • Use vbNullString constant instead of "".
link|flag
Thanks,I already implemented this – Pradeep Jun 18 at 11:49
vote up 0 vote down

One way to solve this is to pre-allocate a byte/char array that is big enough to hold all your concatenated strings.

If you are using VB.NET, then there is the StringBuilder class.

link|flag
Size is not predefined – Pradeep Jun 18 at 11:26
vote up 0 vote down

With VB 6 maybe this can help you out.

link|flag
vote up 0 vote down

Did you try using a StringBuilder from .NET? It is marked as "COM Visible", which means you should be able to use it from VB 6.

link|flag

Your Answer

Get an OpenID
or

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