|
Hi all,
Salamander's .NET Protector makes a claim that it completely prevents decompile and disassembly of C# applications, which means that the source code cannot be seen in ILDASM and Reflector etc. They also claim that their product is better than an obfuscator. However, their product pricing being so exhorbitant (US$ 1899 or so per license, which is even much more than the pricing of MS Visual Studio Professional Ed.), I first wanted to confirm whether it is really a useful product? Is it a worthwhile product and is it worth its value? Secondly, do you think that their claims about the product are true claims?
Can anybody who has used that product share his experience?
Thanks in advance.
|
|
|
|
|
Anonymous wrote:
However, their product pricing being so exhorbitant (US$ 1899 or so per license, which is even much more than the pricing of MS Visual Studio Professional Ed.),
How many licenses will you need? If this was being bought for the company I work for, we'd probably only get one license because it won't be an everyday task by people. It will be a task done towards the end of the project (and maybe a few times during [for testing purposes]) so, unlike Visual Studio, it won't need to be on everyone's machine. Probably it would just be needed on one machine.
My: Blog | Photos
WDevs.com - Open Source Code Hosting, Blogs, FTP, Mail and More
|
|
|
|
|
XenoCode is the best. Check it out!
|
|
|
|
|
Now,I have get needs of user, and try to start from system analysis ,then after that, code programs.
but I have not experiences ever.Can I get some suggestions ?(sample with explanation is expectd)
|
|
|
|
|
You might like to look at a book such as Head First Design Patterns. It explains design patterns in a very easy to understand way with examples. The examples are in Java, but they don't use much of any frameworks (because they are teaching you to create your own framework) so it is easy to see how to do the same thing in C#.
Also, don't be overwhelmed by the size of the book - its full of pictures and diagrams and it is very light reading.
My: Blog | Photos
WDevs.com - Open Source Code Hosting, Blogs, FTP, Mail and More
|
|
|
|
|
I am building a setup using Visual Studio .NET 2003.
The requirement is, during installation process we need to ask user for License key. If key is valid, user should be allowed to go ahead with completion of setup. If user exits the key request form, setup should rollback.
The key application for key acceptance and validation is ready. It returns true if key is valid, else it returns false.
How can we check these values during installation and commit or rollback the installation accordingly?
Thanks in advance.
- ashish
|
|
|
|
|
It is a good question, i would help you but i don't know.
Have you solved this problem?
|
|
|
|
|
Hello,
Now, I develop communication tool using udp protocol.
When I send data, I use send() in C#'s Socket class.
If a recipient tool is exist, a sender send it.
If not, sendTo() waiting some seconds.
Maybe after 10 seconds, the error occured.
I'd like to send it no waiting whether recipients is exist or not.
I investigated Socket class( expecially, SetSocketOption ),
But I have no idea.
If you have some ideas, please tell me.
Thank you in advance for your kindness.
yu-yu
|
|
|
|
|
How can i use IMAP with admin account to read other accounts's mail? How the find a user path and change the current mailbox to another mailbox ? I amn't sure whethever IMAP can archieve this, if not what protocal i should use ?
Please help
|
|
|
|
|
Hi everybody.
Im am working in an application and i need save the information in an excel file into a dataset, or an array. Anybody can tell me how can i do that? If anybody can help me i will be gratefull.
|
|
|
|
|
1. You can use ODBC and read Excel data. That data you can store anywhere you want.
2. Using Excel.Application object, you can read information form Excel sheet and save it to array or where ever you want.
- ashish
|
|
|
|
|
|
I have say a 100x100 array of gray values (0 to 255). How can I create a 8bpp bitmap from this array such that 0 maps to black 255 maps to white?
In particular how to you set the ColorPalette for a 8bpp image; I want 0 to map to black 255 to white?
I tried following code but its giving me problems:
PixelFormat pf = PixelFormat.Format8bppIndexed;
byte[] Scan0 = CalculateIntensityValues();
Bitmap bmp = new Bitmap(100, 100, 100, pf, Scan0);
how to convert Scan0 from byte[] to IntPtr?
|
|
|
|
|
Scan0 is a pointer to the bitmap data. The easiest thing to do is to create the bitmap, then get access to the pointer and set the values in an unsafe block. None of this code is setting up a palette, as far as I can see.
Christian Graus - Microsoft MVP - C++
|
|
|
|
|
Dear *.*
I'm a c#-rooky *g*. How can I call word/outlook from an existing c#-app. The users just want to start word or outlook by pressing a simple button within the form.
An additional nice feature would be for example submitting the email-adress to outlook or something like this.
regards
Klaus
|
|
|
|
|
You need to add reference of Word and outlook libraries in your project. Then you can do whatever you want using Application objects of these libraries.
If you are using Office Xp, library 10.0 will be available on your system. And if it is 2003, you will see library 11.0
Enjoy
- ashish
|
|
|
|
|
Ashish,
thanks a lot for open my eyes . After thinking it over, I've also found many samples on the net (msdn).
regards
Klaus
|
|
|
|
|
I've in my application an infinite number of object displayed on the form that are made dinamically by the user.
The user define the position, the size and the color.
I've implement this by a linked list.
Now i want to save this linked list inside a ASCII file so i can load in a second time and recreate this objects.
In your opinion what is the easer way to do that?
|
|
|
|
|
Sasuko wrote:
I've implement this by a linked list.
take a look at some classes from System.Collections , especially ArrayList , Hashtable and similar...
Sasuko wrote:
Now i want to save this linked list inside a ASCII file so i can load in a second time and recreate this objects.
In your opinion what is the easer way to do that?
Does it have to be ASCII ? Again, take a look at System.Serialization .
Do not reinvent the wheel.
Search for them on http://msdn.microsoft.com/[^].
David
David's thoughts / dnhsoftware.org / MyHTMLTidy
|
|
|
|
|
Sorry i've maybe explained bad.
I know about ArrayList and Serialization, the problem is implement this to an invinite Linked list, how could i concettually linked list in a file?
Maybe it is easy but i don't understand how?
Have i to loop for all the list's son and save one at time in the file?
But how can i read it then?
|
|
|
|
|
Sasuko wrote:
Sorry i've maybe explained bad.
I know about ArrayList and Serialization, the problem is implement this to an invinite Linked list, how could i concettually linked list in a file?
uh. I understand this even worse
Sasuko wrote:
Have i to loop for all the list's son and save one at time in the file?
No, serializer will do that for you.
Sasuko wrote:
But how can i read it then?
Using deserialization.
Search Google for keywords "Serialization of ArrayList". There are many examples. It's actually easier then it looks.
David
|
|
|
|
|
|
can you submit some details
|
|
|
|
|
i've found nothing about that on google! Can you show me where?
|
|
|
|
|