Hi !
This is like my first .NET project ever and I'm having problems adding the correct files and directories in the IDE.
Getting conflicts and all sorts of errors.
Can someone please clear this mess for me ?
Which files goes where ? Which directories needs to be created where ? Or does someone have a working VB solutionfile to share ?
I can't find a readme.txt or anything, but I guess that's because there is none :)
Thanks in advance.
// Kenneth
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The VB project was not written using Visual Studio (I was just trying to learn the framework and the compiler), I have started using VS recently and will redo the project soon, but for now, it probably will not open in Visual Studio.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2003-02-01
I am also trying to convert the project to VS VB.
My first real problem is in Global.asax.
I am doing this a piece at a time.
I am able to build the ASPEnterpriseManager.dll
Next I am trying to import the Web.config and Global.asax files. I am doing this by copying the text from the original project and pasting it into the newly created project in my solution.
When I copy the 2 <object ...... lines into Global.asax.vb I am receiving an error.
I am having a mental block right now and can not remember how I need to declare these 2 objects.
Can anyone help that might also be working on this?
Gary
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2003-02-01
I am also trying to convert the project to VS VB.
My first real problem is in Global.asax.
I am doing this a piece at a time.
I am able to build the ASPEnterpriseManager.dll
Next I am trying to import the Web.config and Global.asax files. I am doing this by copying the text from the original project and pasting it into the newly created project in my solution.
When I copy the 2 <object ...... lines into Global.asax.vb I am receiving an error.
I've got the entire thing in VS.Net right now. I haven't tested the changes I made yet, but here is what I think you need to do with those object declarations:
Open up global.asax in a text editor, and drop them in.
Since the StaticObjects bit is depreciated, I'm in the process of removing it from my copy of the codebase. To work around them, you'll need to declare Protected AppInterface and ConnectionString instances in codebehind.
--Brian Desmond
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi !
This is like my first .NET project ever and I'm having problems adding the correct files and directories in the IDE.
Getting conflicts and all sorts of errors.
Can someone please clear this mess for me ?
Which files goes where ? Which directories needs to be created where ? Or does someone have a working VB solutionfile to share ?
I can't find a readme.txt or anything, but I guess that's because there is none :)
Thanks in advance.
// Kenneth
The VB project was not written using Visual Studio (I was just trying to learn the framework and the compiler), I have started using VS recently and will redo the project soon, but for now, it probably will not open in Visual Studio.
I am also trying to convert the project to VS VB.
My first real problem is in Global.asax.
I am doing this a piece at a time.
I am able to build the ASPEnterpriseManager.dll
Next I am trying to import the Web.config and Global.asax files. I am doing this by copying the text from the original project and pasting it into the newly created project in my solution.
When I copy the 2 <object ...... lines into Global.asax.vb I am receiving an error.
<object id="ConnectionString" class="ASPEnterpriseManager.ConnectionString" runat="Server" scope="Session" />
<object id="AppInterface" class="ASPEnterpriseManager.XPInterface" runat="Server" scope="Application" />
I am having a mental block right now and can not remember how I need to declare these 2 objects.
Can anyone help that might also be working on this?
Gary
I am also trying to convert the project to VS VB.
My first real problem is in Global.asax.
I am doing this a piece at a time.
I am able to build the ASPEnterpriseManager.dll
Next I am trying to import the Web.config and Global.asax files. I am doing this by copying the text from the original project and pasting it into the newly created project in my solution.
When I copy the 2 <object ...... lines into Global.asax.vb I am receiving an error.
<object id="ConnectionString" class="ASPEnterpriseManager.ConnectionString" runat="Server" scope="Session" />
<object id="AppInterface" class="ASPEnterpriseManager.XPInterface" runat="Server" scope="Application" />
I am having a mental block right now and can not remember how I need to declare these 2 objects.
Can anyone help that might also be working on this?
Gary
Gary,
I've got the entire thing in VS.Net right now. I haven't tested the changes I made yet, but here is what I think you need to do with those object declarations:
Open up global.asax in a text editor, and drop them in.
Since the StaticObjects bit is depreciated, I'm in the process of removing it from my copy of the codebase. To work around them, you'll need to declare Protected AppInterface and ConnectionString instances in codebehind.
--Brian Desmond