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 bkrike 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: vasah20
  • Content: Threads
  • Order by date
  1. vasah20

    CSS Div Height

    How can I make the background color of a div extend past the page fold? Example: -- <html> <head> <style> * { margin: 0px; padding: 0px; } #container { background-color: #ccc; clear: both; height: 100%; width: 50%; } </style> </head> <body> <div...
  2. vasah20

    document.formname.submit

    I have no idea why this doesn't work in MSIE. Is it because I'm trying to populate and submit the form from a text link? <head> ... <script type=&quot;text/javascript&quot; language=&quot;javascript&quot;> /** * submit the GET request through the filter form **/ function filterById(emailId)...
  3. vasah20

    getting a new value of $1

    I'm a perl newbie, so i have a question. given the following code, how can I get the value of the second regex? foreach my $line(@file) { chomp($line); $line =~ /\$#(\@)(\w+)#\$/g; print &quot;$2\n&quot;; $line =~ /\$#(\?)(\w+)#$/g; print &quot;$2\n&quot;; } It's possible that...
  4. vasah20

    extends ArrayList

    Hi. I want to override one of the constructors in ArrayList, namely the public ArrayList(Collection c) { } constructor, but I want to perform some operations on the Collection before calling super. Is there anyway that I can do this? What I'm trying to accomplish is an ArrayList of files...
  5. vasah20

    nested xml

    hi all, I've got a very very slight grasp of the javax.xml.* and org.w3c.dom.* libraries, and from some tutorials and books I've been able to parse simple xml documents. But I need to parse a complex xml document, and I have no idea how to go about it. The document looks like this: <?xml...
  6. vasah20

    show status question

    Keyword search is down right now, so hopefully I'm not asking something often asked. When I issue a 'SHOW status FROM database LIKE 'table_name' does the update_time only show when the table had records deleted/inserted? I mean - does it detected when an UPDATE table SET... query is issued? If...
  7. vasah20

    Validation error

    How come I can't execute the following query through an ADODB.Connection, but I have no problem when I cut and paste it into a query? This is the error I get: One or more values are prohibited by the validation rule 'Like &quot;???###&quot;' set for 'engagement.Client ID'. Enter a value that...
  8. vasah20

    Performing a function on Datasheet data

    Hey all - I was wondering if there was a way I could run the values through a function, and have those results display in the column. I just need to remove the last 27 characters in the column, and unfortunately I cannot just delete the extra data. As you can tell, I'm *extremely* new with...
  9. vasah20

    detect table changes

    Hi - Is there a way to detect that changes to a table have been made? I saw in Google Groups that changes to a table can be detected by analysing the definition, but I couldn't find any accompanying code. Any help/strategies on this would be appreciated. TIA
  10. vasah20

    modules calling form functions

    How can I access a Sub inside Form1 from Module1? Is this even possible? What I want to do is have a 'progress bar' embedded into the form... I'm going to use labels to simulate the progress bar, but all the heavy duty processing happens in the module. I'd like to be able to update the labels...
  11. vasah20

    Problem with Wininet.dll

    I'm trying to post data using the wininet.dll, and the data isn't posting. I'm sending the request, and recieving the response, but the data isn't posting correctly. Here's the code I have... (W32 Constants and Function Aliases snipped for brevity) Private Const HttpPost_Header =...
  12. vasah20

    Can't highlight text in IE

    Using IE6/Windows or IE/Mac (forget what version), I can't highlight any of the following text on this page: http://www.elliottsweb.com/prev/nadler/secondary.html?sec_attorney.html CSS file at: http://www.elliottsweb.com/prev/nadler/includes/ie.css I *know* it's got something to do with the...
  13. vasah20

    servlet vs. jsp page. When to use?

    Ok - I've got a bit of a question: Is there a general rule as to when one should use a JSP page or servlet? I mean - if JSP pages eventually end up as compiled code anyways, then why even go the route of using a servlet? The only real difference I see between the two is that you can explicitly...
  14. vasah20

    URLDecoder.decode question

    How come, given these two URLS: 1) http://localhost:8100/servlet/cctservlets.PMT?st=1&len=20&print=true&wh=+WHERE+System_Project_Manager+LIKE+%27%25lopez%25%27+ 2) http://localhost:8100/servlet/cctservlets.PMT?st=1&len=20&print=true&wh=+WHERE+PMT_Number+%3D+222314+ The second one works...
  15. vasah20

    instantiate obj in package, without changing classpath

    hello: Is there a way that I can instantiate another class in the same package, without changing the classpath? Both the files are in the same directory which allows them to both be in the same package. I'm using JRun 3.0, and JDK 1.3. TIA leo ------------ Leo Mendoza...
  16. vasah20

    resultset problem

    How come this snippet of code throws a SQL Exception stating that &quot;No data was found!&quot;: (r is aResultSet, sb is a StringBuffer) if(r.next()) { //advance to first record //iterate through the records, looking for matches //sb.append(r.getInt(&quot;StartHour&quot;) + &quot;:&quot...
  17. vasah20

    automatic proxy retrieval

    Is there a way to just get the proxy address from the System (say, MSIE's proxy settings), and use that in my application? My HttpURLConnection keeps timing out, and I'm thinking it's because of the proxy. TIA leo ------------ Leo Mendoza lmendoza-at-garbersoft-dot-net
  18. vasah20

    package question

    My directory structure looks like this: Directory of C:\SITEMI~1\WEB-INF\classes\CCT 06/17/2002 08:54a <DIR> . 06/17/2002 08:54a <DIR> .. 06/17/2002 08:52a 3,145 Admin.java 06/14/2002 01:58p 2,862 AdminCheck.clas 06/14/2002 01:58p...
  19. vasah20

    servlet problem (500 server error, no such servlet)

    I'm running JRun 3.0, on Win2K and I'm having a problem getting this servlet to run. I know I've put the servlet in the right directory, since I was able to successfully run a simple &quot;Hello World&quot; servlet. I'm assuming there's something wrong with my servlet specific code, since the...
  20. vasah20

    recompiling servlets

    How can I get tomcat to recognize when a servlet's been recompiled? I know I can restart it, but I really don't want to go that route. (apache 1.3.20 + tomcat 4 on Linux - mandrake 8.0) server.xml: <Context path=&quot;/leo&quot; docBase=&quot;webapps/leo&quot; crossContext=&quot;false&quot...

Part and Inventory Search

Back
Top