473,386 Members | 1,830 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

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 1474
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
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
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
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
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
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
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
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
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
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
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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
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
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
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...

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.