Search for: vb4 decompiler
Related Programming Resources
- ASP.NET Web Services and Web Clients Web Services Overview . The World Wide Web has opened up the possibility of large-scale distributed computing . Web Applications only allow interaction between a client browser and web server hosting a web page . Web Services create web-based apps that interact with other apps running on other computers - A Web Application is
- Mobile Application Part Interface (MAPI) Application Programming Interface This document is a Application Programming Interface containing technical details concerning the implementation of the Mobile Application Part Interface (MAPI) for OpenSS7. It contains recommendations on software architecture as well as platform and system applicability of the Mobile Application Part Interface (MAPI). This document specifies a STREAMS-based kernel-level instantiation of the
- PHP/MySQL Tutorial Unless you've been living on Mars for the last six to eight months, you've heard of open source software (OSS). This movement has got so much momentum that even the big boys are taking notice. Companies like Oracle, Informix, and a host of others are releasing their flagship database products
- Your First iPhone Application This tutorial shows how to create a simple iPhone application. It is not intended to give complete coverage of all the features available, but rather to introduce some of the technologies and give you a grounding in the fundamentals of the development process. You should read this document if you
- Advanced C# Contents .Inheritance .Interfaces .Delegates .Exceptions .Namespaces and Assemblies .Attributes .Threads .XML Comments ... Visibility protectedand internal protected: Visible in declaring class and its subclasses (more restricive than in Java) internal: Visible in declaring assembly (see later) protected internal: Visible in declaring class, its subclasses and the declaring assembly Example class Stack{ protected int[] values = new int[32]; protected int top = -1; public void Push(int x) {...} public int