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 SkipVought 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: pajarokillo
  • Order by date
  1. pajarokillo

    Generate events inside report

    Hi, my english is not very good, but i hope that i can explain me something. I have created a report with groups and a image, and i would like that when i click on the image, all the report display itself drill down, and when i return to click on then image, all the report display itself drill...
  2. pajarokillo

    Create Groups dynamic

    How can i to create groups dynamicly in my reports in base a parameter passed from a web page?
  3. pajarokillo

    Question about Cache object

    Hi, i have a questions about Cache object: 1.- the objects that i store in the Cache object, it store in the memory of the server? 2.- How many objects is recommended to store in the Cache object? 3.- What is the difference between the Cache and Session objects? For now, that's is all...
  4. pajarokillo

    Doubt between DataSet or ArrayList

    Hi!, i am doing a web application that will be it a Extranet.My doubt is the following, for example, you assume that i want to fill a dropdownlist with client's information, i don't know that is better and best performance, if from my logic layer to return a DataSet with the client's information...
  5. pajarokillo

    Problems with debug in Visual Studio .NET 2003

    Yes, i am the administrator, and if i set up the web application to execute it with framework 1.1 then i can debug the web application with Visual Studio .NET 2003, but if i try again to set up it with framework 2.0 then i can't debug it and Visual Studio 2003 display the message:"Unable to...
  6. pajarokillo

    Problems with debug in Visual Studio .NET 2003

    Hi, i am developing with Visual Studio .NET 2003, and i downloaded the .NET framework 2.0. Well, then i set up a web application to execute it with the new version of the framework, i compile the web application correctly, but when i want to debug the web application i get the following error...
  7. pajarokillo

    Linked Reports

    Ok Catdmin, very thanks for all.
  8. pajarokillo

    Linked Reports

    Yes Catadmin, your first consideration is the correct. Could you show me an example about it?
  9. pajarokillo

    Linked Reports

    ok, i'm spanish and my english isn't good. Well, i want that my base report, that i rendered it in HTML format, each other record of the base report link to other report in PDF format . Could it be done? I wait that i explain me better. Very thanks for heard me.
  10. pajarokillo

    Linked Reports

    Hi, i'd like to know how from a report to display other report in PDF format using parameters of the first report
  11. pajarokillo

    Dynamic properties in <html:text> tag

    I would like to set dynamicly the 'readonly' property of the <html:text> tag, I have done it the next way <bean:define id="pReadOnly" value="true" /> <hmtl:text name="myForm" property="myProp" readonly="<%=pReadOnly%>" /> But, it don't work correctly. How can i to do it?.
  12. pajarokillo

    Question about &lt;html:text&gt; tag

    Well, i have the next code in my JSP page <logic:messagesPresent message="true"> <html:messages id="message" message="true" property="nombre"> <c:set var="myVar"><bean:write name="message" /></c:set> </html:messages> </logic:messagesPresent> and i would like to set the text value with the...
  13. pajarokillo

    Errors in the PlugIn class

    What i can to do when my plugin class throw an exception?, how i could redirect to a error page?
  14. pajarokillo

    One doubt about PlugIn class

    Hi, i have a factory class that initialize a connection pool, and i would like to known if is a good idea to create that factory class in the my PlugIn class and to put it in then context application and then i can use it in my action classes, for example My factory class public class...
  15. pajarokillo

    Problem with RequestProcessor

    ok byam, very thanks
  16. pajarokillo

    Problem with RequestProcessor

    Why the code of the next processPreprocess method produce a IllegalStateException when it execute the method doForward? protected boolean processPreprocess(HttpServletRequest request,HttpServletResponse response){ HttpSession session = null; UserContainer user = null...
  17. pajarokillo

    Question about RequestProcessor

    Hi, i want from my RequestProcessor forward to ActionClass, for example protected boolean processPreprocess(HttpServletRequest request,HttpServletResponse response){ doForward("/prueba.do",request,response); return super.processPreprocess(request,response); } and in my action class i...
  18. pajarokillo

    More doubts about session control

    Hi, i follow having doubts about the session control. I do the session control in the next method: protected boolean processPreprocess(HttpServletRequest request,HttpServletResponse response){ HttpSession session = null; UserContainer user = null...
  19. pajarokillo

    Problem in session control

    ok byam, but i think that if the error ocurr it in the method doForward it will be equal if i forward it to a action class or a JSP page, no?
  20. pajarokillo

    Problem in session control

    Hi, here is my problem, i am doing a session control in the method processPreprocess of the class MyRequestProccesor, and my code for this control is the below: public class MerlinRequestProcessor extends RequestProcessor{ super.processPreprocess(request,response); session =...

Part and Inventory Search

Back
Top