XEROF

 

Cracking the Office 2007 .bin file format


Ever since I learned that Microsoft actually introduces new binary file formats in the Office 2007 timeframe at the same time that they are telling everyone that XML is their new mantra, I wondered how the .bin file format would read. At the time of writing, it's totally undocumented. But given that I am an Excel expert, especially the file format, out of curiosity I wanted to know more about this.

A couple introductory elements : when saving an Excel workbook as .xlsb instead of .xslx using the UI, some parts of the new zip file format are saved as .bin zip entries instead of .xml, not all. Typical such parts are the main workbook part, the styles part, the shared strings part, all worksheet parts. In fact, everything that should be .xml except the relationship parts that meet the OPC (open packaging conventions, a sub-file format).

The easiest thing to do to get started is to create a simple file, than save it as .xlsx and as .xlsb ("b" stands for binary). Then open the .bin parts in a hex editor and compare this to the .xml version.

Here follows the reverse engineering of the workbook part.

Here is the workbook part in .xml, followed by the workbook part in .bin :

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<workbook xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/5/main"
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">
<fileVersion lastEdited="4" lowestEdited="4" rupBuild="4017"/>
<workbookPr defaultThemeVersion="123820"/>
<bookViews>
<workbookView xWindow="360" yWindow="60" windowWidth="11295" windowHeight="5580"/>
</bookViews>
<sheets>
<sheet name="Sheet1" sheetId="1" r:id="rId1"/>
<sheet name="Sheet2" sheetId="2" r:id="rId2"/>
<sheet name="Sheet3" sheetId="3" r:id="rId3"/>
</sheets>
<calcPr calcId="122211"/>
<webPublishing codePage="1252"/>
</workbook>

83 01 00 80 01 14 04 04 b1 0f 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
99 01 0c 20 00 01 00 ac e3 01 00 00 00 00 00 87 01 00 9e 01 1d 68 01 00 00 3c
00 00 00 1f 2c 00 00 cc 15 00 00 58 02 00 00 00 00 00 00 00 00 00 00 78 88 01
00 8f 01 00 9c 01 28 00 00 00 00 00 00 00 00 01 00 00 00 04 00 00 00 72 00 49
00 64 00 31 00 06 00 00 00 53 00 68 00 65 00 65 00 74 00 31 00 9c 01 28 00 00
00 00 00 00 00 00 02 00 00 00 04 00 00 00 72 00 49 00 64 00 32 00 06 00 00 00
53 00 68 00 65 00 65 00 74 00 32 00 9c 01 28 00 00 00 00 00 00 00 00 03 00 00
00 04 00 00 00 72 00 49 00 64 00 33 00 06 00 00 00 53 00 68 00 65 00 65 00 74
00 33 00 90 01 00 9d 01 19 63 dd 01 00 01 00 00 00 64 00 00 00 fc a9 f1 d2 4d
62 50 3f 01 00 00 00 6a 96 04 06 00 00 00 00 00 00 9a 01 01 00 a9 04 0b 07 00
03 60 00 00 00 e4 04 00 00 9b 01 01 00 84 01 00



For each line, I have put the .xml part followed by the bits from the .bin part. Here is how to read each .bin slice : there is a record identifier consisting in two bytes encoded using little endian, followed by a single byte which is the length of the record in bytes (surrounded by parentheses), followed by the record content itself. Here goes :

<workbook>
83 01 (00)

<fileVersion lastEdited="4" lowestEdited="4" rupBuild="4017"/>
80 01 (14) 04 04 b1 0f 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

<workbookPr defaultThemeVersion="123820"/>
99 01 (0c) 20 00 01 00 ac e3 01 00 00 00 00 00

<bookViews>
87 01 (00)

<workbookView xWindow="360" yWindow="60" windowWidth="11295" windowHeight="5580"/>
9e 01 (1d) 68 01 00 00 3c 00 00 00 1f 2c 00 00 cc 15 00 00 58 02 00 00 00 00 00 00 00 00 00 00 78

</bookViews>
88 01 (00)

<sheets>
8f 01 (00)

<sheet name="Sheet1" sheetId="1" r:id="rId1"/>
9c 01 (28) 00 00 00 00 00 00 00 00 01 00 00 00 04 00 00 00 72 00 49 00 64 00 31 00 06 00 00 00 53 00 68 00 65
00 65 00 74 00 31 00

<sheet name="Sheet2" sheetId="2" r:id="rId2"/>
9c 01 (28) 00 00 00 00 00 00 00 00 02 00 00 00 04 00 00 00 72 00 49 00 64 00 32 00 06 00 00 00 53 00 68 00 65
00 65 00 74 00 32 00

<sheet name="Sheet3" sheetId="3" r:id="rId3"/>
9c 01 (28) 00 00 00 00 00 00 00 00 03 00 00 00 04 00 00 00 72 00 49 00 64 00 33 00 06 00 00 00 53 00 68 00 65
00 65 00 74 00 33 00

</sheets>
90 01 (00)

<calcPr calcId="122211"/>
9d 01 (19) 63 dd 01 00 01 00 00 00 64 00 00 00 fc a9 f1 d2 4d 62 50 3f 01 00 00 00 6a

96 04 (06) 00 00 00 00 00 00

9a 01 (01) 00

<webPublishing codePage="1252"/>
a9 04 (0b) 07 00 03 60 00 00 00 e4 04 00 00

9b 01 (01) 00

</workbook>
84 01 (00)


A couple comments :
  • the record identifiers are not those from BIFF8. Believe it or not, the Excel team had so much time in their hands that they really invented an entirely new binary file format.
  • not all xml elements have a match for their binary counterpart, meaning that those intending to implementing a read or write routine will find themselves in troubles. Here, the binary writer knows more about what's going on, and stores more info that you cannot find in the xml counterpart.
  • the xml and bin parts are not interchangeable. You can not create the bin part from the xml part because the bin part stores more. You can not create the xml part from the bin part either because the namespaces and xml parent/children relations as well as what should be stored as an xml element, versus what should be stored as an xml attribute, are not defined in the bin part.


This is not the new XML world we've been told, I am afraid. Lock-in through undocumented file formats is here to stay.




[Update] : I have finally managed to post an article about my journey in Office 2007 .bin file formats. You get a lot of undocumented pieces, dirty secrets, plus a BIFF12 reader which can read any cell of an arbitrary Excel 2007 binary workbook.
Posted on 07-August-2006 18:36 | Category: Microsoft | comment[0] | trackbacks[174]

Trackback: http://www.bloglines.com/myblogs_display?sub=22913866&site=1343583
Trackback: http://dicks-blog.com/
Trackback: http://www.dicks-blog.com
Trackback: http://www.bloglines.com/myblogs_display?sub=34748861&site=5796221
Trackback: http://www.dicks-blog.com/
Trackback: http://www.bloglines.com/myblogs_display?sub=21530954&site=1343583
Trackback: http://www.dailydoseofexcel.com/archives/2006/08/09/reading-binary/
Trackback: http://www.dailydoseofexcel.com/
Trackback: http://www.bloglines.com/myblogs_display?all=1
Trackback: http://www.google.com/reader/view/
Trackback: http://www.newsgator.com/ngs/subscriber/WebEd2.aspx?fld=0
Trackback: http://www.bloglines.com/myblogs_display?folder=22221154
Trackback: http://www.dailydoseofexcel.com/?p=1469
Trackback: http://www.bloglines.com/myblogs_display?sub=32437942&site=5796221
Trackback: http://www.newsalloy.com/
Trackback: http://www.bloglines.com/myblogs_display?sub=24662160&site=1343583
Trackback: http://bloglines.com/myblogs_display?sub=29486111&site=1343583
Trackback: http://www.dailydoseofexcel.com
Trackback: http://www.dailydoseofexcel.com/archives/category/excel12/
Trackback: http://rss.avantgo.net:84/article.html?url=http%3A%2F%2Fwww.dailydoseofexcel.com%2Ffeed%2F&title=Reading%20Binary&images=1
Trackback: http://dailydoseofexcel.com/
Trackback: http://www.bloglines.com/myblogs_display?sub=18697337&site=1343583
Trackback: http://www.bloglines.com/myblogs_display?sub=33596656&site=5796221
Trackback: http://www.netvibes.com
Trackback: http://www.google.co.in/search?hl=en&q=cracking+office+2007&meta=
Trackback: http://www.google.com/search?hl=en&lr=&q=cracking+a+.bin+file&btnG=Search
Trackback: http://www.google.ch/search?svnum=10&hl=fr&lr=&rls=GGLD,GGLD:2004-15,GGLD:en&q=stephane%20rodriguez&sa=N&tab=iw
Trackback: http://www.google.com/search?hl=en&q=excel+xlsb+binary
Trackback: http://www.dailydoseofexcel.com/page/2/
Trackback: http://www.google.ca/search?q=biff8+reader&hl=en&lr=&start=30&sa=N
Trackback: http://answerbus.com/cgi-bin/answerbus/answer.cgi
Trackback: http://www.memoire-vive.org/awstats.pl?framename=mainright&output=refererpages
Trackback: http://www.google.com/search?q=bin+record+file+format+microsoft&hl=en&lr=&rls=GGLJ%2CGGLJ%3A2006-30%2CGGLJ%3Aen-GB
Trackback: http://www.google.de/search?hl=de&q=biff12+reader&meta=
Trackback: http://www.google.co.in/search?hl=en&q=Reading+BIFF-12+files&btnG=Google+Search&meta=
Trackback: http://www.google.com/search?q=bin+file+format&hl=en&lr=&start=10&sa=N
Trackback: http://www.google.com/search?hl=en&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=perforce+codepage+utf8&spell=1
Trackback: http://www.google.com/search?hl=zh-CN&newwindow=1&q=excel+file+encrypt+format+BIFF8&btnG=%E6%90%9C%E7%B4%A2&lr=
Trackback: http://www.dailydoseofexcel.com/index.php?paged=3/
Trackback: http://www.google.co.in/search?hl=en&q=%22office+2007%22+bin&meta=
Trackback: http://www.google.be/search?hl=en&q=.xlsb+file+format&meta=
Trackback: http://blogs.msdn.com/davbosch/archive/2006/08/29/730183.aspx
Trackback: http://blogs.msdn.com/davbosch/default.aspx
Trackback: http://www.google.com/search?complete=1&hl=en&lr=&q=biff12+WRITER
Trackback: http://www.google.com/search?q=excel+WindowHeight&hl=en&lr=&start=60&sa=N
Trackback: http://www.google.com/search?hl=en&lr=&rls=GGGL%2CGGGL%3A2006-29%2CGGGL%3Aen&q=Cracking+microsoft+office+2007&btnG=Search
Trackback: http://www.dailydoseofexcel.com/index.php?paged=4/
Trackback: http://www.google.com/search?complete=1&hl=en&q=biff12+writer
Trackback: http://www.google.com/search?q=office+2007+4017&start=0&ie=utf-8&oe=utf-8&client=firefox-a&rls=org.mozilla:en-US:official
Trackback: http://www.google.ca/search?hl=en&q=perforce+file+formats&btnG=Google+Search&meta=
Trackback: http://www.google.com/search?hl=en&q=.bin+file+format
Trackback: http://www.google.com.br/search?q=cracking+office+2007&start=0&ie=utf-8&oe=utf-8&client=firefox-a&rls=org.mozilla:pt-BR:official
Trackback: http://www.google.com/search?hs=kGI&hl=en&lr=&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial_s&q=decrypting+.wz+files&btnG=Search
Trackback: http://www.google.com/search?q=open+a+.bin+file&hl=en&lr=&start=20&sa=N
Trackback: http://www.google.com.sg/search?q=excel+undocumented&hl=zh-CN&lr=&client=firefox-a&rls=org.mozilla:en-US:official_s&start=100&sa=N
Trackback: http://216.109.125.130/search/cache?p=excel+binary+format&fr=yfp-t-500&toggle=1&ei=UTF-8&u=blogs.msdn.com/davbosch/archive/2006/08/29/730183.aspx&w=excel+binary+format&d=A5egsSQ8NX8K&icp=1&.intl=us
Trackback: http://www.google.com/search?q=.bin+file&hl=en&lr=&ie=UTF-8&start=10&sa=N
Trackback: http://www.google.dk/search?hl=da&q=cracking+office+2007&meta=
Trackback: http://msdn.microsoft.com/newsgroups/default.aspx?dg=microsoft.public.excel.programming&tid=7cd470a4-34a4-4e06-a68c-9c1688caab41&lang=en&cr=US&p=1
Trackback: http://www.google.co.uk/search?q=office+2007+binary+workbook&start=0&ie=utf-8&oe=utf-8
Trackback: http://www.google.com/search?q=hex%20editor%20biff8%20excel
Trackback: http://www.microsoft.com/office/community/en-us/default.mspx?&query=biff&lang=en&cr=US&guid=&sloc=en-us&dg=microsoft.public.excel.programming&p=1&tid=7cd470a4-34a4-4e06-a68c-9c1688caab41&mid=4249cea0-992a-4615-b715-189629c30fbe
Trackback: http://groups.google.com/group/microsoft.public.excel.programming/browse_thread/thread/86f58256c02a9f8a/2aa77e4be8bb894e?lnk=st&q=(%22excel+12%22+OR+%22xl+12%22+OR+%22excel+2007%22+OR+%22xl+2007%22+OR+2007+OR+b2tr+OR+beta+OR+xl12+OR+xl2007+OR+excel12+OR+e
Trackback: http://www.microsoft.com/office/community/en-us/default.mspx?query=BIFF&dg=&cat=en-us-office&lang=en&cr=US&pt=3a4e9862-cdce-4bdc-8664-91038e3eb1e9&catlist=&dglist=&ptlist=&exp=&sloc=en-us
Trackback: http://www.google.com/search?q=excel+2007+workbook+format&rls=com.microsoft:*&ie=UTF-8&oe=UTF-8&startIndex=&startPage=1
Trackback: http://www.google.com.tr/search?hl=en&q=how+to+record+bin+files
Trackback: http://www.google.ro/search?hl=ro&q=perforce+file+format&meta=
Trackback: http://www.google.co.in/search?q=read+.bin+file&hl=en&lr=&start=10&sa=N
Trackback: http://www.google.com.pe/search?hl=es&q=cracking+office+2007+&meta=
Trackback: http://www.google.fr/search?hl=fr&q=Stephane+R+xlsgen&meta=
Trackback: http://www.google.fr/search?q=Stephane+R+xlsgen&ie=utf-8&oe=utf-8&rls=org.mozilla:en-US:official&client=firefox-a
Trackback: http://www.google.ca/search?q=read+bin+file&hl=en&lr=&start=20&sa=N
Trackback: http://groups.google.com/group/microsoft.public.excel.programming/browse_thread/thread/86f58256c02a9f8a/2aa77e4be8bb894e?lnk=gst&q=biff&rnum=7
Trackback: http://www.google.cl/search?hl=es&q=cracking++office+2007+plus&meta=
Trackback: http://www.google.ca/search?q=read+a+.bin+file&hl=en&lr=&start=10&sa=N
Trackback: http://www.dailydoseofexcel.com/index.php?paged=6/
Trackback: http://www.google.com/search?q=how+to+read+a+.bin+file&hl=en&lr=&client=safari&rls=en&start=10&sa=N
Trackback: http://www.google.com/search?ie=UTF-8&oe=UTF-8&sourceid=gd&q=ms+office+2007+cracking
Trackback: http://www.google.nl/search?q=bin+files&hl=nl&lr=&start=30&sa=N
Trackback: http://www.google.com/search?q=BIN+file&hl=en&lr=&start=10&sa=N
Trackback: http://www.google.com/search?client=safari&rls=sv-se&q=excel%2Bxml%2BWindowHeight%2Bfull&ie=UTF-8&oe=UTF-8
Trackback: http://www.google.com/search?q=rootkit+removal+formatting&hl=en&lr=&client=firefox-a&rls=org.mozilla:en-US:official_s&start=20&sa=N
Trackback: http://www.google.com/search?hl=en&q=cannot+process+file+xlsx
Trackback: http://search.blogger.com/?q=officie+2007+&btnG=Pesquisar+blogs&hl=pt-BR&ie=UTF-8&x=0&y=0&ui=blg
Trackback: http://www.google.fr/search?sourceid=navclient&hl=fr&ie=UTF-8&rls=GGLD,GGLD:2004-42,GGLD:fr&q=how+to+read+a+bin+format
Trackback: http://www.google.com/search?hl=en&lr=&q=excel+.bin+file
Trackback: http://www.dailydoseofexcel.com/index.php?paged=7/
Trackback: http://blogs.gotdotnet.com/davbosch/default.aspx?p=2
Trackback: http://www.google.fr/blogsearch?hl=fr&q=06+78+31+01+88&btnG=Rechercher&lr=
Trackback: http://saturn/c7flexwiki/default.aspx/MyWiki/BinaryReader.html
Trackback: http://www.google.com/search?hl=en&lr=&q=biff12+excel&btnG=Search
Trackback: http://groups.google.com/group/microsoft.public.excel.programming/tree/browse_frm/thread/86f58256c02a9f8a/306bac9fc2306477?rnum=1&q=excel+xlsx&_done=%2Fgroup%2Fmicrosoft.public.excel.programming%2Fbrowse_frm%2Fthread%2F86f58256c02a9f8a%2F2aa77e4be8bb894e%
Trackback: http://blogs.gotdotnet.com/davbosch/archive/2006/08/29/730183.aspx
Trackback: http://www.google.com/search?hl=en&lr=&q=rupbuild+excel
Trackback: http://www.google.fi/search?hl=fi&q=bin+file+reverse+engineering&meta=
Trackback: http://www.google.co.uk/search?hl=en&q=biff12+reader&meta=
Trackback: http://search.msn.com/results.aspx?q=xl2007&locale=en-us&FORM=I7AW
Trackback: http://www.microsoft.com/office/community/en-us/default.mspx?query=BIFF&dg=microsoft.public.excel.programming&cat=en-us-excel&lang=en&cr=US&pt=f3f7ac8a-4ea0-4c36-bed9-8feae6d75298&catlist=&dglist=&ptlist=&exp=&sloc=en-us
Trackback: http://www.google.co.jp/search?num=50&hl=ja&as_qdr=all&q=excel+sheetid+name&lr=
Trackback: http://www.google.com/
Trackback: http://www.google.com.pk/search?q=editing+bin+file+format+software&hl=en
Trackback: http://msdn.microsoft.com/newsgroups/Default.aspx?query=excel+BIFF&dg=&cat=en-us-msdn&lang=en&cr=US&pt=&catlist=774F24A2-F71F-425F-AC2B-DC48AB0DA5C9&dglist=&ptlist=&exp=&sloc=en-us
Trackback: http://www.google.com/search?q=excel+file+format+2007+BIFF12&hl=en&lr=&start=10&sa=N
Trackback: http://www.google.ca/search?hl=en&q=read+office+bin+file&meta=
Trackback: http://groups.google.com.sg/group/microsoft.public.excel.programming/browse_thread/thread/86f58256c02a9f8a/2aa77e4be8bb894e?lnk=st&q=BIFF+EXCEL&rnum=8
Trackback: http://fr.search.yahoo.com/search?ei=utf-8&fr=slv1-mdp&p=http%2f%2fschemas.openxmlformats.org
Trackback: http://groups.google.ru/group/microsoft.public.excel.programming/browse_thread/thread/86f58256c02a9f8a/2aa77e4be8bb894e?lnk=st&q=&rnum=11&hl=ru
Trackback: http://search.yahoo.com/search;_ylt=A0oGkmobeHZFZMwASaNXNyoA?p=excel+file+reader+writer+biff8&ei=UTF-8&fr=yfp-t-501&x=wrt
Trackback: http://www.google.com.sa/search?q=office+2007+with+.bin+file&hl=ar&lr=&start=20&sa=N
Trackback: http://www.google.com/search?q=excel+biff12&hl=en&lr=&start=30&sa=N
Trackback: http://search.yahoo.com/search?p=Office+2007.bin&sp=1&fr2=sp-bottom&fr=yfp-t-501&toggle=1&cop=mss&ei=UTF-8&ei=UTF-8&SpellState=n-2101329161_q-AvDjy46lMf4qfI1AD0nJ3QAAAA%40%40
Trackback: http://www.pcreview.co.uk/forums/thread-2746822.php
Trackback: http://search.msn.com/results.aspx?q=cracking+office+2007&FORM=MSNH
Trackback: http://www.google.com/search?q=zip+and+xlsx+interchangeable&rls=com.microsoft:en-us&ie=UTF-8&oe=UTF-8&startIndex=&startPage=1
Trackback: http://groups.google.it/group/microsoft.public.excel.programming/browse_thread/thread/86f58256c02a9f8a/2aa77e4be8bb894e?hl=it&lnk=st&q=EXCEL+2007++BIFF
Trackback: http://wiredbox.net/Forum/Thread321691_Excel_12_and_BIFF_Format_for_new_-xlsx_files.aspx
Trackback: http://tw.search.yahoo.com/search?fr=yfp&ei=UTF-8&p=office+2007+.bin
Trackback: http://maeboulware.envy.nu/4e1240/vault.com-gold-member-password.html
Trackback: http://www.google.com/search?q=biff12+format&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a
Trackback: http://www.vcma.jed.pl
Trackback: http://doiop.com/slots-cs
Trackback: http://www.answerbag.com/profile/?id=290543
Trackback: http://www.themssforum.com/ExcelProgramming/Excel-BIFF/
Trackback: http://www.google.com/search?hl=en&client=firefox-a&channel=s&rls=org.mozilla%3Aen-US%3Aofficial&q=PUT+THE+sheet+1+0f+1+into+EXCEL+CELL&btnG=Search
Trackback: http://search.daum.net/cgi-bin/nsp/search.cgi?t__nil_searchbox=btn&sType=tot&q=xslx
Trackback: http://pr3.110mb.com
Trackback: http://search.yahoo.co.jp/search?p=.rupBuild&ei=UTF-8&fr=top_ga1&x=wrt
Trackback: http://search.live.com/results.aspx?q=workbook&mrt=en-us&FORM=LIVSOP
Trackback: http://search.daum.net/search?t__nil_searchbox=btn&w=tot&sType=tot&q=bin+file+writer
Trackback: http://search.daum.net/cgi-bin/nsp/search.cgi?q=bin%20file%20writer
Trackback: http://www.vipam.jed.pl
Trackback: http://oemsupplier.com
Trackback: http://man-sized.info/
Trackback: http://64.233.169.104/search?q=cache:8odv_qZWI44J:blogs.msdn.com/davbosch/archive/2006/08/29/730183.aspx+how+to+open+xlsb+files&hl=en&ct=clnk&cd=6&gl=ca&client=firefox-a
Trackback: http://www.wiredbox.net/Forum/Thread321691_Excel_12_and_BIFF_Format_for_new_-xlsx_files.aspx
Trackback: http://odvmmasbestos-flooring-vinyl.lookseekpages.com
Trackback: http://www.dailydoseofexcel.com/index.php?category_name=excel12/&paged=8
Trackback: http://marssengineered-flooring-hardwood.fw.bz
Trackback: http://search.live.com/results.aspx?q=workbook&form=QBHP
Trackback: http://ayfksrubber-flooring-tile.zomi.net
Trackback: http://search.live.com/results.aspx?q=vcma+jed+p&FORM=SSNO
Trackback: http://209.85.141.104/search?q=cache:75O4J2BVUUkJ:www.dailydoseofexcel.com/archives/2006/08/09/reading-binary/+excel+biff+read+source+code&hl=en&ct=clnk&cd=26&gl=us
Trackback: http://www.dailydoseofexcel.com/index.php?year=2006&monthnum=08&day=&name=&paged=4
Trackback: http://search.live.com/results.aspx?q=http%2f%2fwww.google.co.in&first=281&FORM=PERE8
Trackback: http://tw.search.yahoo.com/search?p=bin+file+format&ei=UTF-8&fr=moz2
Trackback: http://www.tech-archive.net/Archive/Excel/microsoft.public.excel.programming/2006-09/msg03885.html
Trackback: http://search.live.com/results.aspx?q=workbook
Trackback: http://64.233.183.104/search?q=cache:75O4J2BVUUkJ:www.dailydoseofexcel.com/archives/2006/08/09/reading-binary/+Excel+read+binary+files&hl=en&ct=clnk&cd=2&gl=nl
Trackback: http://search.live.com/results.aspx?q=%2fwww.google.com.sa%2f&first=71&FORM=PERE7
Trackback: http://64.233.183.104/search?q=cache:75O4J2BVUUkJ:www.dailydoseofexcel.com/archives/2006/08/09/reading-binary/+read+binary+data+excel&hl=nl&ct=clnk&cd=2
Trackback: http://fff.to/
Trackback: http://74.125.47.132/search?q=cache:x6WopiL6K8kJ:www.wiredbox.net/Forum/Thread321691_Excel_12_and_BIFF_Format_for_new_-xlsx_files.aspx+2007+biff+format+xlsx&hl=en&ct=clnk&cd=1&gl=us
Trackback: http://74.125.47.132/search?q=cache:75O4J2BVUUkJ:www.dailydoseofexcel.com/archives/2006/08/09/reading-binary/+%22vb.net%22+read+%22excel+2007%22+SharedStrings&hl=en&ct=clnk&cd=10&gl=us&client=firefox-a
Trackback: http://www.noprescriptiondrugstore.com
Trackback: http://obokmorza.biz
Trackback: http://www.uksruchgrudziadz.pl
Trackback: http://search.yahoo.com/search?p=bin+file+format&ei=utf-8&fr=b1ie7
Trackback: http://search.live.com/results.aspx?q=cracking+office+2007&form=MS8TDF&pc=MS8TDF&src=IE-SearchBox
Trackback: http://www.bing.com/search?q=office+2007+.bin&src=IE-SearchBox
Trackback: http://www.bing.com/search?q=how+to+read+a+.bin+file&go=&form=QBRE&filt=all
Trackback: http://www.bing.com/search?FORM=DNSAS&q=.google.com.sa%252f
Trackback: http://www.archivum.info/microsoft.public.excel.programming/2006-09/msg04062.html
Trackback: http://www.drugshome.org/
Trackback: http://www.bing.com/search?q=workbook
Trackback: http://www.bing.com/search?q=office+2007+file+format+bin&form=QBRE&filt=all&qs=n
Trackback: http://209.85.229.132/search?q=cache:8odv_qZWI44J:blogs.msdn.com/davbosch/archive/2006/08/29/730183.aspx+excel+2007+file+format+zip+bin&cd=2&hl=da&ct=clnk&gl=dk
Trackback: http://www.youtube.com/watch?v=EpZmDnMZahc
Trackback: http://209.85.229.132/search?q=cache:75O4J2BVUUkJ:www.dailydoseofexcel.com/archives/2006/08/09/reading-binary/+biff12+reader&cd=2&hl=en&ct=clnk&gl=uk
Trackback: http://uk.search.yahoo.com/search?rd=r1&p=bin+file+to+excel&toggle=1&cop=mss&ei=UTF-8&fr=yfp-t-702
Trackback: http://www.sqldrill.com/excel/programming-vba-vb-c-etc/349885-excel-12-biff-format-new-xlsx-files.html
Trackback: http://hk.search.yahoo.com/search/combo?p=read+a+bin+file&ei=UTF-8&fr=FP-tab-web-t&fr2=tab-web&myip=61.10.78.107&xargs=0&pstart=1&b=21
Trackback: http://74.125.77.132/search?q=cache:8odv_qZWI44J:blogs.msdn.com/davbosch/archive/2006/08/29/730183.aspx+.xlsb+open+office&cd=4&hl=en&ct=clnk&gl=nl&client=opera
Trackback: http://209.85.229.132/search?q=cache:8odv_qZWI44J:blogs.msdn.com/davbosch/archive/2006/08/29/730183.aspx+binary+format+excel&cd=3&hl=fr&ct=clnk&gl=fr

 

 

<-- previous page

< September >
0102030405
0607080910
1112131415
1617181920
2122232425
2627282930



Products I distribute :

xlsgen - native Excel generator


Excel formatting style reduction tool


wz - Encrypt/Decrypt tool. Free speech at its best.

 

 

This site
Home
Articles

DevTools
CPU-Z
EditPlus
ExplorerXP
Kill.exe
OllyDbg
DependencyWalker
Process Explorer
autoruns.exe
Araxis
COM Trace injection
CodeStats
NetBrute
FileMon/Regmon
BoundsChecker
AQTime profiler
Source monitor
GDI leaks tracking
Rootkit revealer
Rootkit removal
RunAsLimitedUser(1)
RunAsLimitedUser(2)

 

 

Liens
Le Plan B
Un jour à Paris
Meneame
Rezo.net (aggr)
Reseau voltaire
Cuba solidarity project
Le grand soir
L'autre journal
Le courrier suisse
L'Orient, le jour
Agoravox (aggr)

 

Je soutiens :