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

    PHP Visual RPG

    This is the problem: i have a visualRPG application that querys a database. The information is composed by 0 and 1 and represents a image or a document(word, pdf, etc...). Then the application transforms this information into the image itself. This is my question, and i really don't know if...
  2. porto2001

    PHP e Lotus Notes

    I want to know if it's possible to import information from lotus notes mail. And if it's possible how to do it??? Thanks
  3. porto2001

    CHMOD problem

    I need to change the the permissions of a directory in my ftp server. I use: $directory = "../pagescsd"; chmod ($directory, 0777); Warning: chmod failed: Operation not permitted in ... I read some information about this problem, the web server typically runs as a low access account...
  4. porto2001

    jsp and javascript problem

    I have several jsp's files that retrieves two external files that contains javascript code, like this: <SCRIPT SRC=&quot;/js/Script1.js&quot; LANGUAGE=&quot;JavaScript&quot;></SCRIPT> <SCRIPT SRC=&quot;/js/Script2.js&quot; LANGUAGE=&quot;JavaScript&quot;></SCRIPT> On &quot;Script2.js&quot; i...
  5. porto2001

    jsp and javascript

    I have a simple problem... I have an if condition to prevent a undefined eval... something like this: if(eval('document.all.But<%= MenuNumber %>0') != undefined){ var rightcl=eval('document.all.But<%= MenuNumber %>'+i); } the problem came when i run some jsp's....when the page is...
  6. porto2001

    Javascript and jsp

    I have a simple problem... I have an if condition to prevent a undefined eval... something like this: if(eval('document.all.But<%= MenuNumber %>0') != undefined){ var rightcl=eval('document.all.But<%= MenuNumber %>'+i); } the problem came when i run some jsp's....when the page is...
  7. porto2001

    XML and Javascript

    Is there a way to create a XML document through Javascript? And if there is a way could someone give me a example how? Thnaks...
  8. porto2001

    Database connection

    i have a database in an as400 and i want to connect. What should i do???????? I would like to know the easyest way... thanks
  9. porto2001

    &lt;%@ page import=&quot;&quot;%&gt;

    I have one big problem i have these imports <%@ page import=&quot;java.util.*&quot; %> <%@ page import=&quot;se.ibs.ns.cf.*&quot; %> <%@ page import=&quot;se.ibs.ccf.*&quot; %> <%@ page import=&quot;se.ibs.ns.icat.*&quot; %> <%@ page import=&quot;se.ibs.bap.*&quot; %> <%@ page...
  10. porto2001

    Servlet &amp; JSP

    Where can i find the best articles, tutorials, examples of Servlet and JSP????? Thanks....
  11. porto2001

    Print APIs in Servlets?

    How to use print APIs in Servlets? I want to print a web page through my servlet. This should be just like Printable Page icon on the www.java.sun.com site. Thanks in advance.
  12. porto2001

    Servlet calling

    i have a servlet who needs to call a diferent class. The problem is when i compile the servlet, he doesn't recognize the packages import javax.servlet.* and javax.servlet.http.* How can i call a class (in this case public class NameClass implements Printable) within a servlet Thanks
  13. porto2001

    Printing a report in java(PrintJob)

    I have a web report generated by servlets. this report has more than 1 page. How can i create a printjob that the second or third page is the continuation of the previous. Something like this: name nick John John1 Mark Mark1 ... Joshua Joshua2 -------------end of page-----------...
  14. porto2001

    JDBC Problem

    SQL Exception No suitable driver. This is my code: try{ Class.forName(&quot;sun.jdbc.odbc.JdbcOdbcDriver&quot;); }catch(Exception e){ setError(&quot;Can´t find database driver class: &quot;+e); return; } try{ String url=&quot;jdbc:odbc:HumanResources&quot...
  15. porto2001

    SLQException No suitable driver (08001)

    SQL Exception No suitable driver. This is my code: try{ Class.forName(&quot;sun.jdbc.odbc.JdbcOdbcDriver&quot;); }catch(Exception e){ setError(&quot;Can´t find database driver class: &quot;+e); return; } try{ String url=&quot;jdbc:odbc:HumanResources&quot;; java.sql.Connection c...
  16. porto2001

    JDBC-SQLException - No Suitable Driver

    No suitable driver appers when i try to connect to database. I don´t know how to resolve it. I use JdbcOdbcDriver with MS Access. I have IIS installed in my computer.
  17. porto2001

    JDBC - Connecting to local MSAccess database???

    I want to connect an applet to my local MS Access database using JDBC. When i run the applet with applet viewer, everything is Ok, the problem is when a try it in a browser. He can't load the JdbcOdbcDriver. Everything is in my computer, i´m not trying to connect to a web server or database...
  18. porto2001

    Xbase error: Could not open the file

    I have a SQL query logging to an IBM AS400 Client Access using Client Access ODBC Driver. This query works with parameters and performs well. The problem starts when, in Crystal Report Designer i try to use this query. Trying refresh the error &quot;Xbase error: Could not open file&quot...

Part and Inventory Search

Back
Top