473,806 Members | 2,386 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Looking for a Good HEX editor

I didn't know what group to post this in... I'm looking for a good hex
editor. One that would permit me to view two files at the same time and as I
move the position in one it would also move it in the other. I'm trying to
compare the position location of two files.
Nov 22 '05 #1
12 3744
I don't know about that, but have you tried the old FC command (filecompare)
from the command window (DOS).

In the command window do

fc /? <cr>

for information on options.

--
Regards,
Tom Ogilvy

"M.Siler" <Jo******@NoSpa m.com> wrote in message
news:Oi******** ******@TK2MSFTN GP14.phx.gbl...
I didn't know what group to post this in... I'm looking for a good hex
editor. One that would permit me to view two files at the same time and as I move the position in one it would also move it in the other. I'm trying to
compare the position location of two files.

Nov 22 '05 #2
There is one here:

http://www.softcircuits.com/

I have notused it, so I can't say that it will do what you wnat,
but you can check it out.

Saga

"M.Siler" <Jo******@NoSpa m.com> wrote in message
news:Oi******** ******@TK2MSFTN GP14.phx.gbl...
I didn't know what group to post this in... I'm looking for a good hex
editor. One that would permit me to view two files at the same time and
as I move the position in one it would also move it in the other. I'm
trying to compare the position location of two files.

Nov 22 '05 #3

"M.Siler" <Jo******@NoSpa m.com> wrote in message
news:Oi******** ******@TK2MSFTN GP14.phx.gbl...
I didn't know what group to post this in... I'm looking for a good hex
editor. One that would permit me to view two files at the same time and as I move the position in one it would also move it in the other. I'm trying to
compare the position location of two files.


I like AraxisMerge. Very easy to use and very functional and not very
expensive. There is a sample version available as well.

Rick Sawtell
MCT, MCSD, MCDBA

Nov 22 '05 #4
I know the files aren't the same, but I want to make sure at byte xyz they
both have the same data type.

Right now I have both files open and I have to jump between them to check
that at byte 872 both have the phone number starting in that position.

"Tom Ogilvy" <tw******@msn.c om> wrote in message
news:eL******** ******@TK2MSFTN GP09.phx.gbl...
I don't know about that, but have you tried the old FC command
(filecompare )
from the command window (DOS).

In the command window do

fc /? <cr>

for information on options.

--
Regards,
Tom Ogilvy

"M.Siler" <Jo******@NoSpa m.com> wrote in message
news:Oi******** ******@TK2MSFTN GP14.phx.gbl...
I didn't know what group to post this in... I'm looking for a good hex
editor. One that would permit me to view two files at the same time and
as

I
move the position in one it would also move it in the other. I'm trying
to
compare the position location of two files.


Nov 22 '05 #5
FC doesn't do that, but if your using vb or Excel VBA, you can use low level
file io to open each and compare at byte level.
http://support.microsoft.com/default...b;en-us;151335
Working with Binary Access Files

It would be a lot easier to automate the check than to use hex editors.

--
Regards,
Tom Ogilvy

"M.Siler" <Jo******@NoSpa m.com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
I know the files aren't the same, but I want to make sure at byte xyz they
both have the same data type.

Right now I have both files open and I have to jump between them to check
that at byte 872 both have the phone number starting in that position.

"Tom Ogilvy" <tw******@msn.c om> wrote in message
news:eL******** ******@TK2MSFTN GP09.phx.gbl...
I don't know about that, but have you tried the old FC command
(filecompare )
from the command window (DOS).

In the command window do

fc /? <cr>

for information on options.

--
Regards,
Tom Ogilvy

"M.Siler" <Jo******@NoSpa m.com> wrote in message
news:Oi******** ******@TK2MSFTN GP14.phx.gbl...
I didn't know what group to post this in... I'm looking for a good hex
editor. One that would permit me to view two files at the same time and
as

I
move the position in one it would also move it in the other. I'm trying
to
compare the position location of two files.



Nov 22 '05 #6
Your could install Cygwin (http://www.cygwin.com/) and use utilities
like od and diff.

SK

M.Siler wrote:
I know the files aren't the same, but I want to make sure at byte xyz they
both have the same data type.

Right now I have both files open and I have to jump between them to check
that at byte 872 both have the phone number starting in that position.

"Tom Ogilvy" <tw******@msn.c om> wrote in message
news:eL******* *******@TK2MSFT NGP09.phx.gbl.. .

I don't know about that, but have you tried the old FC command
(filecompar e)
from the command window (DOS).

In the command window do

fc /? <cr>

for information on options.

--
Regards,
Tom Ogilvy

"M.Siler" <Jo******@NoSpa m.com> wrote in message
news:Oi****** ********@TK2MSF TNGP14.phx.gbl. ..

I didn't know what group to post this in... I'm looking for a good hex
editor. One that would permit me to view two files at the same time and
as

I

move the position in one it would also move it in the other. I'm trying
to
compare the position location of two files.



Nov 22 '05 #7
Tom Ogilvy wrote...
FC doesn't do that, but if your using vb or Excel VBA, you can use low level
file io to open each and compare at byte level.

http://support.microsoft.com/default...b;en-us;151335
Working with Binary Access Files

It would be a lot easier to automate the check than to use hex editors.

....

Maybe, but VB[A] isn't as easy to use for low-level file I/O as some
scripting languages. Unless the files are HUGE, it'd be easier to do
this in, say, Perl by loading both files in their entirety into
separate variables, then indexing these 'string' variables by byte or
word position. Easier and faster than using VB[A] binary file I/O with
byte record length.

Then again, there's always the venrable DEBUG.COM program, still
included in Windows XP. One could use separate instances in separate
console windows to display binary dumps between specific byte offsets
within the files. E.g.,

C:\test> debug somefile.bin
-d 326 327
13F8:0320 4B 87 K.
-q

C:\test>

And since DEBUG.COM accomodates I/O redirection, this could be
scripted.

Nov 22 '05 #8
I use UltraEdit (http://www.ultraedit.com) as my favorite text editor.

It has lots of options including comparing files and displaying in hex.

I'm not sure if has syncronized scrolling though.

"M.Siler" wrote:

I didn't know what group to post this in... I'm looking for a good hex
editor. One that would permit me to view two files at the same time and as I
move the position in one it would also move it in the other. I'm trying to
compare the position location of two files.


--

Dave Peterson
Nov 22 '05 #9
I use UltraEdit. It works great!!!

"M.Siler" <Jo******@NoSpa m.com> wrote in message
news:Oi******** ******@TK2MSFTN GP14.phx.gbl...
I didn't know what group to post this in... I'm looking for a good hex
editor. One that would permit me to view two files at the same time and as I move the position in one it would also move it in the other. I'm trying to
compare the position location of two files.

Nov 22 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2389
by: Tomas | last post by:
Hi! I'm looking for a replacement for the standard interactive python shell. So far I've tried IPython and PyCrust. I liked both, but I'm not 100% happy with any of them. My main complaint about IPython is its missing support for multiline editing. To do multiline editing, it has to start an external editor, but then I lose all the nice features like autocompletion. PyCrust supports multiline editing, but the autocompletion is not as...
4
3616
by: Frank Einstein | last post by:
Looking for a tool that can edit an XML file in a browser. The basic requirement is that the XML file is rendered as an HTML form with editable fields (including add/delete, preferably in accordance with with the document's XSD/DTD or other schema definition). I don't mind the actual form of this tool - could be implemented as a JSP/Servlet, ASP component, or browser plug-in for local or remote XML file access. Alternatively, it doesn't...
12
579
by: M.Siler | last post by:
I didn't know what group to post this in... I'm looking for a good hex editor. One that would permit me to view two files at the same time and as I move the position in one it would also move it in the other. I'm trying to compare the position location of two files.
3
325
by: Rob R. Ainscough | last post by:
I'm looking into a good Text Editor (either stand alone or can integrate into VS 2003) Needs to have the following: 1. Powerful Search & replace 2. column editing 3. macro recording & language Nice to have: 1. VB.NET syntax highlight and autofill
5
2226
by: Just call me James | last post by:
Hi, Coming away from the luxury of the delphi IDE has been something of a shock. As a consequence I've become aware that maybe I need to spend some money on a python IDE. As a beginner I reckon integrated debugging would be helpful.
6
2943
jhardman
by: jhardman | last post by:
I have gotten very used to writing my HTML code in notepad, but have recently switched to mac. Although NotePad has some problems, the mac equivalent, TextEdit, is terrible! I can save a file OK, but when I open it again it switches to WYSIWYG mode, which I can't stand, and I can't figure out how to get it off. What I would really like is a simple, easy editor, hopefully easier to use than one of those old command-line editors, but not...
20
6057
by: ram.rachum | last post by:
Hey, I'm looking for a good Python environment. That is, at least an editor and a debugger, and it should run on Windows. Does anyone have any idea?
0
265
by: maurice ling | last post by:
"The Python Papers" (http://pythonpapers.org), ISSN 1834-3147, is an online e-journal, covering articles on Python in the community, industry and academia. We were established in the second half of 2006 and launched our first issue in November 2006. Since then, we have released 3 more issues. Recently, we have also initiated a monograph series, which will be known as "The Python Papers Monograph Series"...
0
1627
by: zorro | last post by:
Hello there, I've tried several FTP programs but they're always missing some features that make life simpler. I'm hoping someone knows a program which allows me to do the 2 following things: 1) Select several files on the server, choose edit, and all the selected files will be opened in my text editor (SciTE) and, very important, in the same text editor window. I had an FTP program which opened several files at once, but for each file...
2
3162
by: PJ6 | last post by:
Years ago I looked for a text editor control that would do automatic keyword highlighting, to no avail. I found sample code to roll my own, but all of that was crap (mostly because of the way the RichTextBox base class was written, and the limitations of GDI+). I ended up coming to conclusion that I'd have to write my own in C++ to make it work right, at which point I gave up. Now it seems there are controls out there that may do the trick...
0
9719
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10618
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10366
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10371
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10110
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7649
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6877
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5678
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3850
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.