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 wOOdy-Soft 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 PAndersen

  1. PAndersen

    Change drive letter

    An idea to check the BIOS settings (probably press DEL at startup) ?
  2. PAndersen

    Forgot Fortran

    If a = (/1.0,2.0,3.0,4.0/) gives no compilation error, use it. The DATA statement is for FTN77 and older.
  3. PAndersen

    DOS was better than XP....

    From the CMD window, you can still use the DIR command.
  4. PAndersen

    Forgot Fortran

    C ThePROGRAM Hello REAL a(2,2) C a = (/1.0,2.0,3.0,4.0/) instead try : DATA A /1.0,2.0,3.0,4.0/ CALL Test(a) print*,a(1,1) C CONTAINS END SUBROUTINE Test(a) REAL a(2,2) a(1,1)=a(1,1)+9.0 RETURN END The subroutine can be compiled as a separate program and linked to the...
  5. PAndersen

    How to split a big array data file into several small data files each

    The array variable may be equivalenced to a matrix, the first dimension of which is set to N * M. Example : DIMENSION A(10000) , B(100,100) EQUIVALENCE (A , B ) CHARACTER FILENAME * 100 , NUMBER * 3 ........ DO 50 IFILE = 1 , 100 WRITE(NUMBER,'(I3)') IFILE FILENAME = NUMBER//other...
  6. PAndersen

    PC failes to boot after installing IE6SP1 Critical Update.

    If you have a Win98 startup diskette, it may be an idea to boot from it and run the sys c: command.
  7. PAndersen

    Missing win98 clock

    Check the registry settings [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer] and [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer] If there is a value named HideClock with data = 1, change it to 0.
  8. PAndersen

    Cannot disconnect network drive

    An idea to disable one or more startup programs to see if any of them is trying to establish the P:-connection ?
  9. PAndersen

    Explorer help. Cannot see 'Modified' column

    Maybe there is some info at http://support.microsoft.com/default.aspx?scid=kb;en-us;179875
  10. PAndersen

    remote connect issues

    Probably an ftp server must be running. Maybe there is some info at http://www.webwizguide.com/asp/tutorials/installing_iis_winXP_pro.asp
  11. PAndersen

    remote connect issues

    It depends upon the services running at the remote machine and your permissions.
  12. PAndersen

    remote connect issues

    Did you try simple FTP ?
  13. PAndersen

    Login script issue

    Is there a missing setting for 'Close on Exit' for a BAT-file ?
  14. PAndersen

    STATUS BAR HIDDEN ... ON SOME INSTANCES, WHY ?

    http://www.devhood.com/messages/message_view-2.aspx?thread_id=102522
  15. PAndersen

    Dos 6.22 TCP/IP Tools

    Simple FTP is included in the NCSA package.

Part and Inventory Search

Back
Top