Results for "Author: chris vega"
This application sez what it does, i made it in Win32 Assembly back in 1998 for use in Game Crackings; and been using the same algo for years until i seen a lot of submissions in PSC about Brute-Forcing word generations, but those authors doesn't know what is a real fast Brute-Force Algo is? a friend of mine and i converted the Win32 Assembly Algo to Visual Basic (inspite of its limitations) and this was the result; hope you enjoy it and you find its usage? anyway, please leave vote or comment!
Dynamic Link Library are located on certain space within your windows system; locating where they are always included on advanced programmers tasklist; This includes the Virtual Space of every exported API-Functions. Now, you might ask me whats the use of it, well in C++ and Win32 Assembly, we are able to call the API-Functions directly without *Importing* it to the Executable, making our code Smaller and Faster (Direct Calling) In which I am trying to achieve here using Visual Basic; If somehow you know how to directly Call/Access API-Functions using Memory Address, please drop me an email; thanks.
Fastest HTML Tag/Coment Coloring Procedure for RichTextBox Control, with less flickering on realtime!!! Plus a small trick that added-shadowing effect on RichTextBox Control, Download it now and Rate this code... Thanks, this is only a part of a bigger Application, coming up next...
This is a DEMO Application on Using my FileMapping VB Class Module to Simulate the use of File Mapping APIs Used in Visual C++ and Win32 Assembly, Why in Visual Basic, Why Not? FileMapping Class Module ======================== Tired of using the traditional Visual Basic File Handling Routines, or even FileSystemObject failed to read to a file byte-by-byte, or you want to Access a File Using Pointers for Better Scalability Performance, while Some Anti-Virus Blocks the use of very useful FileSystemObject, File Mapping Functions comes into a handy set of routines just waiting for you to use them, and take note, we people as Visual C++ and Win32 Assembly uses this functions, because we dont have easy macros. Why use easy routines, and limiting your performance, use File Mapping, thats the only way!!! yup, Visual Basic doesn't support Pointer Variables, but there is a CopyMemory "RtlMoveMemory" to do the same effects (a little slower than the real pointers but that will do just fine) Included in this ZIP file is my Class Module to perform FileMapping and a demo Project on how to use the File Mapping by Traversing to an Executable format and checks whether it is a valid Win32 Portable Executable Format and finally checks what type of PE it is, PE32 or PE64 ======================================================================== This code checks for a valid PE Executable Format To understand this Application, you need to consult your nearest PE Documentation. Win32 Assembly Codes are included in Comments are 100% working on TASM32 Compiler, Created by: Chris Vega [gwapo@models.com] http://trider.8m.com
To study one File-Format Structure, is a "TRUE" advanced task for a programmer, offset-by-offset and byte-by-byte definitions, and studying the Executable Format of the system you are working on one of this tasks. But to study a format, you must have a Viewer and a Format Description itself from the File-Format author/developer or by scanning through the use of Scanners/Detectors. Using the FileMapping Class I recently submitted to this Server, I have created a Portable Executable Viewer, an Application capable of: - Has support for Portable Executable 64-Bit - Opening and Detecting Portable Executable Type - Recalculating Image Checksum - View MS-DOS Compatibility Headers - View Portable Executable Headers - View Optional Headers - Generating a Full Report
When we talk about *real* Pointer and Memory Addressing, most of us thinks of Visual Basic limitations, ie, VB cannot access memory because VB has no pointer datatype for a variable declarations. This confusion grow even larger when a scenarios needed one *address* of a variable instead of its value, ie, from where in memory was that variable located into a virtual space of currently running process or a process or dynamic library. Well, forget those myths and read this Article to show you the inner light of Visual Basic Pointers.
Ok, you passed the area of writing a successful "Hello World, Watermellon" Visual Basic Application, and you are planning to move to a higher level, or still sticking to the current level you are working on, or you already wrote a great and advanced Application Prototype, and planning to relax while reviewing what you have writen, seeing if you can still optimized and improve the application while it is still reliable as ever. This article was written specially to improve your flow-control, what is the better if not the best way to make you application performs much better while still written in a read-coding-friendly way by guiding you on the most common mistakes in Visual Basic programmings.
What is Bit-Set? Is it applicable in VB? Becomes aware in your statements deeply, thats the only reason you may find this article useful; create a faster statements and understand the idea behind logical operations in your visual basic application programmings, I included a Demo Application (Zip) to show you Logical Operations in Visual Basic, please rate this article and the demo file
This Article has nothing to do with Visual Basic, but a simple answer to those emails i received from PSC members asking how to add Assembly Inline-Code to Visual Basic; i say why learning those when you can actually write your Win32 Assembly Code, in pure TASM format! the article was written in serries, but this is the only part i will be uploading here in PSC cause i am now on my way of designing my own website, soon i will be deleting all of my entries here =(
Dynamic Link Library are located on certain space within your windows system; locating where they are always included on advanced programmers tasklist; This includes the Virtual Space of every exported API-Functions. Now, you might ask me whats the use of it, well in C++ and Win32 Assembly, we are able to call the API-Functions directly without *Importing* it to the Executable, making our code Smaller and Faster (Direct Calling) In which I am trying to achieve here using Visual Basic; If somehow you know how to directly Call/Access API-Functions using Memory Address, please drop me an email; thanks.
This application sez what it does, i made it in Win32 Assembly back in 1998 for use in Game Crackings; and been using the same algo for years until i seen a lot of submissions in PSC about Brute-Forcing word generations, but those authors doesn't know what is a real fast Brute-Force Algo is? a friend of mine and i converted the Win32 Assembly Algo to Visual Basic (inspite of its limitations) and this was the result; hope you enjoy it and you find its usage? anyway, please leave vote or comment!
Fastest HTML Tag/Coment Coloring Procedure for RichTextBox Control, with less flickering on realtime!!! Plus a small trick that added-shadowing effect on RichTextBox Control, Download it now and Rate this code... Thanks, this is only a part of a bigger Application, coming up next...
This is a DEMO Application on Using my FileMapping VB Class Module to Simulate the use of File Mapping APIs Used in Visual C++ and Win32 Assembly, Why in Visual Basic, Why Not? FileMapping Class Module ======================== Tired of using the traditional Visual Basic File Handling Routines, or even FileSystemObject failed to read to a file byte-by-byte, or you want to Access a File Using Pointers for Better Scalability Performance, while Some Anti-Virus Blocks the use of very useful FileSystemObject, File Mapping Functions comes into a handy set of routines just waiting for you to use them, and take note, we people as Visual C++ and Win32 Assembly uses this functions, because we dont have easy macros. Why use easy routines, and limiting your performance, use File Mapping, thats the only way!!! yup, Visual Basic doesn't support Pointer Variables, but there is a CopyMemory "RtlMoveMemory" to do the same effects (a little slower than the real pointers but that will do just fine) Included in this ZIP file is my Class Module to perform FileMapping and a demo Project on how to use the File Mapping by Traversing to an Executable format and checks whether it is a valid Win32 Portable Executable Format and finally checks what type of PE it is, PE32 or PE64 ======================================================================== This code checks for a valid PE Executable Format To understand this Application, you need to consult your nearest PE Documentation. Win32 Assembly Codes are included in Comments are 100% working on TASM32 Compiler, Created by: Chris Vega [gwapo@models.com] http://trider.8m.com
To study one File-Format Structure, is a "TRUE" advanced task for a programmer, offset-by-offset and byte-by-byte definitions, and studying the Executable Format of the system you are working on one of this tasks. But to study a format, you must have a Viewer and a Format Description itself from the File-Format author/developer or by scanning through the use of Scanners/Detectors. Using the FileMapping Class I recently submitted to this Server, I have created a Portable Executable Viewer, an Application capable of: - Has support for Portable Executable 64-Bit - Opening and Detecting Portable Executable Type - Recalculating Image Checksum - View MS-DOS Compatibility Headers - View Portable Executable Headers - View Optional Headers - Generating a Full Report
When we talk about *real* Pointer and Memory Addressing, most of us thinks of Visual Basic limitations, ie, VB cannot access memory because VB has no pointer datatype for a variable declarations. This confusion grow even larger when a scenarios needed one *address* of a variable instead of its value, ie, from where in memory was that variable located into a virtual space of currently running process or a process or dynamic library. Well, forget those myths and read this Article to show you the inner light of Visual Basic Pointers.
Ok, you passed the area of writing a successful "Hello World, Watermellon" Visual Basic Application, and you are planning to move to a higher level, or still sticking to the current level you are working on, or you already wrote a great and advanced Application Prototype, and planning to relax while reviewing what you have writen, seeing if you can still optimized and improve the application while it is still reliable as ever. This article was written specially to improve your flow-control, what is the better if not the best way to make you application performs much better while still written in a read-coding-friendly way by guiding you on the most common mistakes in Visual Basic programmings.
What is Bit-Set? Is it applicable in VB? Becomes aware in your statements deeply, thats the only reason you may find this article useful; create a faster statements and understand the idea behind logical operations in your visual basic application programmings, I included a Demo Application (Zip) to show you Logical Operations in Visual Basic, please rate this article and the demo file
This Article has nothing to do with Visual Basic, but a simple answer to those emails i received from PSC members asking how to add Assembly Inline-Code to Visual Basic; i say why learning those when you can actually write your Win32 Assembly Code, in pure TASM format! the article was written in serries, but this is the only part i will be uploading here in PSC cause i am now on my way of designing my own website, soon i will be deleting all of my entries here =(
Dynamic Link Library are located on certain space within your windows system; locating where they are always included on advanced programmers tasklist; This includes the Virtual Space of every exported API-Functions. Now, you might ask me whats the use of it, well in C++ and Win32 Assembly, we are able to call the API-Functions directly without *Importing* it to the Executable, making our code Smaller and Faster (Direct Calling) In which I am trying to achieve here using Visual Basic; If somehow you know how to directly Call/Access API-Functions using Memory Address, please drop me an email; thanks.
This application sez what it does, i made it in Win32 Assembly back in 1998 for use in Game Crackings; and been using the same algo for years until i seen a lot of submissions in PSC about Brute-Forcing word generations, but those authors doesn't know what is a real fast Brute-Force Algo is? a friend of mine and i converted the Win32 Assembly Algo to Visual Basic (inspite of its limitations) and this was the result; hope you enjoy it and you find its usage? anyway, please leave vote or comment!