473,479 Members | 2,115 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

assemblies & references

Anyone know how to breakdown every modules into different assemblies

and refernces. Hence, to repair problematic module, only that

particular module needed to be recompiled.
or any place can get more information about assemblies & references
Nov 20 '05 #1
6 782
just code it that way?! im kinda missing what you're not getting.. just code
all the modules as seperate projects and refrence them all together... it's
not that hard
" A-PK" <pi********@hotmail.com> wrote in message
news:uQ***************@tk2msftngp13.phx.gbl...
Anyone know how to breakdown every modules into different assemblies

and refernces. Hence, to repair problematic module, only that

particular module needed to be recompiled.
or any place can get more information about assemblies & references

Nov 20 '05 #2
If you want to take this approach, you'll need to create each module in its
own solution, which will compile it to its own assembly. For example, one
solution could be the module that describes data classes and another could
describe business classes.

Search MSDN.Microsoft.com, keyword "assemblies" for more.
" A-PK" <pi********@hotmail.com> wrote in message
news:uQ***************@tk2msftngp13.phx.gbl...
Anyone know how to breakdown every modules into different assemblies

and refernces. Hence, to repair problematic module, only that

particular module needed to be recompiled.
or any place can get more information about assemblies & references

Nov 20 '05 #3
how to compile them and make those project readable and can reference them ?

"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:OY**************@tk2msftngp13.phx.gbl...
If you want to take this approach, you'll need to create each module in its own solution, which will compile it to its own assembly. For example, one
solution could be the module that describes data classes and another could
describe business classes.

Search MSDN.Microsoft.com, keyword "assemblies" for more.
" A-PK" <pi********@hotmail.com> wrote in message
news:uQ***************@tk2msftngp13.phx.gbl...
Anyone know how to breakdown every modules into different assemblies

and refernces. Hence, to repair problematic module, only that

particular module needed to be recompiled.
or any place can get more information about assemblies & references


Nov 20 '05 #4
Compile them just as you would any assembly. Reference them as you would
any assembly. Once they are referenced, you can instantiate the classes in
the modules.

Are you saying you don't know how to compile and make references? If so,
that is a completely different issue. If you are using VS.NET, "build" your
assembly (compile) from the Build menu. If not using VS.NET, use the
command line compilers.
" A-PK" <pi********@hotmail.com> wrote in message
news:Oc**************@tk2msftngp13.phx.gbl...
how to compile them and make those project readable and can reference them ?
"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:OY**************@tk2msftngp13.phx.gbl...
If you want to take this approach, you'll need to create each module in

its
own solution, which will compile it to its own assembly. For example, one solution could be the module that describes data classes and another could describe business classes.

Search MSDN.Microsoft.com, keyword "assemblies" for more.
" A-PK" <pi********@hotmail.com> wrote in message
news:uQ***************@tk2msftngp13.phx.gbl...
Anyone know how to breakdown every modules into different assemblies

and refernces. Hence, to repair problematic module, only that

particular module needed to be recompiled.
or any place can get more information about assemblies & references



Nov 20 '05 #5
so sorry.....
I right click the "references" under the solution explorer and choose Add
References.

then pop up one screen with Three Tab there
..NET \ COM \ Projects

i wonder which to choose ? I choose Project then anotehr screen poping up
i browse to the destination path and choose xxx.exe but can not add the
references.

this is where I stuck.

1- i dun know if my file compile correctly - acoording to scott, i did
compile them correcntly.
2- i dun know if my destination path is correct, but i have try every files
on that folder, but all can not

Is it only DLL or COM file can be references ?
I create a new project and try to compile and make it a reference ...can or
can not ?

"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:#3**************@TK2MSFTNGP10.phx.gbl...
Compile them just as you would any assembly. Reference them as you would
any assembly. Once they are referenced, you can instantiate the classes in the modules.

Are you saying you don't know how to compile and make references? If so,
that is a completely different issue. If you are using VS.NET, "build" your assembly (compile) from the Build menu. If not using VS.NET, use the
command line compilers.
" A-PK" <pi********@hotmail.com> wrote in message
news:Oc**************@tk2msftngp13.phx.gbl...
how to compile them and make those project readable and can reference them
?

"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:OY**************@tk2msftngp13.phx.gbl...
If you want to take this approach, you'll need to create each module
in its
own solution, which will compile it to its own assembly. For example,

one solution could be the module that describes data classes and another could describe business classes.

Search MSDN.Microsoft.com, keyword "assemblies" for more.
" A-PK" <pi********@hotmail.com> wrote in message
news:uQ***************@tk2msftngp13.phx.gbl...
> Anyone know how to breakdown every modules into different assemblies
>
> and refernces. Hence, to repair problematic module, only that
>
> particular module needed to be recompiled.
>
>
> or any place can get more information about assemblies & references
>
>



Nov 20 '05 #6

" A-PK" <pi********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
so sorry.....
I right click the "references" under the solution explorer and choose Add
References.

then pop up one screen with Three Tab there
.NET \ COM \ Projects

i wonder which to choose ? I choose Project then anotehr screen poping up
i browse to the destination path and choose xxx.exe but can not add the
references.
You want to make a reference to a .NET Assembly, right? Then choose .NET
and hit browse. Browse to the .NET assembly in question and hit select.
Then click OK. It's really very simple.


this is where I stuck.

1- i dun know if my file compile correctly - acoording to scott, i did
compile them correcntly.
2- i dun know if my destination path is correct, but i have try every files on that folder, but all can not

Is it only DLL or COM file can be references ?
I create a new project and try to compile and make it a reference ...can or can not ?

"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:#3**************@TK2MSFTNGP10.phx.gbl...
Compile them just as you would any assembly. Reference them as you would
any assembly. Once they are referenced, you can instantiate the classes

in
the modules.

Are you saying you don't know how to compile and make references? If so, that is a completely different issue. If you are using VS.NET, "build"

your
assembly (compile) from the Build menu. If not using VS.NET, use the
command line compilers.
" A-PK" <pi********@hotmail.com> wrote in message
news:Oc**************@tk2msftngp13.phx.gbl...
how to compile them and make those project readable and can reference them
?

"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:OY**************@tk2msftngp13.phx.gbl...
> If you want to take this approach, you'll need to create each module

in its
> own solution, which will compile it to its own assembly. For example, one
> solution could be the module that describes data classes and another

could
> describe business classes.
>
> Search MSDN.Microsoft.com, keyword "assemblies" for more.
>
>
> " A-PK" <pi********@hotmail.com> wrote in message
> news:uQ***************@tk2msftngp13.phx.gbl...
> > Anyone know how to breakdown every modules into different

assemblies > >
> > and refernces. Hence, to repair problematic module, only that
> >
> > particular module needed to be recompiled.
> >
> >
> > or any place can get more information about assemblies & references > >
> >
>
>



Nov 20 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

12
1633
by: A-PK | last post by:
Anyone know how to breakdown every modules into different assemblies and refernces. Hence, to repair problematic module, only that particular module needed to be recompiled. or any place...
1
6909
by: Afaq | last post by:
Hi, After adding large number of empty resource files (which will be updated later), we are not able to compile the project. the following is the output of the build process. It fails while...
1
1641
by: Dan | last post by:
Here's a scenario I'd like to discuss in order to setup my VS.NET IDE properly and be able to prepare a distribution: a) I have a windows forms C# app using 3 shared assemblies I developed to...
9
4159
by: Invalidlastname | last post by:
Hi, We developed some assemblies which use EnterpriseServices queued components. In order to use EnterpriseServices, these assemblies need to be installed into GAC. I used the pre-build and...
4
1579
by: Arpan | last post by:
Assume that I am creating ASP.NET pages in the C:\Inetpub\wwwroot\ASPX directory. This directory has a sub-directory named \bin where in all DLLs are stored. Are these DLLs which are stored in the...
0
6899
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
1
6719
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
6847
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5312
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4757
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4463
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
2970
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1288
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
555
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.