Is there is any server side control do this

hi
im asking for a php server control(no client side) that i can
use it when i hide it won't rendered to the client and its space
will disappeared and the surrounded controls will be merged as if
there nothing was here
this idea will help me in CMS
any help
thanks in advance.

KeyboardReader is, I believe, a class that's distributed with some introductory textbook or the like, to make coding easier for newbies.
So using it would make the code more non-standard. IMHO it doesn't really make the code any simpler either.
IMHO the more complicated thing with your code is that you seem to intend to have a mapping from numeric values to actual items (e.g., apple).
So I'm guessing in the final program you're going to have something like
if (item == 1) {
  // it's an apple
} else if (item == 2) {
  // it's a pear
} else if // etc...I think it would be simpler to read the item as a string, and look up the string in a hashtable or the like to get, say, an Applet object or Pear object, or perhaps a ShoppingBasketItem object whose value is "applet", or whatever. Rather than having to hardcode a mapping from numbers to objects or costs in code.

Similar Messages

  • I have an iphone 3gs, and i keep getting blocked number calling me (prank calls) im getting really fed up with it all now i have had 12 calls from the same person! i was just wondering if there is any way i could block this caller from calling me?

          i have an iphone 3gs, and i keep getting blocked number calling me (prank calls) im getting really fed up with it all now i have had 12 calls from the same person! i was just wondering if there is any way i could block this caller from calling me?

    Contact your carrier and ask them.

  • HT6207 can someone please tell me if there is any problem if i download this. i am asking this question as i was in trouble when i had installed maverick [hard disk crashed]s

    can someone please tell me if there is any problem if i download this. i am asking this question as i was in trouble when i had installed maverick [hard disk crashed]s

    Well it does detect the camera, under USB in the System Profiler it says "FaceTime-HD-camera (built-in)". But the image distortion.
    Since you can't see the image, here's a description: it shows horizontal lines all over the place in the image, and the lines are quite tall and they contain part of the image but moved horizontally to the left or right, and in a different color as well. So for example you could see part of my face but there is a horizontal bar where my eyes are located in, and it is moved to the left so that my eyes are at the left of my face. I hope that made some sense...
    Will try to get to an Apple store next week.

  • Is any server side cursor concept in jdbc

    hello friends,
    i am new programmer in java, i am doing one project in which
    i have to show the record in group (like user click one <1> link then
    he can view first 10 record if <2> then he can view 11 -20 record list) on
    same page.
    tech - jsp/servlet
    database - mysql
    and if u know any tutorial jsp and mysql connectivity please tell me.
    waiting 4 reply
    thanx
    nil4u

    You will have to implement the caching of the results on the server side and return the results as the user requests them. You can use the CachedRowSet on the server side to help you do this. There may be some utilities and tools available to help with this, try googling.

  • In server side i got this below error.

    Hi all,
    its very urgent.... plzzz help me.
    I developed one oaf page and these files move to server side i got below error.
    *[appldev@wnsfinapp webui]$ javac ProjectInfoMainCO.java*
    Note: ProjectInfoMainCO.java uses or overrides a deprecated API.
    Note: Recompile with -deprecation for details.
    plz its very urgent.....
    thanks
    Seshu.

    Seshu,
    You are using one or more depreciated API in the java file either compile the java code in Jdeveloper or compile on server by overriding -Depreciated.
    Regards,
    Gyan
    gyanoracleapps.blogspot.com

  • Does apex support any server side JSP or PHP?

    I have the folowing script that is used to save flash files as images. I am hoping there is some way to make these serverside calls from within apex.
    <%@ page import="java.io.OutputStream"%>
    <%@ page import="java.awt.Color"%>
    <%@ page import="java.awt.Graphics"%>
    <%@ page import="java.awt.image.BufferedImage"%>
    <%@ page import="javax.imageio.ImageIO"%>
    <%
         //Decoded data from charts.
         String data="";
         //Rows of color values.
         String[] rows;
         //Width and height of chart.
         int width=0;
         int height=0;
         //Default background color of the chart
         String bgcolor="";
         Color bgColor;
         //Get the width and height from form
         try{
              width = Integer.parseInt(request.getParameter("width"));
              height = Integer.parseInt(request.getParameter("height"));     
         catch(Exception e){
              //If the width and height have not been given, we cannot create the image.
              out.print("Image width/height not provided.");
              out.close();
         if(width==0 || height==0){
              //If the width and height are less than 1, we cannot create the image.
              out.print("Image width/height not provided.");
              out.close();
         //Get background color from request and set default
         bgcolor =request.getParameter("bgcolor");
         if (bgcolor==null || bgcolor=="" || bgcolor==null){
                   bgcolor = "FFFFFF";
         //Convert background color to color object     
         bgColor = new Color(Integer.parseInt(bgcolor,16));
         //Get image data  from request
         data = request.getParameter("data");
         if(data==null){
              //If image data not provided.
              out.print("Image Data not supplied.");
              out.close();
         try{
              //Parse data
              rows = new String[height+1];
              rows = data.split(";");
              //Bitmap to store the chart.
              //Reference to graphics object - gr
              BufferedImage chart = new BufferedImage(width,height,BufferedImage.TYPE_3BYTE_BGR);
              Graphics gr = chart.createGraphics();
              gr.setColor(bgColor);
              gr.fillRect(0,0,width,height);     
              String c;
              int r;
              int ri = 0;
              for (int i=0; i<rows.length; i++){
                   //Split individual pixels.               
                   String[] pixels = rows.split(",");               
                   //Set horizontal row index to 0
                   ri = 0;
                   for (int j=0; j<pixels.length; j++){                    
                        //Now, if it's not empty, we process it                    
                        //Split the color and repeat factor
                        String[] clrs = pixels[j].split("_");     
                        //Reference to color
                        c = clrs[0];
                        r = Integer.parseInt(clrs[1]);
                        //If color is not empty (i.e. not background pixel)
                        if (c!=null && c.length()>0 && c!=""){          
                             if (c.length()<6){
                                  //If the hexadecimal code is less than 6 characters, pad with 0
                                  StringBuffer str = new StringBuffer(c);
                                  int strLength = str.length();
                                  for ( int p = c.length()+1; p <= 6 ; p ++ ) {
                                            str.insert( 0, "0" );
                                  //Assing the new padded string
                                  c = str.toString();
                             for (int k=1; k<=r; k++){     
                                  //Draw each pixel
                                  gr.setColor(new Color(Integer.parseInt(c,16)));
                                  gr.fillRect(ri, i,1,1);
                                  //Increment horizontal row count
                                  ri++;                              
                        }else{
                             //Just increment horizontal index
                             ri = ri + r;
              //Returns the image
              response.setContentType("image/jpeg");
              response.addHeader("Content-Disposition", "attachment; filename=\"FusionCharts.jpg\"");
              OutputStream os = response.getOutputStream();
              ImageIO.write(chart, "jpeg", os);
              os.close();
         }catch(Exception e){
              //IF the image data is mal-formatted.
              out.print("Image data is not in proper format.");
              out.close();
    %>

    NO, APEX does NOT support running jsp or PHP scripts..
    Thank you,
    Tony Miller
    Webster, TX

  • Cascading lists drop downs in SharePoint Designer (no server-side code) without postback

    I've created cascading drop downs populated from SharePoint lists, by following
    this post by Lars in SharePoint designer without using code, it works fine, my issue is that the secondary drop down only populates if the main drop down causes auto-post-back, is there any way to make the secondary drop down populate without causing
    post back and without using server-side code?
     

    Since you are using the ASP:DropDownList, you will need the post-back since it's a server-side control that doesn't use a callback. The following JavaScript library provides for a way to creating cascading dropdowns on the client-side,
    http://spservices.codeplex.com/wikipage?title=%24().SPServices.SPCascadeDropdowns
    Dimitri Ayrapetov (MCSE: SharePoint)

  • Server side java tech

    hi there
    what does server side java tech involve? any idea?

    It involves a server and Java programs. If you have a more specific question, that would be more useful.

  • Server-side workflows against Service Link updated parameter/data

    Is there a way to attach any server-side workflows to service link inbound updates/data other than what is available via parameter mapping and prebuilt functions? I need to manipulate a piece of data that is being updated in to a field by service link inbound message beyond what is available via prebuilt functions...
    Thanks.

    I could probably do it in the XSL, but my goal is to keep the agent configuration, parameter mappings and transformation generic as possible so that it can be reused without modification. For example, I have agent configuration for interacting with an external system, that is passing a certain number of parameters back and forth, but the actual use of these paramters may be different from one service or task to another that is interfacing with this same external system. So the parameter I need to add some logic to for this instance of the task may be representing something different from another task call, even if same parameter is used to carry that data across.
    Adding the logic and manipulation in the transformation will work for us if we can override and use different transformation in the task plan settings, similar to how we can override the parameter mappings, but that is not available today...

  • Server-side connection pooling for clients in different VM's

    We have a need to centeralize our connection pool manger.
    Is there a server-side connection pooling manger product to allow multiple clients running in different VM's to connect to and share connection objects to the same Database?
    e.g. An applet, and a swing and a servlet/web app application all running in different VM's will connect to this central connection pool manager and share connection objects to the same DB.
    We are using connection pooling for all of our applications but each application is maintaining its own connection pool and it is becomming a nightmare to manage and configure each one.
    Also, we have to have at a miniumum one connection open per application to access the database regardless of wether we are using connection pool or not. This means that 100 apps(running in different VM's) will use at minimum 100 connections... where all of these 100 apps will do just fine with just 10-15 connections.
    while back we used T3 server but can't find this product on BEA web site any more.
    does jdbc 2.2 or 3.0 have any server side pool management specs outlined?
    Please HELP as we can't afford anymore licensing fees for our company.
    oh.. We can't open and close connections on each query as they will be slow.
    any suggestions greatly appreciated.

    if i understand you question, i don't think this is possible, since the Connection interface (and basically all of the related jdbc interfaces) aren't Serializable.. so they can't be sent over the wire to your client(s).
    However, you could feasibly write some server side connection pool, and some server side facade which will allow clients to submit queries (either SQL String's or however you want to do it - obviously a more elegant solution involves a series of classes which dynamically create sql based on query criteria), then the server can grab a connection, execute the query, cycle through the results and populate some result object of your creation and send that back over the wire to your client(s).
    .

  • Server side limitations

    Hello,
    are there any server side limitations from acrobat.com, i
    mean regarding the bandwidth etc??

    Hi e-spec1,
    The commercial edition of Cocomo won't have any account
    limits (beyond some sanity limits to make sure you can't impinge on
    service quality).
    A few notes on this kind of structure, and possibilities :
    For your app, your customers will be doing business with you
    (obviously), as a "service provider" - your customers will have
    accounts with you, not Adobe, and your role will be in consuming
    Cocomo services and packaging them up in your app for your
    customers. So it's likely (and here, we're stepping into
    conjecture, but I'd like to float the idea and see your reaction)
    that in this case that you, as the provider of your app, only have
    1 account with Adobe, and use that one account to build rooms for
    all your various customers. You'd pay (in some way) for utilization
    on that account, and pass the costs on in the price of your app to
    your customers.
    hope that made any sense - again, this is a discussion we're
    eager to have with all of you - feedback welcome!
    thanks
    nigel

  • How to parse XML in server side javascript (XSJS)?

    Hi Experts,
    I can get the XML file content through this method:var xmlString = $.response.body.asString() and I need to parse XML. If there XML parser in server side javascript? thanks very much!

    Hi Wenwen Hou,
    There is a blog available at
    Parse XML in server side javascript (XSJS)
    This can help you achieve parsing xml in server side javascript.
    Regards,
    Anjali.

  • Power View with dynamic connection string, but server-side

    We'd like to evaluate using Power View to provide exploratory BI over data output from HDInsight, onto Azure Storage. We need to let users select which segments of data to load but through a web-ui (not Excel on the desktop). We expect to have a standard
    data model, it's just the segments of data that will be dynamically selected by the user. Basically the Power Query will need to be updated dynamically, but on the server-side. Is this scenario currently possible?

    Any suggestions for SFiorito?
    Thanks!
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Server-side flash player version detection

    Does anyone know of a method to pull the users flash-player
    version number (the entire thing, not just
    &quot;&gt;6&quot; or &quot;9&quot; but
    &quot;9,0,115,0&quot;) that does not use browserhawk. We
    are building a troubleshooting page for our LMS built on ASP.net,
    and do not want to use javascript, or vbscript to pull the version
    number. We can use a javascript method if absolutely necessary, but
    want to explore any server-side methods we can use first. We don't
    want to use browserhawk as it is wholly too expensive for our
    purposes.

    I have done that temporarily, but we were hoping to do this
    without placing a Flash SWF on the page. We are building a
    troubleshooting page, and want to keep as many variables out of the
    calculations as we can. IE, if Javascript is the issue, then a
    Javascript to tell us the Flash version would be a bad idea. If
    Flash is the issue, then a flash element would be a bad idea. If we
    keep all of the calculations on the server-side, and not on the
    client-side, then we know that nothing of the clients is messing
    with the information displayed.

  • Can't see BlazeDS server side log

    Hi,
    I'm running JBoss 5 EAP and BlazeDS 3. I don't see any server side log for BlazeDS even though I followed BlazeDS documentation. Following is the logging section in my services-config.xml:
        <logging>
            <target class="flex.messaging.log.ServletLogTarget" level="All">
                <properties>
                    <prefix>[BlazeDS]</prefix>
                    <includeDate>true</includeDate>
                    <includeTime>true</includeTime>
                    <includeLevel>true</includeLevel>
                    <includeCategory>true</includeCategory>
                </properties>
                <filters>
                    <pattern>Endpoint.*</pattern>
                    <pattern>Message.*</pattern>
                    <pattern>Service.*</pattern>
                    <pattern>Configuration</pattern>
                </filters>
            </target>
        </logging>
    According to the documentation, I should see log entries for BlazeDS in JBoss server log. But I didn't. Can anyone help me out with this issue?
    Thanks.

    Sorry, just as an addedum, I can connect through a hard connection, but I can't access Screen Sharing

Maybe you are looking for

  • Does a replacement charger run the risk of killing power supply

    I have an ibook g4 and i just had to buy a new battery but it won't charge...the old one wasn't charging at all, and the new one won't either...i had to buy a replacement charger a few years ago, then about 4 months after that the computer stopped wo

  • Drop down menu not appearing right

    Hi i have a dynamic drop down menu on one of my site pages ( http://www.mantle.co.uk/investment.php?ID=1), the menu optionss are appearing outside of the menu? i cannot see why, below is my code: <form action="<?php print $_SERVER['PHP_SELF'];?>" met

  • ABAP reports to crystal reports

    Hi, what is the best way to convert 100 ABAP reports we have into crystal reports. is there a tool for that by business objects or crystal reports or do we have to do it hand by hand, one ABAP report to one crystal report.  Please help. Thanks.

  • Can you give each item in a podcast its own image?

    We would like each individual item within a podcast to be able to have its own album art.  How can this be achieved? Thanks, A

  • InDesign CS3 with Windows 7

    I just bought a new computer running Windows 7. I installed Creative Suite 3 (I did have to uninstall my display driver to get it to install) and opened InDesign. When I open a new document, I can use some tools, but not others. For instance, I can u