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 Mike Lewis 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: *

  • Users: vvicin01
  • Order by date
  1. vvicin01

    Flash Displaying All Layers When Loading

    I have several flash files that when first loaded onto a PC displays all hidden layers until all images are loaded. This mainly happens on slower machines. Once the images are cached, the swf file loads fine. How can I preload all graphics or flash content so this doesn't happen?
  2. vvicin01

    Strip Characters from String

    I need to remove some characters from a string. For example, in the filename test-e.html I want to remove the -e.html from the string so the it reads test. How do I do this?
  3. vvicin01

    Extract html page name from a Page - Location

    I need to extract the html page name from a page using javascript. I tried location.pathname and others but none will extract just the name of the html page. Also, can this be done inside a frameset? Thank you
  4. vvicin01

    Locating URL address in Servlet

    I am attempting to read a url address in my servlet. What choices do I have?
  5. vvicin01

    Simulate KeyBoard with ActionScript and Flash

    I need some actionscript to create keyboard commands - such as the enter, tap and character keys. Are there any scripts that will allow me to do this? Thanks
  6. vvicin01

    Integrating from TEDS to WebSphere

    We're switching to WebSphere and was concerned on what changes are needed in converting course content (developed for TED - AICC). Can we import course content into WebSphere ? We are concerned on what we can do to mimimize the work effort in converting course content into WebSphere. Thank you
  7. vvicin01

    Passing FileName for Template - Servlet

    I've written a serlvet that displays various html templates based on a particular selection. I currently pass a url string to the servlet (for using a GET or POST) and pass those variables to the servlet using the get(parameter). However, I am using a number of html pages that I am reading using...
  8. vvicin01

    Servlet to Display a Certain Number of Returns per Page

    I've created a servlet that simply queries a database and displays the result set. However, because the data that is returned is so lengthy, I would like to only display 25 or so records a page and then allow the user to click a continue button to display the next set of 25. Does anyone know how...
  9. vvicin01

    Reading a Text File

    I have a text file which has over 100 items listed that I would like to pull and pass to a servlet to query a database. Basically, I want to pull each line from the text, pass that value to a servlet, and then query an oracle database. For example: Text file joe.txt contains: apples turtles...
  10. vvicin01

    Convert Acess 2000 to SQL and ASP Scripts

    I have a client that I've created many asp scripts to communicate to a Access Database. How can I convert the Access database to SQL and will I need to change any of my asp scripts to communicate to the database?
  11. vvicin01

    Too Many Open Files - JRUN

    I have a servlet that writes to a txt file via JRUN and I am getting (Too many open files). How do I fix this ? Is there a fix I can put into the servlet that will close the file after it's use or is there something that needs to be done on the server.
  12. vvicin01

    Servlet That Writes to a Flat File - Text

    Can someone provide me code that will enable me to pull data from an html page and write the results to a text file on a server using servlets - server supports JRUN. I need to create a new line for each entry. Thank you Vic
  13. vvicin01

    Creating Check Boxes with Flash 5

    Can someone provide code to create a simple check box in Flash 5. I want to set a variable on release. Thanks Vic
  14. vvicin01

    Servlet Write to File

    I created a servlet that queries a database and writes the output to an excel spread sheet. The problem I am having is that it appends the data instead of over writing the content. I am using CounterHome.seek(CounterHome.length()); CounterHome.writeBytes(data); to hold the ResultSet and...
  15. vvicin01

    Add Individual Rows Across Tables

    I am trying to add up individual rows across several tables. I have stats on individual performers and would like to add all the performers up and list the results. For example, I have stats on hockey players (goals) across three tables (scrimmage, tournaments and league). I would like to...
  16. vvicin01

    Select the top 3 Scorers From Database Tables

    Thanks Nick - That works GREAT!!! Vic
  17. vvicin01

    Select the top 3 Scorers From Database Tables

    I have created a table that list the stats of a hockey team. I wish to display the top three scores (column name 'goals' table 'scrimmage'). I want to return the top three scores in the the goals column. Can you help. Thanks Vic
  18. vvicin01

    How to Add Data From Different Tables

    I have three tables in a database that I would like to add the totals of each column. The database is used to store hockey players goals and assist and other fields. I want to add the totals of each player from the three tables. I know you can add the sum of a column, but what about a particular...
  19. vvicin01

    Add Line Break in a Applet TextArea

    Yes. I've tried + TexTField1.getText()+"\n" + TexTField2.getText() ); Also "\r". It doesn't give me a return.
  20. vvicin01

    Add Line Break in a Applet TextArea

    I am passing information from several textfields to a text area in a applet. The problem is, how to I add a return (or line break) between each fields. I have tried \n and \r between the two but it does not help: txtResponse.setText("Data:" + TexTField1.getText()+ +...

Part and Inventory Search

Back
Top