HexDive full changelog
HexDive 2026B
released Feb 22, 2026 (New Release)
Dialogs and Dialog Editor:
Added the @deRviBeignAr event code to the dialog's user-defined callback procedure. This
event triggers when a REPORTVIEW control has either the @csColEdit or @csAllEdit style and
a user is about to begin editing an item's text. The change-info parameter of the
user-defined callback procedure contains a three-element array with change information.
Element 0 indicates the one-based row number, element 1 indicates the one-based column
number, and element 2 holds the current text of the item whose text is about to be edited.
This event is made available using the DialogProcOptions function.
Added the @deRviEndAr event code to the dialog's user-defined callback procedure. This
event triggers when a REPORTVIEW control has either the @csColEdit or @csAllEdit style and
the user finishes editing an item's text. The change-info parameter of the user-defined
callback procedure contains a four-element array with change information. Element 0
indicates the one-based row number, element 1 indicates the one-based column number,
element 2 holds the previous text, and element 3 holds the user's new text of the edited
item. This event is made available using the DialogProcOptions function.
Addressed a problem with the REPORTVIEW control not consistently handling a F2, return, or
escape key press to start, end, or cancel a REPORTVIEW item edit.
Added the @deRviBeignAr event code to the dialog's user-defined callback procedure. This
event triggers when a REPORTVIEW control has either the @csColEdit or @csAllEdit style and
a user is about to begin editing an item's text. The change-info parameter of the
user-defined callback procedure contains a three-element array with change information.
Element 0 indicates the one-based row number, element 1 indicates the one-based column
number, and element 2 holds the current text of the item whose text is about to be edited.
This event is made available using the DialogProcOptions function.
Added the @deRviEndAr event code to the dialog's user-defined callback procedure. This
event triggers when a REPORTVIEW control has either the @csColEdit or @csAllEdit style and
the user finishes editing an item's text. The change-info parameter of the user-defined
callback procedure contains a four-element array with change information. Element 0
indicates the one-based row number, element 1 indicates the one-based column number,
element 2 holds the previous text, and element 3 holds the user's new text of the edited
item. This event is made available using the DialogProcOptions function.
Addressed a problem with the REPORTVIEW control not consistently handling a F2, return, or
escape key press to start, end, or cancel a REPORTVIEW item edit.
HexDive 2025C
released Jul 16, 2025 (New Release)
DLL 6.25cyc First appearing in WB 2025C
Address issue in the CredMan function that caused the password returned by the "read"
command to become corrupt intermittently.
This release addresses a security issue that causes a remote code execution vulnerability.
The exploit allows an attacker to execute system commands with a specially crafted URL.*
Address issue in the CredMan function that caused the password returned by the "read"
command to become corrupt intermittently.
This release addresses a security issue that causes a remote code execution vulnerability.
The exploit allows an attacker to execute system commands with a specially crafted URL.*
HexDive 2025B
released Jun 12, 2025 (New Release)
Modified the ClipGet function to generate an error when invalid data is present on the Windows per user clipboard. This changes prevents a memory access voliation that can cause abrut script termination. New function: NumConvert( value, from-base, to-base) Returns value in the to-base representation. value: number to convert. in-base: current base of value (valid bases: 2-36). to-base: new base of value (valid bases: 2-36). CredMon( command [, target [, user_type [, secret_def]]]) Reads and writes credentials to the Windows Credential Manager. Returns @True, @False, or an array depending on the command. command: "Domain", "Generic", "Read", "Enum", or "Delete". target: Name identifier of entry in the Credential Manager. user_type: The user name of the credential or credential type. Types are "Domain" or "Generic". Secret-def: Secret (password) associated with the credential or default text in the return array elements. WinBatch Studio: Added goto/gosub labels to the user defined procedure(UDP) toolbar. Labels begin with a colon(:) and appear before any user defined procedure names. Dialogs and Dialog Editor: Updated the dialog function to clear timers and remove pending timer events prior to dialog termination. Added a PROGRESS control. Use the PROGRESS control to display the progress of a lengthy operation performed inside a WIL Dialog user-defined callback procedure. The PROGESS contol does not use the variable, value, or font dialog template attributes. text - The text attribute is used to indicate the range and step of the PROGESS contols bar. Specifying 'DEFAULT' or using an empty string causes the control to use the range 0 to 100 with step incrememt of 10. Three numbers making up the min-max range and step must be vertical bar (|) delimited. For example, "0|100|10" represents the control's defaults. style - The control supports the @csInvisible(1) and @csDisabled(2) styles. In add
HexDive 2024B
released Sep 19, 2024 (New Release)
DLL 6.24bxb First appearing in WB 2024B
Added a WIL Map check to the ObjectType function's passed in data value to prevent the
function of attempting to convert WIL Maps to SafeArrays.
Addressed rarely occurring memory corruption problems when WIL map variables are cleared
as part of the script termination process.
Modified the VarType function to return zero(0) instead of generating an error when passed
an array variable along with an out of bounds subcript in the array's brackets.
Added support for embedded arrays and maps. WIL maps can be embedded in WIL maps and WIL
arrays, and WIL arrays can be embedded in WIL arrays and WIL maps.
Embedded arrays and maps elements are accessed using multiple sets of brackets after amd
map/array variable.
Limitations:
The ArraySearch function only supports linear (options 0 or 1) searches and only searches
the top-level array. For performance reasons, it does not search the embedded array.
The ArraySort function can not be used on arrays containing nested arrays or maps.
The WIL interpreter limits the number of bracket-sets following an array/map variable to 8
sets. Nesting arrays to a greater level hurts overall script performance and is
discouraged.
The ArrayInsert function can insert an array into an array but arrays can not be used to
initialize an entire inserted row or column.
The ArrayFilePut and ArrayFilePutCSV can not be used to write arrays containing embedded
arrays to a file.
The ArrayItemize, ArrayToStr, and ArrayLocate functions ignore embedded array elements.
WinBatch Compiler:
Added ability to input a user-specified timestamp URL to the "Code Signing Details" compiler
dialog box.
Removed all references to the Symantec timestamp URL. The Digicert
"http://timestamp.digicert.com" URL is now the default timestamp. The Digicert timestamp
server only provides RFC 3161 compliant services.
WinBatch Studio:
Fixed issue with multi-file search functionality that could cause a memory fault when the
search
Added a WIL Map check to the ObjectType function's passed in data value to prevent the
function of attempting to convert WIL Maps to SafeArrays.
Addressed rarely occurring memory corruption problems when WIL map variables are cleared
as part of the script termination process.
Modified the VarType function to return zero(0) instead of generating an error when passed
an array variable along with an out of bounds subcript in the array's brackets.
Added support for embedded arrays and maps. WIL maps can be embedded in WIL maps and WIL
arrays, and WIL arrays can be embedded in WIL arrays and WIL maps.
Embedded arrays and maps elements are accessed using multiple sets of brackets after amd
map/array variable.
Limitations:
The ArraySearch function only supports linear (options 0 or 1) searches and only searches
the top-level array. For performance reasons, it does not search the embedded array.
The ArraySort function can not be used on arrays containing nested arrays or maps.
The WIL interpreter limits the number of bracket-sets following an array/map variable to 8
sets. Nesting arrays to a greater level hurts overall script performance and is
discouraged.
The ArrayInsert function can insert an array into an array but arrays can not be used to
initialize an entire inserted row or column.
The ArrayFilePut and ArrayFilePutCSV can not be used to write arrays containing embedded
arrays to a file.
The ArrayItemize, ArrayToStr, and ArrayLocate functions ignore embedded array elements.
WinBatch Compiler:
Added ability to input a user-specified timestamp URL to the "Code Signing Details" compiler
dialog box.
Removed all references to the Symantec timestamp URL. The Digicert
"http://timestamp.digicert.com" URL is now the default timestamp. The Digicert timestamp
server only provides RFC 3161 compliant services.
WinBatch Studio:
Fixed issue with multi-file search functionality that could cause a memory fault when the
search
HexDive 0.6
released Feb 2, 2015 (New Release)
HexDive for Windows 7 - free download notice
Windows 7 Download periodically updates software information of HexDive from the publisher.
« BACK
My Account
Help
Windows 7 Software Coupons
-
WinX DVD Copy Pro
42% Off -
WinX HD Video Converter
56% Off -
MacX DVD Ripper Pro
50% Off -
Media Player Morpher
85% Off -
WinX MediaTrans
63% Off
My Saved Stuff
You have not saved any software.
Click "Save" next to each software.
Click "Save" next to each software.
Would you like to receive announcements of new versions of your software by email or by RSS reader? Register for FREE!
Windows 7 Downloads Picks
- Software Ideas Modeler Portable 15.25
- Software Ideas Modeler Portable x64 14.55
- QuickRev 1.10.2
- Portable RJ TextEd 4.18
- ExamDiff Pro 16.0.1.23
- Microsoft Visual Studio 2022 17.10.3
- Windows Phone Developer Tools 1.0.1
- Adobe AIR SDK for Linux 51.2.2.5
- Qt Creator 18.0.2
- NCache Enterprise Edition x64 4.4
- Geany Portable 2.1
- Open Validator 2.5.2
- DOSBox 0.74.3
- Google App Engine SDK 1.3.8
- XN Resource Editor Portable 3.0.0.1
- Syncro SVN Client x64 10.1 B2015040812
- Adobe Photoshop SDK CS6
- UDB Workbench 3.4.5
- Java Runtime Environment 64bit 10.0.2
- D-Fend Reloaded 1.4.4
Popular Tags
java
sql tool
database
file
tool
visual studio
view
visual basic
sql
net
xml
html
edit
dll
programming
software
sql tools
software protection
visual
obfuscation
sql server
code security
vb net
windows
development
editor
uml
decompiler
obfuscator
code protection
Popular Windows 7 Software
- Simply Fortran 3.41 Build 4438
- PHP 8.5.3
- dotConnect for MySQL Professional 10.1.33
- dotConnect for Oracle Professional Edition 11.1.33
- Miraplacid Text Driver SDK 8.0
- dbForge Documenter for SQL Server 2025.3
- Turbo C++ 3.0
- Windows Installer 4.5
- StyleControls 5.86
- Software Ideas Modeler Portable 15.25
- Free OCR C# 2022.8.7804
- Windows Post-Install 8.7.2
- Review Assistant 4.1
- Java SE Development Kit (JDK) 8 Update 221
- Software Ideas Modeler Portable x64 14.55
© 2026 Windows7Download.com - All logos, trademarks, art and other creative works are and remain copyright and property of their respective owners. Microsoft Windows is a registered trademarks of Microsoft Corporation. Microsoft Corporation in no way endorses or is affiliated with windows7download.com.



