Welcome![Sign In][Sign Up]
Location:
Search - hex

Search list

[Linux-Unixsrec_cat

Description: 工具srec_cat, 可将bin转换为hex, 命令格式如下:srec_cat blob -Binary -Output blob.hex -Motorola 另该工具也支持hex转bin, 如下: srec_cat bootrom_uncmp.hex -Motorola -Output bootrom_uncmp.bin -Binary 适用于某些只支持二进制格式的烧录 -Tools srec_cat, could be bin convert hex, the command format is as follows: srec_cat blob-Binary-Output blob.hex-Motorola The tool also supports another hex to bin, as follows: srec_cat bootrom_uncmp.hex-Motorola-Output bootrom_uncmp.bin-Binary applicable in some binary format only supports the writers
Platform: | Size: 74752 | Author: 刘俊 | Hits:

[Editorfshedcode102502

Description: HEX编辑器,支持查找替换,可以代替windows grep工具-HEX editor, support for the replacement search, you can replace the windows grep tool
Platform: | Size: 90112 | Author: 张敏健 | Hits:

[Windows DevelopSuperHex

Description: 很方便的将二进制/十六进制文件转换为Intel HEX格式文件的小程序-Very convenient to binary/hex file is converted to Intel HEX format files applet
Platform: | Size: 2100224 | Author: 王晓琴 | Hits:

[SCM500W.hex

Description: 电动车控制器 500W PLC单片机 16F72 驱动程序-Electric cars 16F72 Singlechip 500W PLC controller driver
Platform: | Size: 4096 | Author: 陶子平 | Hits:

[Otherhex

Description: This example program is provided to get to read the file into a byte array quickly. Then format the bytes and display them.
Platform: | Size: 3072 | Author: ling | Hits:

[OtherEncoder

Description: 各种编码(ucs-2, utf-8, GBK, Hex等)的编解码工具-A variety of encoding (ucs-2, utf-8, GBK, Hex, etc.) codec tool
Platform: | Size: 181248 | Author: wainguo | Hits:

[File OperateHex

Description: 打开文件,并转换成二进制文件 对初学者又很大帮助。-Open the file, and converted into binary files also very helpful for beginners.
Platform: | Size: 1882112 | Author: rain | Hits:

[EditorHexView

Description: 以十六进制显示文档内容,源程序为网上收集,如有侵权,马上删除-Hex files to display the contents of the source code for the online collection, if there is infringement, immediately delete
Platform: | Size: 2136064 | Author: dfx | Hits:

[ELanguagehexedit_20070930

Description: 16进制HEX编辑器DELPHI控件源码。-16 hexadecimal HEX editor DELPHI source control.
Platform: | Size: 311296 | Author: jacku | Hits:

[GUI DevelopVerify

Description: 计算数据校验的软件,支持ASCII和HEX,校验方式有LRC(和校验)和CRC16。希望大家喜欢-Calculation data check software, support ASCII and HEX, check the way LRC (and checksum), and CRC16. I hope everyone likes
Platform: | Size: 47104 | Author: 冯柯 | Hits:

[ARM-PowerPC-ColdFire-MIPSasss

Description: 使用EXCEL中VBA把HEX转为BIN文件-EXCEL in the use of VBA to BIN to HEX file
Platform: | Size: 3072 | Author: | Hits:

[OS programsource

Description: 十六进制编辑器程序源代码,可引进行十六进制的搜索,可以设置字体颜色等-Hex editor program source code, may be cited for Hexadecimal search, you can set the font color, etc.
Platform: | Size: 129024 | Author: 张三 | Hits:

[OtherHEXVIEW

Description: HEX - VIEW 源代码, DOS 下的十六进制查看器,在BC++ 3.1 下编译通过.-HEX- VIEW source code, DOS under the hex viewer, in BC++ 3.1 adopted under the compiler.
Platform: | Size: 3072 | Author: yang | Hits:

[EditorHexEditor_src

Description: ASCII HEX Editor 國外源碼可參考一下-ASCII HEX Editor foreign source could be a reference
Platform: | Size: 68608 | Author: chingrenn | Hits:

[EditorHexEditor_demo

Description: ASCII HEX Editor 國外源碼可參考一下 這是Demo-ASCII HEX Editor foreign source can refer to this is the Demo
Platform: | Size: 8192 | Author: chingrenn | Hits:

[SCMC51

Description: 51单片机,PIC单片机。。。。都可以用的智能反编译器,可以将hex文档转化为源文件,非常有用哦!-51 SCM, PIC Singlechip. . . . Can be used in smart Decompiler can be hex files into source files, very useful, Oh!
Platform: | Size: 253952 | Author: wilson | Hits:

[File Operatehexedit_demo

Description: 实现ascii、hex码随意转换,支持中文汉字的hex码显示-The realization of ascii, hex conversion code at random, support Chinese characters display the hex code
Platform: | Size: 20480 | Author: 边城开 | Hits:

[Algorithmhex

Description: 该算法可以成功的实现二进制到十六进制的转换。可以做为编码的子程序使用-The algorithm can successfully achieve the binary to hexadecimal conversion. Subroutine can be used as encoding to use
Platform: | Size: 1024 | Author: zhangmeina | Hits:

[File OperateReadFile

Description: 打开一个TXT文件并显示在EDIT控件中 步骤: 1.新建一个基于对话框的工程,名称为ReadFile 2.在界面上添加一个按钮(IDC_BUTTON1)和一个文本编辑(IDC_EDIT1) IDC_EDIT1的属性:多行、可下拉滚动条. 3.编辑按钮触发事件(void CReadFileDlg::OnButton1()) void CReadFileDlg::OnButton1() { // TODO: Add your control notification handler code here CString sFileFilter="*.hex|*.hex" CString sFileName CFileDialog fDlg(true,NULL,NULL,OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,sFileFilter,NULL) fDlg.DoModal() sFileName=fDlg.GetFileName() if(sFileName!="") { CFile file(sFileName,CFile::modeRead) int nFileLength=file.GetLength() char *buffer HGLOBAL hgl=::GlobalAlloc(GMEM_MOVEABLE,nFileLength+1) buffer=(char *)::GlobalLock(hgl) file.Read(buffer,nFileLength) SetDlgItemText(IDC_EDIT1,buffer) ::GlobalUnlock(hgl) ::GlobalFree(hgl) } UpdateData(false) } -Open a TXT file and displayed in the EDIT control steps: 1. Create a new dialog-based project, known as the ReadFile2. In the interface to add a button (IDC_BUTTON1) and a text editor (IDC_EDIT1) IDC_EDIT1 properties: multi-line, can be drop-down scroll bar .3. Edit button trigger events (void CReadFileDlg:: OnButton1 ()) void CReadFileDlg:: OnButton1 () (//TODO: Add your control notification handler code here CString sFileFilter =*. hex |*. hex CString sFileName CFileDialog fDlg (true, NULL, NULL, OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, sFileFilter, NULL) fDlg.DoModal () sFileName = fDlg.GetFileName () if (sFileName! =) (CFile file (sFileName, CFile:: modeRead) int nFileLength = file.GetLength () char* buffer HGLOBAL hgl =:: GlobalAlloc (GMEM_MOVEABLE, nFileLength+ 1) buffer = (char*):: GlobalLock (hgl) file.Read (buffer, nFileLength) SetDlgItemText (IDC_EDIT1, buffer):: GlobalUnlock (hgl):: GlobalFree (hgl)) UpdateData (false))
Platform: | Size: 1888256 | Author: 这程子 | Hits:

[Embeded-SCM DevelopFLASH

Description: TMS320C6713B *.OUT 文件转换*.hex 程序-TMS320C6713B*. OUT file conversion program*. hex
Platform: | Size: 60416 | Author: 沈烈 | Hits:
« 1 2 3 4 5 67 8 9 10 11 ... 50 »

CodeBus www.codebus.net