Hi Long Huynh

Maybe a class approach may work

CCategory
properties
 english as string
 yourLanguage as string

make a constructor that has two arguments
sub constructor( englsh as string, yourLanguage as string )
 me.english = english
 me.yourLanguage = yourLanguage
end sub

make an array of CCategory or use a dictionary

dim dictionary as new Dictionary
dictionary.value( dictionary.count ) = new CCategory( "Heart", "心" )
dictionary.value( dictionary.count ) = new CCategory( "Lungs", "肺" )

Hope that helps

Keith

On 5/19/06, Long Huynh <[EMAIL PROTECTED]> wrote:
are the following codes correct?

  Dim sCategory() As String

  sCategory(0) = Array( "heart", "心" )
  sCategory(1) = Array( "Lungs", "肺" )
  sCategory(2) = Array( "Stomach", "胃" )
  sCategory(3) = Array( "Kidney", "肾" )
  sCategory(4) = Array( "Liver", "肝" )
  sCategory(5) = Array( "Gall Bladder", "胆" )

_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>



--
Keith Hutchison
http://balance-infosystems.com http://realopen.org
http://www.kasamba.com/Keith-Hutchison
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to