|
-
Jan 26th, 2003, 06:50 PM
#1
protecting dll files?
I'm making a class library and I dont want other people be able to use my dll file. I'm just using this dll along with one of my apps. Any way to prevent people who have my app from using my dll files?
Last edited by MrPolite; Jan 26th, 2003 at 11:34 PM.
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Jan 26th, 2003, 09:19 PM
#2
Sleep mode
-
Jan 26th, 2003, 09:31 PM
#3
-
Jan 26th, 2003, 09:35 PM
#4
Sleep mode
such as ..........???
-
Jan 26th, 2003, 11:38 PM
#5
Originally posted by pirate
such as ..........???
honestly if I knew it, I wouldn't ask it, ahem
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Jan 26th, 2003, 11:45 PM
#6
Sleep mode
I'm sure you have something in mind even stupid thoughts may work sometimes .But as I said those are the only things you can use (I think )
-
Jan 26th, 2003, 11:47 PM
#7
Originally posted by pirate
I'm sure you have something in mind even stupid thoughts may work sometimes .But as I said those are the only things you can use (I think )
well, you could somehow do this with usercontrols in vb6, I dont know....
I just remember when I was adding some stuff,vb would give me an error saying something like I dont have a license for that control or whatever...
so I'm gussing that there should be a way to do it with dll files too (I'm hoping!)
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Jan 26th, 2003, 11:51 PM
#8
Sleep mode
Originally posted by MrPolite
well, you could somehow do this with usercontrols in vb6, I dont know....
I just remember when I was adding some stuff,vb would give me an error saying something like I dont have a license for that control or whatever...
so I'm gussing that there should be a way to do it with dll files too (I'm hoping!)
license issue ,I guess this error happen when you use a dll or activex without registering them
-
Jan 27th, 2003, 12:16 AM
#9
Check out the article in the help entitled 'Licensing Components and Controls' or just do a search in the help for 'licensing'. I've seen other examples on the net but can't seems to find them right now.
Here are some other links that might help (I found a couple)
http://www.xheo.com/Products/Licensi...section=Adding
http://discuss.develop.com/archives/...nsing&f=&a=&b=
Last edited by Edneeis; Jan 27th, 2003 at 12:21 AM.
-
Jan 27th, 2003, 12:23 AM
#10
-
Jan 27th, 2003, 12:30 AM
#11
Sleep mode
Can't access modifiers do this kind of protection ??
-
Jan 27th, 2003, 12:33 AM
#12
Originally posted by pirate
Can't access modifiers do this kind of protection ??
what are modifiers
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Jan 27th, 2003, 01:04 AM
#13
-
Jan 27th, 2003, 01:09 AM
#14
Originally posted by pirate
^
:
:
:
UP
oh oops
no you cant do this with modifiers
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Jan 27th, 2003, 01:11 AM
#15
-
Jan 27th, 2003, 01:22 AM
#16
Sleep mode
while playing with classes I got this , it prevent others from creating new instances from Test Class.Private Constructor did it actually not me
VB Code:
Public Class test
Private Sub New()
MsgBox("OOOP YOU GOT ME")
End Sub
End Class
-
Jan 27th, 2003, 02:02 AM
#17
Originally posted by pirate
while playing with classes I got this , it prevent others from creating new instances from Test Class.Private Constructor did it actually not me
VB Code:
Public Class test
Private Sub New()
MsgBox("OOOP YOU GOT ME")
End Sub
End Class
then you';re gunno get the same error when you use it in your own program too!!
also, I have some classes that have SHARED members and dnot need to be declared at all.
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Jan 27th, 2003, 03:03 AM
#18
-
Jan 28th, 2003, 04:26 PM
#19
Lively Member
Go to:
http://msdn.microsoft.com/library/de...entication.asp
and read about Code Access Security and Evidence.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|