473,503 Members | 2,046 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Legality of using Microsoft DLL'S in programs?

G'Day all,
Im just curious as to how legal it is to use dll's that microsoft have
made? For example, lets say I make a program that creates users in
active directory, I have to reference system.directory services, is it
now legal for me to sell the program? What if I had to include the dll
with my program?
I know it might sound a bit silly but I couldn't find any info about it
(maybe Im looking in the wrong place..)
Anyone got any more info?

Cheers

Dave.

Jul 21 '05 #1
8 1481
I think such DLLs are already part of the operating system or the .NET
Framework, and hence anybody who has .NET (which is free) will already have
them.

<ha*****@hotmail.com> wrote in message
news:11**********************@o13g2000cwo.googlegr oups.com...
G'Day all,
Im just curious as to how legal it is to use dll's that microsoft have
made? For example, lets say I make a program that creates users in
active directory, I have to reference system.directory services, is it
now legal for me to sell the program? What if I had to include the dll
with my program?
I know it might sound a bit silly but I couldn't find any info about it
(maybe Im looking in the wrong place..)
Anyone got any more info?

Cheers

Dave.

Jul 21 '05 #2
As a side note you don't have to include this DLL in your setup. It should
be installed as part of the .NET framework installation...
--

<ha*****@hotmail.com> a écrit dans le message de
news:11**********************@o13g2000cwo.googlegr oups.com...
G'Day all,
Im just curious as to how legal it is to use dll's that microsoft have
made? For example, lets say I make a program that creates users in
active directory, I have to reference system.directory services, is it
now legal for me to sell the program? What if I had to include the dll
with my program?
I know it might sound a bit silly but I couldn't find any info about it
(maybe Im looking in the wrong place..)
Anyone got any more info?

Cheers

Dave.

Jul 21 '05 #3
Ok, so what if I was writing a vb6 application for windows 98 and by
default windows 98 doesnt come with the particular dll, the dll is part
of a microsoft package that you download from the MS website and
install?

Jul 21 '05 #4
Basically :
- for "old" applications, with most packages MS provides a list of the files
that you are allowed to redistribute. You may have to include this DLL in
your package (and preferably using the "official" way). For example you may
have this for the various ActiveX controls that were provided with VB6.
- with .NET this is much less frequent as the framework is installed as a
whole once for all (opposed as letting each application installing the part
it needs)
- you may still have problem with older OS that won't support all .NET
classes but in this case it's likely a technical limitation and "installing"
the DLL likely won't change anything

To get back to System.DirectortyServices. This is part of the .NET
framework. If the .NET framework is installed it is available. You don't
have to install it. This is also the kind of thing that I believe won't work
on older OS (because they don't use Active Directory, the problem is not
that the DLL is missing, the problem is that the OS does not have the
"feature").

Let us know if you have a specific problem in mind...

Patrice

--

<ha*****@hotmail.com> a écrit dans le message de
news:11*********************@g43g2000cwa.googlegro ups.com...
Ok, so what if I was writing a vb6 application for windows 98 and by
default windows 98 doesnt come with the particular dll, the dll is part
of a microsoft package that you download from the MS website and
install?

Jul 21 '05 #5
> Ok, so what if I was writing a vb6 application for windows 98 and by
default windows 98 doesnt come with the particular dll, the dll is part
of a microsoft package that you download from the MS website and
install?

When it is in a SDK it is mostly (I don't know where not) free to use.

When it is by instance in an update for Office, than it is not free to use.

I thought that this was very simple,

Cor
Jul 21 '05 #6
G'Day all and thanks so far,
You have all answered a few questions for me but Ill go in and be a bit
more specific here.
Lets say I wanted to use the dlls that come in the RDP package for
windows 98 and write my own rdp client program (more or less I just
want to kill out some of the options ect.. and distribute a compiled
exe that is ready to click and access a terminal server) that I want to
give to clients for connectivity to my server.
Now the rdp package has to be downloaded from MS's website and
installed, it doesnt come with windows 98, do my clients have to
download and install it before my program is legally allowed to
reference the dll's or can I just throw the required dll's in with an
installer package and distribute?
Cheers all :)

Jul 21 '05 #7
Can you show us the link for what you mean with that package. Or otherwise
because it is about property. Ask it direct to the owner Microsoft.

The newsgroups are not official communication instruments from Microsoft.
Therefore in fact you have nothing on any answer here

Cor
Jul 21 '05 #8
Try to see if you have a licence.txt or redist.txt file or better, get in
touch with your local Microsoft representative...

IMO the problem in this particular case is that you are using RDP to create
your own RDP program. I've seen similar things *not* allowed in the past.
For example you are not allowed to use the Access runtime to create a
general purpose database system...

Even then what would prevent your customers to launch the full package
instead of your tailored app ?

(note : you may find more focused group, this one is for .NET applications)

Patrice
--

<ha*****@hotmail.com> a écrit dans le message de
news:11*********************@g47g2000cwa.googlegro ups.com...
G'Day all and thanks so far,
You have all answered a few questions for me but Ill go in and be a bit
more specific here.
Lets say I wanted to use the dlls that come in the RDP package for
windows 98 and write my own rdp client program (more or less I just
want to kill out some of the options ect.. and distribute a compiled
exe that is ready to click and access a terminal server) that I want to
give to clients for connectivity to my server.
Now the rdp package has to be downloaded from MS's website and
installed, it doesnt come with windows 98, do my clients have to
download and install it before my program is legally allowed to
reference the dll's or can I just throw the required dll's in with an
installer package and distribute?
Cheers all :)

Jul 21 '05 #9

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

Similar topics

1
4148
by: Norman Fritag | last post by:
Hi there I have avoided to use active x controls because I thought they are causing more problems then they are doing any good. I a new application I would want to use the tree and list view...
1
6503
by: Scott Chang | last post by:
Hi all, 1)I used Microsoft Visual C++.NET (2002) on my Windows Me and Windows XP Home Edition for the last one and half years. 4-5 weeks ago, I upgraded my PC from Windows XP Home Edition to...
5
9521
by: Richard Lionheart | last post by:
Hi All, I tried creating a C# Form using Petzold's "Programming MS Windows with C#" guidance. He recommended using the namespace System.Windows.Forms. However, VS.NET claims "the type or...
8
273
by: hack123 | last post by:
G'Day all, Im just curious as to how legal it is to use dll's that microsoft have made? For example, lets say I make a program that creates users in active directory, I have to reference...
10
1661
by: Kamilche | last post by:
I have a question for all you Pythoneers out there. I'm making a game with Python, and have a need for fonts. I am currently using a free TrueType font, but am considering switching to a bitmap...
1
11098
by: Screenbert | last post by:
After finding nothing anywhere in google I am posting this so everyone can benefit by it. The formating is not pretty since I copied it from my word document, but you should benefit by it. ...
0
12316
by: screenbert | last post by:
Managing DHCP Servers using C# They said it was impossible. It couldn't be done. But you can in fact manage DHCP servers using C#. This includes creating and deleting Scopes, SuperScopes,...
3
2058
by: Vincent | last post by:
I work for a software company who develops a Microsoft Access based application. I am currently in the process of designing a scheduler for this application and really like the design of the...
20
5360
by: Rob Stevens | last post by:
Can someone tell me how to import the sqlite3.dll file into c#. I am pretty new to this, and I want to use sqlite. The problem is I don't have a clue on how to import the dll file so i can call...
0
7204
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7091
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...
0
7282
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7342
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6998
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
7464
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
5586
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,...
0
3171
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1516
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 ...

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.