Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
decompiling a .dat file
Name: mike Date: September 28, 2002 at 09:05:06 Pacific OS: 98 CPU/Ram: 144
Comment:
is their a way to decompile a dat file so you can veiw it in words that you can understand
Name: borelli33 Date: September 28, 2002 at 09:54:39 Pacific
Reply:
.DAT files aren't actually compiled (per se). They are simply a collection of data organized into a structure called a data set or record. In order to 'understand' what they contain you usually have to have foreknowledge of the structure of that record.
Summary: Using VB6 I have a list of records saved in a .dat file, which are displayed in a list box on a form called ‘frm_Existing_Student’. Using a separate form called ‘frm_Amend_Student’, I want to ...
Summary: .dat is a generic suffix that can be used by a varity of applications. A lot of .dat files are plain text, some are binary data. Often you can only open a .dat file by the application that generated ...
Summary: To open a new file, use FILE fp; fp = fopen("filename", "w"); if (fp == NULL) { /* the open failed */ exit(); } The "w" says to open the file in "write" mode, which causes it to make a new file, e...