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

  1. porto2001

    PHP Visual RPG

    Visual RPG is not "Role-Playing Game", sleipnir214 is right, it refers to www.asna.com. The visualrpg application does all the work, manipulates the information given by the database. There isn't any document or image(word, excell, gif, jpeg, tiff) present in the hard drive, this...
  2. 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...
  3. porto2001

    PHP e Lotus Notes

    The address book is in the server side, and i have to install NotesSQL. I don't know if i'm write or wrong, but i believe accessing Lotus Notes Database via ODBC is the only way. vbkris thanks for the advise.
  4. porto2001

    PHP e Lotus Notes

    I don't know if i made myself very clear. What i want to do is to get addresses from de address book in the lotus notes mail.
  5. 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
  6. porto2001

    CHMOD problem

    I know that i should't grant write privileges, but i need to upload a file to a directory, and my goal is to give privilege to upload the file and then take it away. And i think the only way i can resolve is to create a connection to the ftp, change de permissions and then disconnect. I think...
  7. 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...
  8. 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...
  9. porto2001

    jsp and javascript

    the code is divided in <forms>, and before the end of each form there is a <input type=hidden...> with some parameters the code always breaks there but not in the exactly same point. I checked the menunumber many times and it's always correct.
  10. 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...
  11. 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...
  12. 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...
  13. 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
  14. 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...
  15. porto2001

    Servlet &amp; JSP

    Where can i find the best articles, tutorials, examples of Servlet and JSP????? Thanks....
  16. 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.
  17. 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
  18. 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-----------...
  19. 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...
  20. porto2001

    SLQException No suitable driver (08001)

    i have try it, but it still don´t work... i am desperated i have the sun/jdbc/odbc/*.class in my InetPub/wwwroot/ i have try to put the database file in InetPub/wwwroot/ i am trying to run the applet in the same computer where IIS is installed. In Nestscape 6 the exception is...

Part and Inventory Search

Back
Top