How To Apply Obfuscator On Project

Jul 23, 2010

how to apply obfuscation on dot net project.

View 2 Replies


ADVERTISEMENT

Best Obfuscator For A Program?

Apr 15, 2011

I must obfuscator a program than i envelope in vb net 2010.What obfuscator is good? For example dotfuscator included in vs or other? free?

View 13 Replies

VS 2008 Best Obfuscator For .NET?

Oct 19, 2009

Has anyone here some experience with obfuscators for .NET? Obviously, it isn't that hard to see the source code for a program written in .NET, so I want to make it harder for people to see my source code.

Right now I'm using DeepSea Obfuscator ( http://www.deepseaobfuscator.com/ ), a free program for seamless integration with VS.NET. While it works just fine, I want to know what are the best obfuscators out there, and if there are some better options than DeepSea?

View 6 Replies

Choose .net Obfuscator Program?

Jul 19, 2010

I have written a program in vb.net 2008 (using .net 3.5). It's a decent size program. One part of this program is to access an online database and encrypt/decrypt files. To access db I use a hardcoded password. To encrypt/decrypt files I used a hardcoded key. No matter what I do I would need to hardcode one of the two things at least. For example: even if I store database password in an encrypted file I would need to hardcode key to decrypt it. Or vice versa. So after doing some thinking I figured that I need to obfuscate my code so that at least these hardcoded elements/values wont be visible easily. Infact to test, I used a program to disassemble my program. And to my amazement, it showed me every line of code in my program. I felt as if my entire code is pasted in my exe.

Thus I need to obfuscate my code. See I do not need too advanced settings. My program is not among the top shareware programs or super popular that I need very high security. But I need enough security so that my basic code, variables and sensitive information (password etc) is not visible. Please help me choose a good obfuscator which will do the job. It should not be too tedious to use and should be sufficient for me. Plus it should be trusted and secure. I mean I don't want my application to crash or be unstable after I obfuscate it. I have downloaded trial of .net reactor from Ezriz and it seems to be fine. What do you guys suggest? I cannot affort something over $200.

View 5 Replies

Obfuscator - Protect Software From Reverse Engineering?

May 15, 2009

which is the most reliable obfuscator for .net? and which are the best techniques to protect our software from reverse engineering?

View 3 Replies

In-project Components Fail If Project Is Opened With In-project Component Used On Initially Open Form?

Dec 20, 2010

Public Class ExtendedDateTimePicker Inherits DateTimePicker

View 5 Replies

VS 2008 - Timer - Project A References Project B So Can Open A Large Form In Project B

May 5, 2010

For reasons that are beyond my control, I have three Projects. Projects A and B reference project C. Project A references project B so that it can open a large form in project B. I now need to open that large form from project C, but VB won't allow me to add a reference from C to B because that would create a circular dependency. I found a way around it, though. I created a Timer in A, and when I opened C from A, I passed in that timer. When the user performs a certain action, I enable the Timer from A, and this causes C to open B for me.

View 2 Replies

Include Contact Project Into Another Project / Add More Items To Database / Forms In New Project?

May 6, 2009

I have a project that I have created, it something like a contact database.It is complete with its own sql server database, and controls and forms.I kinda of understand that I can include this project into another project.This is the tricky part,Can I include my contact project into another project and add more items to the database and forms in a new project?What I'm after is like using classes.My contact database would be like the base class, and the new project would be adding more features to that project.

View 10 Replies

Add Project Setup Project For Project For Visual Studio 2008?

Nov 15, 2010

i was developing Voice Chat Application in visual Basic .NET 2008 i try a lot methods to make installer for it :

1- i add Project Setup Project for my Project for Visual Studio 2008 Deploy & setup Type Projects and make it with output option and detect dependices

2- i try make it with Setup Factory 8.2.1

3- i try with MSI Factory 2.0

4 i try with Setup Factory 6.0

and after making installer copying it to my test virtual Machine or my friend lap and install it i get this error when try to run my application :

[Code]...

View 3 Replies

How To Apply A .msstyles To A .NET App

Dec 11, 2009

I code GUIs in .NET frequently, and most of them only have the value of being a GUI, e.g. they don't do anything otherwise impossible. So most of the development goes to making them friendly, intuitive and eye-candy.Then it comes to my mind it would be simply amazing to skin them through .msstyles files, since there are so many places to find those files, and also tools to make your own.And some of those msstyles are just stunning, probably not for your whole desktop, but for styling homemade apps it would be perfect.

View 2 Replies

How To Apply A Skin To VB

Oct 17, 2009

i have one quetion maybe some of you know codejock skinframework witch allows you to apply a skin to your vb6 application and i thought about asking is there a way applying a xp/vista theme to an vb .net application i dont want to use xp style if you think like that i mean downloading a skin and applying it only to my application? is that possible in vb .net

View 2 Replies

How To Apply Inheritance

Apr 22, 2012

i am just trying to apply inheritance ..Below is my Code ... on which i am not getting the output on my Text_Box ... when in write it in a Child Class

Imports System
Imports System.Windows
Imports System.Windows.Forms

[code]....

View 4 Replies

Apply A Dropshadow To A Mdichild?

Jul 26, 2009

I'm developing a MDI application and since my mdichild forms have no border I wish to apply a dropshadow just like a normal form, is it possible ?

View 6 Replies

Apply Action To Every Tabpage?

Mar 19, 2010

I have this action will fire on the painting of a tab page.

Private Sub TabPage1_Paint( _
ByVal sender As Object, _
ByVal e As System.Windows.Forms.PaintEventArgs) _
Handles TabPage1.Paint

[Code]...

View 5 Replies

Apply Asynchronous Code In VB?

Mar 15, 2009

I have a small VB.NET application built using VS 2008 and .NET 3.5.Very simply, there is a timer that kicks off every few seconds to download an XML stream from the web. I look at this stream and manipulate it.The problem I am facing is that the remote web server may not respond in a timely fashion to the following line of

[code]...

How can I implement asynchronous calls so that the my application can behave without locking up?

View 3 Replies

Apply Calculation To A 2d Array?

Mar 23, 2012

I have a 2d array and I want to do a calculation on each element in the array and then return the index which results in the smallest value.

I have tried iterating through each element in the 2d array and running the calculation. If the calculated result is smaller than the currently stored minimum I set that to the minimum.

This works but it runs so slowly it makes the solution a non starter. It performs each calculation quickly but because of the number of elements in the array the calculation for the whole array is stupidly long.

View 1 Replies

Apply Changes To All Forms Of An Application

Jun 21, 2010

Is there a way to apply any changes made to an entire application and not just the open (active) form that you are in? I.E. I change the backcolor to a color from a color dialog. I want that chosen color to be applied to all the forms' backcolor in my project. Can this also then be applied to all the other controls' backcolor? The code that I posted works but all forms and controls have to have the changes applied to each one separately.

[Code]....

View 1 Replies

Apply Focus To A Panel?

Mar 29, 2010

Suppose I have a control component xxx; I want to apply focus to it.

[code]...

View 3 Replies

Apply Gradient To A Square?

Apr 8, 2012

I am working in vb.net, visual studio 2010.

So i want to apply gradient to a square, a center to edges gradient. This is the code:

Public Class Form1
Private Sub PicSourcefrm(ByVal sender As System.Object, ByVal e As PaintEventArgs) Handles Me.Paint
Dim Graph As Graphics

[Code].....

NOTE: Picsource is just a PictureBox named that way. If I put "BrushSquare.SurroundColors = Color.Red" in a comment. The program works but the edges are white, not red like I want them to be.

View 1 Replies

Apply The Code In The Module?

Aug 20, 2011

how to apply the code in the module?

this is my code:

sqlstr = "update StudentGraduateTable set LastName ='" & txtlastname.Text & "'," _
& "FirstName ='" & txtfirstname.Text & "'," _
& "MiddleName ='" & txtmiddlename.Text & "'," _

[code]....

View 11 Replies

Apply The Same Image To Each Tab Several Times?

Jul 29, 2009

i have a tab control thing and i want to make it transparent. When i set each tab to that is just turns gray, even when i run it. Can someone help me. I dont want to have to apply the same image to each tab several times.

View 14 Replies

Apply The Using Command To A SqlDataReader?

Dec 23, 2009

I just want to verify something. I believe it is likely that if I apply the using command to a SqlDataReader, that it will both close the data reader and dispose of it. For example:

Using sdr As SqlDataReader = cm.ExecuteReader()
Dim someInt As Integer = sdr.GetInt32(0)
'other details and actions
End Using

Will that close the sdr SqlDataReader after it exits the Using code block. (I believe it will, but just want to verify.)

View 2 Replies

Apply Themes For A Form?

Mar 13, 2009

iam working on windows application using vb.neti developed a patient information system it is working well but i have to improve the look and feel of my application using themeshow to apply themes for my forms like windows themes for each and every control

View 3 Replies

Apply To Datagridview 400 Rows?

Mar 14, 2011

how to apply to Datagridview 400 rows?

View 3 Replies

Apply XSL Transformation To XML File?

Jul 27, 2009

I have got some XML which is built by my application. This XML is dropped to an XML file, which I then wish to apply an XSL stylesheet to in order to convert it to a HTML page. However, every time, it just keeps coming out with the original XML rather than the transformed HTML

[code]...

View 4 Replies

How To Apply Primary Key On Column

Jun 22, 2010

How to apply primary key on sno column in the following dataset. [code]

View 1 Replies

VSFlexGrid Apply Row Color?

Oct 11, 2010

when applying html color to vsflexgrid is not apply or apply irrespective colors.

View 1 Replies

Way To Do Settings Once And Apply To Many Forms?

Jan 28, 2011

I'm working in VS 2008, on a windows application.I have many forms, and I'm in the process of redesigning the GUI.Is there anything that I can do to standard some of the placement of the controls. For example, I have a header for each page, at a certain size and location. Instead of going to each form, is there a way to do the settings once, and apply to many forms?

View 2 Replies

Apply That To All 30 Textboxes When Form Loads?

May 22, 2010

[code] how do i apply that to all 30 textboxes when the form loads.

View 3 Replies

Apply / Skin Program Form?

Jun 23, 2010

Is there a way to like apply or skin a vb.net form?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved