CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: KevinNeave

Search: Search took 0.02 seconds.

  1. Re: ASCII Strings in Custom Resource Text File

    Thanks for the suggestions.

    I've managed to remove a number of the strings in the offending module that were declared, but not actually used (presumably had been used in old code that has...
  2. Re: ASCII Strings in Custom Resource Text File

    My application has...
    60 Forms
    50 or so code modules
    350 Class Modules

    Total of about 500,000 lines of code. Largest singl eclass module has 25000 lines of code.

    Several Large static arrays...
  3. Re: ASCII Strings in Custom Resource Text File

    More Details...

    I Currently have a code module modStringData.bas with somewhere around 3000 strings all declared ...

    Public Const atOn = "On"
    Public Const atOff = "Off"
    Public Const atEND =...
  4. ASCII Strings in Custom Resource Text File

    Hi,

    I'm maintaining some legacy VB 6 code that has a large number of strings DIMmed as Private Const.
    e.g

    Public Const atOn = "On"
    Public Const atOff = "Off"

    I'd like to save memory by...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured