Assemblies and Application Blocks problem

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

  1. #1

    Default Assemblies and Application Blocks problem

    Hi everybody
    I do not have Visual Studio. I only use Notepad and WebMatrix. My problems
    are :

    1.
    I have DotNet Framework installed and it is working fine. I have Env.
    variable as follows :
    Variable = vbc
    Value = C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\vbc.e xe
    But when I try to make an assembly of myself by using the following command
    from WinXP's command prompt
    vbc /t:library /out:FileName.dll FileName.vb
    It says
    'vbc' is not recognized as an internal or external command, operable program
    or batch file.
    Can someone tell me how can I make my own assemblies ?

    2.
    I downloaded and installed Data Access Application Block. In the articles I
    read on the net and in the documentation it talks about
    opening Application Block Project in Visual Studio and build the project.
    What should I do if I do not have Visual Studio. Can someone tell me the
    steps how to fix this or give a link to an article.

    Thanks in advance
    Raja


    Rajesh Madhra Guest

  2. Similar Questions and Discussions

    1. Flash Remoting Application.cfc & Application.cfm problem
      Hi there, When using Flex 1.5 client application, when using Application.cfm to deal with remoting SetCredentials(user,pwd), I just set it once...
    2. Do BEGIN blocks and END blocks have priority?
      If I create code with: BEGIN { # something BEGIN { # something else } }
    3. How to prevent referenced assemblies from being compiled into the application?
      My question may be a bit odd. Right now I can see that all referenced assemblies in my project are compiled into the application assembly so when...
    4. problem referncing common assemblies from several WS projects (NO GAC!)
      Hello My problem is with being able to reference some common assemblies from several different WEB SERVICE projects WITHOUT registering these...
    5. Application Roots for assemblies
      As long as the "facades" virtual directory is configured as an Application that's the way ASP.Net works. You can always remove the Application...
  3. #2

    Default Re: Assemblies and Application Blocks problem

    I can't help you with the second problem, but I can help you with the first.
    Add the framework tools directory to the PATH environment variable like
    this:

    SET PATH=%PATH%;C:\WINDOWS\Microsoft.NET\Framework\v1. 1.4322\;

    If you create a batch file and name it anything (like vbprompt.bat) and add
    that line to it, then create a shortcut on your computer that runs the
    following:

    %compsec% /k "vbprompt.bat"

    Where vbprompt.bat is the full path to your batch file, then you can run
    that shortcut any time and the command prompt will open up with all the
    environment variables in the batch file configured.

    Hope that helps,
    David

    "Rajesh Madhra" <madhra@yahoo.com> wrote in message
    news:eRwnxgWSDHA.560@TK2MSFTNGP10.phx.gbl...
    > Hi everybody
    > I do not have Visual Studio. I only use Notepad and WebMatrix. My problems
    > are :
    >
    > 1.
    > I have DotNet Framework installed and it is working fine. I have Env.
    > variable as follows :
    > Variable = vbc
    > Value = C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\vbc.e xe
    > But when I try to make an assembly of myself by using the following
    command
    > from WinXP's command prompt
    > vbc /t:library /out:FileName.dll FileName.vb
    > It says
    > 'vbc' is not recognized as an internal or external command, operable
    program
    > or batch file.
    > Can someone tell me how can I make my own assemblies ?
    >
    > 2.
    > I downloaded and installed Data Access Application Block. In the articles
    I
    > read on the net and in the documentation it talks about
    > opening Application Block Project in Visual Studio and build the project.
    > What should I do if I do not have Visual Studio. Can someone tell me the
    > steps how to fix this or give a link to an article.
    >
    > Thanks in advance
    > Raja
    >
    >

    David Banister 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