Search for: decompile dll files vb
Related Programming Resources
- Using x86 Assembly Language with Microsoft Visual Studio .NET 2003 This tutorial continues the introduction to the Microsoft Visual C++ Integrated Development Environment (IDE) and addresses using assembly code in a project. It covers adding assembly code to a project containing a main() function in C++ and debugging a project with assembly. Creating a C++/Assembly Project The project we''ll develop in this
- Advanced Network Programming Lab using Java A simple Java Client A simple Java Server An advanced Java Client An advanced Java Server A Multi-threaded Java Server A simple Java Client import java.io.*; import java.net.*; public class ISAClient { public static void main(String[] args) throws Exception { String message; String returnmessage; BufferedReader keyboard = new BufferedReader(new InputStreamReader(System.in)); //server has to be listening to this port Socket mysock = new Socket("localhost",19000); DataOutputStream out = new
- Writing a Windows Form Application For .NET Framework Using C# This article is a very simple introduction on writing a Windows Form application for the Microsoft.NET framework using C#. The sample application demonstrates how to create and layout controls on a simple form and the handling of mouse click events. The application displays a form showing attributes of a file.
- Step-by-Step Guide to Integrating OpenAuth into Your ASP.NET Web Application No matter what kind of Web application you build, the process always seems to start in the same place: managing user accounts. Writing a file-sharing application for the Web? You begin by identifying who is uploading the file. Writing a chat application for the Web? You have to know who
- Simulation and scientific computing C++ Tutorial C++: A First Overview Question: Is C++ an object-oriented language? No (at least not only). C++ should be seen as a federation of programming languages -> Multiparadigm programming language First Differences between C and C++ - The creation of an object is an expression. Therefore a new object can be created everywhere where