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. Doylet

    Project Idea

    In case it helps, I am trying to build a program to report the current status (and hopefully the setup) of the computer where the program is run; this program will help on off-site diagnostics, or to map each machine in a network with its characteristics; the more system details, the better...
  2. Doylet

    How to show a JScrollPane top line by default?

    When the List or TextArea inside a JScrollPane is long enough, the last line is shown by default, making the top line scroll out; except when loading the frame for the first time; how could I setup JScrollPane to show its top line by default instead? ================== learning & sharing...
  3. Doylet

    How to disable parent Frame ?

    Is there a way to disable or hide a parent Frame until its child gets disposed ? ================== learning & sharing http://come.to/iwn
  4. Doylet

    checkbox and directory examples needed

    Working with a team project at AIU, I am in search of sample Java classes where checkboxes are used and the current directory is shown; if you know where I could find them, please send me the links asap. ================== learning & sharing http://come.to/iwn
  5. Doylet

    how to get DOS tree of network ?

    From the MS-DOS Prompt of Windows98, tree doesn't work. When I use: dir \\ETS04\cbt /s I get: /S, /V & /C not supported with UNC style names without the /s it works fine Do you have a clue, or a program to do that? ================== learning & sharing http://come.to/iwn
  6. Doylet

    How to compare or set to ASCII values or equivalents ?

    In Basic we use A=Chr$(25) or B=ASC(...) to work with the ASCII equivalent of each character for string handling. How do you do that in Cobol? ================== learning & sharing http://come.to/iwn
  7. Doylet

    MathML: How do you use it?

    You can find the whole explanation at the end of... http://www.w3.org/TR/REC-MathML/ Good Luck, ================== learning & sharing http://come.to/iwn
  8. Doylet

    Windows protection Error workaround

    I would try... net Start net logon (your user name) (your password) /yes net stop win ================== learning & sharing http://come.to/iwn
  9. Doylet

    Windows protection Error workaround

    The PhotoDeluxe and MTS commands were set by installation or rem by deinstallation programs; the lines you need to add at the end are... net Start net logon (your user name) (your password) net stop win ================== learning & sharing http://come.to/iwn
  10. Doylet

    Windows protection Error workaround

    if you run sysedit you can add those commands to your autoexec.bat (to automate those starting steps) and even find some clues to solve your problem on your system.ini or win.ini files. ================== learning & sharing http://come.to/iwn
  11. Doylet

    gif transparentable???

    GifWeb does that... http://download.cnet.com/downloads/0-10077-100-895255.html?tag=st.dl.10001-103-1.lst-7-4.895255 Good Luck, Fernando. ================== learning & sharing http://come.to/iwn
  12. Doylet

    JCL

    My JCL looks different, but try using... // OPTION LOG between the JOB and EXEC lines to get the warnings or details after running the JCL ================== learning & sharing http://come.to/iwn
  13. Doylet

    How can I monitor a Shared File ?

    Is there a way to log the activity or access times of a shared file? ================== learning & sharing http://come.to/iwn
  14. Doylet

    How can I associate an extension within a HTML-HREF with my own progra

    I believe that is against Browser standards. For security reasons, you can only run a limited number of programming languages: Java, JavaScript, VBS... ================== learning & sharing http://come.to/iwn
  15. Doylet

    setting MARQUEE initial position?

    To see the starting of your marquee, you can give it a width and center; an example is at... http://www.geocities.com/Eureka/4722/masonic/ below the picture. The code looks like... <p align=center><marquee width=400>sample text</marquee> Good Luck, ================== learning &amp; sharing...
  16. Doylet

    Hi y'all.. Does anyone know how

    One way is to fake the element with a picture of or including it and make it work mapping the image with imagemap. ================== learning &amp; sharing http://come.to/iwn
  17. Doylet

    &quot;Subtract&quot; Statements

    ... Working-storage Section. 01 date1 pic x(08). 01 year1 pic 99. 01 valor pic 99 value zeroes. Procedure Division. Calc-Result. move '02/18/79' to date1. move date1(7:2) to year1. compute valor = 95 - year1. display 'difference: ' valor. stop run. ==================...
  18. Doylet

    Can't find the Sorting and Grouping Window

    That happens to me when my PC is running out of memory. Making sure I have more than 500KB of free space on my hard drive and restarting the machine usually works. ================== learning &amp; sharing http://come.to/iwn
  19. Doylet

    how to eliminate the horizontal scroll bar in a subform

    The only way I found to eliminate the horizontal scroll bar in a subform is working in the main form Design View and resizing the width of the subform fields to show them all inside the subform.
  20. Doylet

    how to translate html pages

    Hi Anna, Another option is to use both languages like at... http://members.dencity.com/Broward/ofertas/index.html using different font colors on the same page. ================== learning &amp; sharing http://come.to/iwn

Part and Inventory Search

Back
Top