473,468 Members | 1,531 Online
Bytes | Software Development & Data Engineering Community
Create 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 3727
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******@NoSpam.com> wrote in message
news:Oi**************@TK2MSFTNGP14.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******@NoSpam.com> wrote in message
news:Oi**************@TK2MSFTNGP14.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******@NoSpam.com> wrote in message
news:Oi**************@TK2MSFTNGP14.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.com> wrote in message
news:eL**************@TK2MSFTNGP09.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******@NoSpam.com> wrote in message
news:Oi**************@TK2MSFTNGP14.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******@NoSpam.com> wrote in message
news:%2****************@TK2MSFTNGP09.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.com> wrote in message
news:eL**************@TK2MSFTNGP09.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******@NoSpam.com> wrote in message
news:Oi**************@TK2MSFTNGP14.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.com> wrote in message
news:eL**************@TK2MSFTNGP09.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******@NoSpam.com> wrote in message
news:Oi**************@TK2MSFTNGP14.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******@NoSpam.com> wrote in message
news:Oi**************@TK2MSFTNGP14.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
Yes, UltraEdit does do synchronized scrolling.

"Dave Peterson" <pe******@verizonXSPAM.net> wrote in message
news:42***************@verizonXSPAM.net...
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 #11
The folks who made UltraEdit also make a product called UltraCompare.
It looks pretty cool but I have not tried it.

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

....

Picky: cmp -l and grep would be the more direct approach.

Nov 22 '05 #13

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

Similar topics

3
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...
4
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...
12
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...
3
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 &...
5
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...
6
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,...
20
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
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...
0
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: ...
2
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...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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,...
0
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,...
0
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
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...
0
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...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

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.