Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. IsmAvatar

    Opening .dta and .key files

    Seeing as you have the executable, I'd assume you are still able to at least create datatable files. As such, anything you can't understand from a few glances at existing files, try using the program to create a few that are essentially the same, with 1 very minor difference at a time. Then...
  2. IsmAvatar

    Variables acting weird

    As I said before, I'm using the latest version of Dev-Pascal as my IDE, which comes with FreePascal as the compiler. However, it appears that I misread the documentation and tutorials when learning Pascal and assumed that an integer was 32 bits. Now that I look over it again, it appears that an...
  3. IsmAvatar

    Variables acting weird

    I made sure to get as much information as possible on reading from files before attempting this project. It is an untyped file. var bs,p1,p2 : string; bi : integer; pos : longint; f : file; ... assign(f,p1); reset(f,1); While most of the file does consist of 4-byte integers, there are...
  4. IsmAvatar

    Variables acting weird

    I know about nesting loops and stuff like that - i'm always careful of that. That's why I have LL, for the occasional time when I do nest a loop. In this case, as well as most other times, the loop is fairly isolated. I even have the entirety of the loop noted as a specific section (using a...
  5. IsmAvatar

    Variables acting weird

    Hey, I seem to run into a problem with variables every now and then. Generally, when I run a loop and read from a file, I *might* get a problem. The snippit of code I've narrowed it down to is below: for l := 1 to 9 do begin write(l,' '); blockread(f,bi,4); //bug here end; whereas l and bi...

Part and Inventory Search

Back
Top