Ir al contenido principal

Entradas

Mostrando entradas de septiembre, 2011

Java Clase String

apuntes tomados de http://www.sc.ehu.es/sbweb/fisica/cursoJava/fundamentos/clases1/string.htm  referentes a la clase String, mismos que estan de forma integra a continuacion. --------------------------------------------------------------------------------------------------------------- Las clases del lenguaje Java Como habremos observado, y apreciaremos aún más en la parte correspondiente a la creación de applets, el IDE JBuilder proporciona un sistema de ayuda a medida que vamos escribiendo el código. También, podemos situar el cursor sobre el nombre de una clase, al pulsar el botón derecho del ratón, aparece un menú flotante. Seleccionando el primer elemento del menú,  Browse symbol at curso r, aparece la definición de la clase. Los paneles cambian, podemos seleccionar la función miembro que nos interesa en el panel de estructura (inferior izquierda) y ver su código fuente en el panel de contenido (a la derecha). En la figura podemos ver la clase  String  ...

Cómo registrar ficheros .DLL u .OCX en Windows

Algunos de los errores que nos da Windows se deben a que algún fichero con extensión .Dll u .OCX no está debidamente registrado. Sobre todo esto suele suceder con lo que se refiere al acceso a datos (RDO350.DLL por ejemplo) y con los controles ActiveX (son los ficheros con la extensión .ocx). En este caso a veces puede funcionar  registrar estos ficheros manualmente utilizando Regsvr32. El uso es Regsvr32 [/u] [/s] <nombre del fichero> Por ejemplo: REGSVR32 c:\windows\system\Dao350.dll Los parámetros opcionales [/u] [/s] significan lo siguiente: [/u] - lo utilizamos cuando queremos "desregistrar" una DLL (o un .ocx en vez de registrarlo). [/s] - modo "silencioso" - no despliega los mensajes durante la operación
en esta liga explica como se usa la libreria zip.dll con una aplicacion vb http://www.powerbasic.com/support/pbforums/showthread.php?t=24366 integro aqui el contenido por si en algun momento lo quitan Using Zip32.dll (www.info-zip.com) 13 Oct 2004, 02:49 PM I hope you have some interest in this ! Some PBWin codes to use zip32.dll © Info-zip (www.info-zip.com) TESTED WITH ZIP32.DLL version 2.30 (www.info-zip.com) + a main simple proc to test under PBWin (tested with ver 7.04) + an include file to get text description of ZIP errors (using ASM routine inspired from examples. Special thanks to Daniel Modler and Steve Hutchesson. Worth to visit Steve at  www.movsd.com)   + an include file for ZIP procs and Global variables =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Now, main application for testing: Code: '.executable Win 2000/XP '--------------------------------------------------------------------------------- #Option Version5 #Compile Exe #Debug Error Off #Tools Off...

DLL information site for Windows XP.

Tomado de http://xpdll.nirsoft.net/   Welcome to DLL information site for Windows XP. This site was built by scanning all DLL files located in system32 directory of Windows XP with SP3 and creating (with automatic script) a Web page for each DLL with all found infromation. Each DLL information page includes: Version information - product name, company, file desctiption, and so on. DLL popularity - Shows you how many DLLs are statically linked to this file. List of files that are statically linked to the specified file. Displayed only when the number of files in the list is 10 or less. Sections information - Shows you the code and data sections in the DLL. Resources information - Displays a summary of resources stored in the DLL (icons, bitmaps, cursors, dialog-boxes, and so on) Icons Thumbnail - A Thumbnail with all icons stored in the DLL. Cursors Thumbnail - A Thumbnail with all cursors stored in the DLL. Strings information - Displays a list of strings stored in t...

uso del WinApi Shell para crear archivos ZIP

Introduction This is a follow up article to the one that I wrote about decompressing Zip files. With this code you can use the Windows Shell API in C# to compress Zip files and do so without having to show the Copy Progress window shown above. Normally when you use the Shell API to compress a Zip file, it will show a Copy Progress window even when you set the options to tell Windows not to show it. To get around this, you move the Shell API code to a separate executable and then launch that executable using the .NET Process class being sure to set the process window style to ' Hidden '. Background Ever needed to compress Zip files and needed a better Zip than what comes with many of the free compression libraries out there? I.e. you needed to compress folders and subfolders as well as files. Windows Zipping can compress more than just individual files. All you need is a way to programmatically get Windows to silently compress these Zip files. Of course you could spend $3...