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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by 5885885

  1. 5885885

    Divide a variable up into it's characters?

    You can slo use div and mod program divide_up; uses crt; var main, counter : integer; separate : array[1..20] of integer; procedure devide(i : integer); var count : integer; begin for count := 1 to 20 do begin separate[count] := i mod 10; {takes the last integer} i := i div 10; {takes...
  2. 5885885

    How do i write procedures?

    Procedures are extremely useful in Pascal programming, in any language. A procedure is a sub section code that can be called by the main part of the program. This is useful as you can then use it again and again.It I like a small program all on its own, though the procedure name can not be...
  3. 5885885

    Ghost 9 - got image files. Now what?

    Couldnt you creat a boot cd, and also put the image of your hardrives onto sevaral cd's, then set up the BIOS to boot from a cd, start up the computer with the boot cd? Joey
  4. 5885885

    1/2 Screen size in full window in XP

    you could also try using the line window(x, y); i think that that is the correct command, were x and y are integers, thefore altering the screen size, that may work, im not certain though
  5. 5885885

    Pleasee HELP - How it works?

    do you want to know what the program does, or how it actually runs, so what hapens, i.e i does this, so that j does that causing n to terminate? joey
  6. 5885885

    Problem with my small program - invalid floting operation?

    you could put in squrt(dksi + 2 * dksi) so that it would sqare root a positive value
  7. 5885885

    Problem with my small program - invalid floting operation?

    what does it say the error is? and were is it

Part and Inventory Search

Back
Top