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 CliveC

  1. CliveC

    Specifying copybook name on the command line

    XYZ.BAT ********** @ECHO OFF IF "%1"=="" GOTO ERROR ECHO IDENTIFICATION DIVISION. > XYZ.CBL ECHO PROGRAM-ID. XYZ. >> XYZ.CBL ECHO DATA DIVISION. >> XYZ.CBL ECHO WORKING-STORAGE SECTION. >> XYZ.CBL ECHO COPY %1.CPY...
  2. CliveC

    Mapping a keystroke to an ADIS function.

    http://supportline.microfocus.com/documentation/books/nx30books/ciadcf.htm Clive http://tubularity.com
  3. CliveC

    Calling an EXE from a webpage

    Try changing the HTML extension to HTA Clive http://tubularity.com
  4. CliveC

    Low-value byte being inserted before tab

    See: http://supportline.microfocus.com/documentation/books/sx2011sp1/cyswit.htm Clive http://tubularity.com
  5. CliveC

    Print picture command link help needed

    You could just set-up one window and call it with different passed parameters. See: faq216-5172 Clive http://tubularity.com
  6. CliveC

    Smartphone/PDA layout compatibility

    Find an emulator on the web for the device that you wish to target. Here is an example of a Nokia emulator: http://mtld.mobi/emulator.php?emulator=nokiaN70&webaddress=mysite.com Clive http://tubularity.com
  7. CliveC

    How do I pass a variable parameter to WScript.Shell

    Thanks! Clive http://tubularity.com
  8. CliveC

    How do I pass a variable parameter to WScript.Shell

    I know only enough VBscript to be dangerous. I am trying to pass a variable parameter from a form to a program invoked from WScript.Shell. For the purpose of the example let us suppose that i am trying to pass a file name to NOTEPAD. How do I do it? Here is what I have so far...
  9. CliveC

    HTML and printing Labels

    You do not have to worry about a page break. For example: 1" x 4" labels, 2 columns, 10 rows, 20 labels per page (Avery 5161). Just use inches for your css layout and when you have more than 20 labels it will automatically start a new page. Clive http://tubularity.com
  10. CliveC

    Resizing image to fill browser window

    I think it is because the body tag has not been fully parsed. However you do not need javascript to make the image 100%. Just use: <img style="width:100%" id="my_image" name="my_image" src="images/1.jpg" /> Clive http://tubularity.com
  11. CliveC

    Cascade menu across frames?

    Hi, Yes I did mean another browser window although without menu, address bar and such. Option 2 would replace the main content with the sub menu. If neither of these are acceptable then you might want to re-think your whole approach and keep all navigation in the top frame and enlarge the top...
  12. CliveC

    Cascade menu across frames?

    You can target a frameset's frame from outside of the frameset. So one option is to simply open your sub-menu in a javascript window that opens over the frameset. Alternatively, make the sub-menu be its own page that opens in the bottom frame. Upon selecting the sub-menu option open the chosen...
  13. CliveC

    Do framesets work in handhelds and mobile phones

    The general advice found everywhere is that Framesets do not work in handheld or mobile devices and therefore should not be used. Actually, it is precisely because of the way that Framesets degrade with the Noframes tag that makes them an excellent tool for menu-navigable content. The same...
  14. CliveC

    Frames and Layers

    There are several FAQs about this especially in the javascript forum. Here are some: faq216-692 faq216-3542 faq216-5703 faq216-931. Javascript variables for the frameset can be stored in the frameset page and can then be accessed from any frame within the frameset (using top.) The same...
  15. CliveC

    Frames and Layers

    You can float anything you like over a frameset provided that you open it in a new browser session. You can also dynamically change the dimensions of a frame using javascript as another alternative. Clive http://tubularity.com http://PalliativeCareConsulting.org

Part and Inventory Search

Back
Top