vbc compilation fails when using Hashtable

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default vbc compilation fails when using Hashtable

    When I try to compile vb.net code using the command line interpreter,
    it does not recognize Hashtables. Any resolution to this?

    vbc Utilities.vb
    /t:library
    /imports:Microsoft.VisualBasic
    /r:System.dll,System.web.dll,System.xml.dll
    /Utilities.dll

    error BC30002: Type 'Hashtable' is not defined.

    Private ht As Hashtable = New Hashtable()

    Even though vb.net aspx file Imports the following namespaces:

    Imports System
    Imports System.Web
    Imports System.Xml
    Imports System.Net
    Imports System.Collections.Specialized

    Thanks,
    Jon
    Jonathan Wolfson Guest

  2. Similar Questions and Discussions

    1. #39045 [NEW]: Compilation of php_imap.c fails
      From: bnies at bluewin dot ch Operating system: SunOS adnpool02 5.9 Generic_1122 PHP version: 5.1.6 PHP Bug Type: Compile...
    2. #39045 [Opn->Bgs]: Compilation of php_imap.c fails
      ID: 39045 Updated by: tony2001@php.net Reported By: bnies at bluewin dot ch -Status: Open +Status: ...
    3. #24999 [Opn->Csd]: Compilation fails
      ID: 24999 Updated by: helly@php.net Reported By: nightcat at poczta dot onet dot pl -Status: Open +Status: ...
    4. #24999 [NEW]: Compilation fails
      From: nightcat at poczta dot onet dot pl Operating system: Linux PHP version: 5CVS-2003-08-09 (dev) PHP Bug Type: Compile...
    5. Perl 5.8.0 compilation fails in chrooted environment
      I am trying to compile perl 5.8.0 with gcc 3.2.3 on a Linux 2.4.18 system having glibc 2.3.2. I am doing it in a chrooted environment. My configure...
  3. #2

    Default vbc compilation fails when using Hashtable

    Hashtable is in namespace System.Collections
    not System.Collections.Specialized.

    Tu-Thach
    >-----Original Message-----
    >When I try to compile vb.net code using the command line
    interpreter,
    >it does not recognize Hashtables. Any resolution to this?
    >
    >vbc Utilities.vb
    >/t:library
    >/imports:Microsoft.VisualBasic
    >/r:System.dll,System.web.dll,System.xml.dll
    >/Utilities.dll
    >
    >error BC30002: Type 'Hashtable' is not defined.
    >
    >Private ht As Hashtable = New Hashtable()
    >
    >Even though vb.net aspx file Imports the following
    namespaces:
    >
    >Imports System
    >Imports System.Web
    >Imports System.Xml
    >Imports System.Net
    >Imports System.Collections.Specialized
    >
    >Thanks,
    >Jon
    >.
    >
    Tu-Thach Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139