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!

Search results for query: *

  • Users: rhull
  • Content: Threads
  • Order by date
  1. rhull

    Printing Security

    Is it possible to set up Microsoft Word 2000 to prevent users from printing? Thanks -R
  2. rhull

    lvarchar

    I am having trouble with setting up a lvarchar field. I want to save an actual string of text up to 1500 chars, so when i do an insert it will be a string and not a file. does anyone have a alter table code example, and then an insert stmt example? Thanks! -R
  3. rhull

    Web Table Import to Excel

    I have a table with data on a web page, I would like for a button/link that when clicked open the users local Excel and imports the table data on the fly. I know you can open Excel and then import web table data, I just want to do it the other way around. Thanks! -R
  4. rhull

    2 scripts to run

    The page is already using a cgi script now, I need to add another script, is their a way to make 2 scipts run one after another? (w/ 1 submit button) (ie <FORM ACTION=&quot;formemail.cgi,saveToDatabase.cgi&quot; METHOD=&quot;POST&quot;> yeah right:) (I cant combine the 2 scripts into 1)...
  5. rhull

    cron with java

    My cron seems to do nothing I have my crontab set up as follows 01 * * * * java /wic/local/bea/wls/BCP_email (01 to test) 'java BCP_email' --> works fine and when i save it writes to a tmp file /tmp/crontab66onqa Should it be saving to a tmp file? also to invoke a java file is the crontab...
  6. rhull

    automate a script

    What is the best way to automate a process? I need to send emails sent out the last day of the month with various database info. Can a cron run a class file? or should a servlet be involved? I have no idea where to start. Thanks -R
  7. rhull

    select box that can also take new input

    Is there a way for a select box to allow the user to still type in a value if none of the option will suffice? I dont think there is, but I still want to double check. -Thanks! R
  8. rhull

    Dynamic Multi Select Combo Box

    I am tryimg to do a dynamic combo box so I am using JSP to switch the 'selected' in and out. Problem is it breaks the HTML. So I need to assign the 'selected' value somehow. Something Like <option value=&quot;Fecci&quot; selected=&quot;false&quot;>Fecci </option> OR <option...
  9. rhull

    JavaBeans General

    In general what should be in a javabean, how should they be separated,(all database calls from 1 bean?), it seems like you can put mostly everything in beans but then you have to write more code than ever to get the data back to the web page? Just wondering how to effectively use them. Also EJB...
  10. rhull

    Muliple values for 1 parameter

    i have a mulitple select box so my post looks something like. ?cboExecutives=rolf&cboExecutives=tehjile... (so cboExecutives is used over and over for each selected) When I use request.getParameter it only takes the first one, (ie rolf) how do i have it loop to collect all the data? Thanks...
  11. rhull

    current date

    I am having trouble getting the current date I assume i import java.util.Date() but from the sun web site many of the methods I would use like getMonth are deprecated. What is a good way to get this done? Thanks! -Ryan
  12. rhull

    char length

    I need to store a block of data into a char field. The data may have up to 2000 chars. The char field can go up to 32k but when i send it the data i get a 280 error saying &quot;string literal to long&quot; (ie past 256) How do I send it the data if I wont take a string literal? (DB wont allow...
  13. rhull

    Excel

    What I need to do is add a ':'in every cell at the end of the data. (I need to export the data with a delimiter). Any ideas? Thanks! -Ryan
  14. rhull

    Load Page Order

    I have a frame page and i would like to have the header page completly load first, followed by the main page. Any ideas? <frameset rows=&quot;105,*&quot; cols=&quot;*&quot;> <frame name=&quot;header&quot; scrolling=&quot;yes&quot; noresize target=&quot;main&quot...
  15. rhull

    New Line chars

    Basically I have textarea for the user to enter data to save to a database. I take the value of the textarea store it in a variable then use it in the SQL. But when the users hits enter (newline) it then breaks up the SQL and it doesn't work. It there a good way to remove newlines chars and make...
  16. rhull

    Dynamic PDF w/ JSP

    I have seen examples of creating dynamic pdf files with asp or perl but can it be done with JSP? (any idea where I could get more info on it if that is the case?) Thanks! -Ryan
  17. rhull

    Global variables

    Is there a way to have global vars like ASP session variables with JSP (w/o using beans?) -Thanks Ryan
  18. rhull

    viewing current classpath

    I see documentation all over for changing a classpath but I want to see what it is currently set at. Is there a quick command to do that in Linux. Thanks! -R
  19. rhull

    vi editor limits

    I basically am wondering if there is a way (or work-around) to have 1 line that can hold any amount of data I need. I keep getting &quot;line to long&quot;. (I can get my XML data all on one line in notepad but when i try to open it in vi then it wont work, same deal) thanks! Ryan
  20. rhull

    Parser Question

    Is it possible for a parser (DOM or SAX) to continue to read the whole XML doc even after it has encountered the first error. Let say I have the last name tag wrong and also the work phone. Would I have to reconfigure the parser to continue? I would bascially want to map out all the errors at...

Part and Inventory Search

Back
Top