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 SkipVought 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. 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.
  16. PAndersen

    Dos 6.22 TCP/IP Tools

    NCSA Telnet TCP/IP package was (in the era of MS-DOS) compact, easy to configure and use.
  17. PAndersen

    what this code means?

    In the OPEN statement, the FILE parameter is used to specify the file name. Example : FILE='c:\data\innfile', for a fixed name or FILE=filename where filename is a character variable.
  18. PAndersen

    what this code means?

    The unit number will be used as a file reference when reading data from the file. Unit 5 is probably the keyboard. ORGANIZATION refers to the logical file structure. You can omit it in the example as SEQUENTIAL is default.
  19. PAndersen

    Windows 98 Internet problem

    If problems persist, and you wish to uninstall a patch, it should be possible to do so from the Control Panel, Add/Remove Programs.
  20. PAndersen

    NIC driver won't install

    Maybe any trace of the uncomplete installation must be removed before starting a new install (?)

Part and Inventory Search

Back
Top