Display of the data in a recordset object

Hello

I created a recordset and returns 6 rows of data when tested. These are products of a catalog online and I would like to do is show 6 products per page. I created 6 areas and added the data dynamically and what happens, is that the first row of data appears 6 times. Is it possible to display all rows on a page? I read "Recordset Paging and go to the next page" and I can get this working, but what I need is to display 6 products on one page. I use PHP and MySQL with Dreamweaver. No doubt it something to do with $mysql_num_row, but is there a simple way in Dreamweaver to do this? If not, anyone know the syntax of PHP to get this working?

Hope you can help me.

Concerning

Nikki

Wednesday, August 30, 2006 04:23:37 p, Nikki Cade wrote
Macromedia.Dreamweaver.AppDev:

> I created a recordset and returns 6 rows of data when tested.
> These are products of a catalog online and I would like to
> show 6 products per page. I created 6 areas and added the
> data dynamically and what happens, is that the first line of data is
> displays 6 times. Is it possible to display all the lines on one
> page? I read "Recordset Paging and go to the next page" and I
> can get this job, but what I need is to display 6 products on a
> page. I use PHP and MySQL with Dreamweaver. No doubt it
> something to do with $mysql_num_row, but is there a simple way
> Dreamweaver to do this?

Instead of 6 regions on a single page, put a single region and fill
It is with the database fields. Then select the entire region, including
any container and add a repeat region. Tell him you want 6 records by
page. You can then add the Recordset paging.

Tags: Dreamweaver

Similar Questions

  • Why fields view object cannot display in the data control?

    Hello
    Work in jdev 11.1.2.3.0.
    I create two objects from view of the entities under the project module.
    and see the AppModule.xml as follows:
    ..
    < ViewUsage
    Name = "TransAccountVO1".
    ViewObjectName = "Project1. TransAccountVO "/ >"
    < ViewUsage
    Name = "TransAccountBillVO1".
    ViewObjectName = "Project1. TransAccountBillVO "/ >"
    ...
    Under the control of data panel shows these two nodes:
    -TransAccountVO1
    -id
    -name
    ---..
    + Operation
    + Named criteria

    -TransAccountBillVO1
    + operations
    + Named criteria,

    THE first node is ok, but the second miss (node TransaccountBillVO1) areas.
    Why fields view object cannot display in the data control?

    Thanks in advance.

    delete and Add again... the value editable forever.

  • looking for best practices on the display of the data inside a TableView

    I have an app that can extract one ore more of 300,000 lines as a result of a request, and I am their display in a TableView... I use a mechanism to bring the data "off-site", when I do the query, an object with the ID of the lines is set in memory and a 'queryResultKey' went to start asking for the data set.
    The controllers send the queryResultKey saying the DAO that she already results N, the DAO will return X records (from N + 1 to N + J) or less if the total number of records is reached. At this point, records are added to the elements of the table view using an addAll to list related to the itemsProperty table.
    It works very well for early records already, but all of a sudden a Null pointer Exception is raised:
    ene 15, 2013 12:56:40 PM mx.gob.scjn.iusjfx.presentacion.tesis.TablaResultadosController$5 call
    SEVERE: null
    java.lang.NullPointerException
         at com.sun.javafx.collections.ListListenerHelper$Generic.fireValueChangedEvent(ListListenerHelper.java:291)
         at com.sun.javafx.collections.ListListenerHelper.fireValueChangedEvent(ListListenerHelper.java:48)
         at com.sun.javafx.scene.control.ReadOnlyUnbackedObservableList.callObservers(ReadOnlyUnbackedObservableList.java:74)
         at javafx.scene.control.TableView$TableViewArrayListSelectionModel$3.onChanged(TableView.java:1725)
         at com.sun.javafx.collections.ListListenerHelper$SingleChange.fireValueChangedEvent(ListListenerHelper.java:134)
         at com.sun.javafx.collections.ListListenerHelper.fireValueChangedEvent(ListListenerHelper.java:48)
         at com.sun.javafx.collections.ObservableListWrapper.callObservers(ObservableListWrapper.java:97)
         at com.sun.javafx.collections.ObservableListWrapper.clear(ObservableListWrapper.java:184)
         at javafx.scene.control.TableView$TableViewArrayListSelectionModel.quietClearSelection(TableView.java:2154)
         at javafx.scene.control.TableView$TableViewArrayListSelectionModel.updateSelection(TableView.java:1902)
         at javafx.scene.control.TableView$TableViewArrayListSelectionModel.access$2600(TableView.java:1681)
         at javafx.scene.control.TableView$TableViewArrayListSelectionModel$8.onChanged(TableView.java:1802)
         at com.sun.javafx.scene.control.WeakListChangeListener.onChanged(WeakListChangeListener.java:71)
         at com.sun.javafx.collections.ListListenerHelper$Generic.fireValueChangedEvent(ListListenerHelper.java:291)
         at com.sun.javafx.collections.ListListenerHelper.fireValueChangedEvent(ListListenerHelper.java:48)
         at com.sun.javafx.collections.ObservableListWrapper.callObservers(ObservableListWrapper.java:97)
         at com.sun.javafx.collections.ObservableListWrapper.addAll(ObservableListWrapper.java:171)
         at com.sun.javafx.collections.ObservableListWrapper.addAll(ObservableListWrapper.java:160)
         at javafx.beans.binding.ListExpression.addAll(ListExpression.java:280)
         at mx.gob.scjn.iusjfx.presentacion.tesis.TablaResultadosController$5.call(TablaResultadosController.java:433)
         at mx.gob.scjn.iusjfx.presentacion.tesis.TablaResultadosController$5.call(TablaResultadosController.java:427)
         at javafx.concurrent.Task$TaskCallable.call(Task.java:1259)
         at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)
         at java.util.concurrent.FutureTask.run(FutureTask.java:166)
         at java.lang.Thread.run(Thread.java:722)
    This exception multibordure inside the Thread that fills the table:
    task = new Task<Integer>() {
                @Override
                protected Integer call() throws Exception {
                    while (listaTesis.size() < pag.getLargo()) {
                        List<TesisTO> tesisParaincrustar = fac.getTesisParaLista(pag.getId(), listaTesis.size());
                        try {
                            listaTesis.addAll(tesisParaincrustar);
                        } catch (Exception exc) {
                            Logger.getLogger(TablaResultadosController.class.getName()).log(Level.SEVERE, null, exc);
                        }
                        tesisActuales.addAll(tesisParaincrustar);
                        updateProgress(listaTesis.size(), pag.getLargo());
                    }
    
                    return new Integer(100);
                }
    
                @Override
                protected void succeeded() {
                    status.getProgreso().setVisible(false);
                    preparaFiltros();
                    llenandoTabla = false;
                    tblResultados.getSelectionModel().select(0);
                }
            };
            status.getProgreso().progressProperty().bind(task.progressProperty());
            new Thread((Runnable) task).start();
    So that may be another strategy to simulate (or have) all the registry values are in memory and 'capture only the necessary links' to display them in the TableView?
    Any idea will be useful.

    The first thing I would do here is to check that

    fac.getTesisParaLista(pag.getId(), listaTesis.size())
    

    cannot return null in all circumstances. If it returns null, then it is the source of your exception. In this case, you must add the caution appropriate to your code:

    if (tesisParaincrustar != null) {
                        try {
                            listaTesis.addAll(tesisParaincrustar);
                        } catch (Exception exc) {
                            Logger.getLogger(TablaResultadosController.class.getName()).log(Level.SEVERE, null, exc);
                        }
                        tesisActuales.addAll(tesisParaincrustar);
    }
    

    For the number of thread, you can plan everything which modifies the user interface to run on the Thread of the FX Application using Platform.runLater (...). Note that any data that you pass into that must not be changed elsewhere. If you can do something like:

    Platform.runLater(new Runnable() {
      @Override
      public void run() {
                        try {
                            listaTesis.addAll(tesisParaincrustar);
                        } catch (Exception exc) {
                            Logger.getLogger(TablaResultadosController.class.getName()).log(Level.SEVERE, null, exc);
                        }
                        tesisActuales.addAll(tesisParaincrustar);
      }
    });
    

    You need to add the 'final' keyword to the declaration of tesisParaincrustar to get this to compile.

    That's fine, assuming that the call to fac.getTesisParaLista (...) returns a new instance of the list each time (i.e. it does not change an existing list).

    You'll end up with only one problem: the condition in your while loop (...) refers to listaTesis.size (). Given that this list is now updated on a different thread to the thread of the while loop (...) management. This can (and probably won't be) cause the loop to terminate at the wrong time. You can adjust the condition while (...) so it does not refer to this list (for example, advance calculate how many things must be read, give this number to your implementation of the task and use it in the while condition (...).)

    There are actually two rules for multithreading in JavaFX:
    1. do not access the user interface outside the FX request Thread. This includes data related to the user interface structures. I guess at some point you have called tableView.setItems (listaTesis), so listaTesis should be considered as part of the user interface.
    2. don't run long running on the Thread of the FX Application tasks.

    In trying to comply with rule 2, you have violated rule 1.

    The incremental updates to a list that appears in a background thread is one of the most delicate uses of the task. Read the documentation of the API for task (http://docs.oracle.com/javafx/2/api/javafx/concurrent/Task.html): the example of "PartialResultsTask" under "a task that returns partial causes" is an example of what you're trying to do.

  • How can I get my Teststand report to display only the data of the latest iteration of a loop DoWhile ONLY stage?

    Good so I a DoWhile loop with a numeric value to test.  The loop will run 10 times.  I want only the status of success/failure of the test of the numerical value of the last iteration of the loop is displayed in the report.  I don't like on the other iterations.  Help, please!  Thanks in advance I think that this can be accomplished with the recall of ModifyReportEntry and fancy logic...

    Thanks for your comments everyone.  I ended up changing the reportgen_txt.seq to identify during my test was in a loop (by setting an additional result in the different stages of my comment loop-step to say "Record last loop.".)  Once this indicator lies in the ResultList I turn to reportgen_txt, I have to loop through all the ResultList entries and if the current entry has the same name and the "record last of loop." as a previous entry, I delete the previous entry and store the current.  All this way, I have to do is to set a flag in my test sequence, and if when debugging, I want to see all the data for all the iterations, I just remove the flag.

    The reportgen_txt.seq include:

    C:\Program NIUninstaller Instruments\TestStand 2010\Components\Models\TestStandModels

    I'm not worried about the time constants on my generation of report and I am not limited to stress strict memory so this seemed like the best way for me to do what I had accomplished.  I'm sure there are better ways, but it seemed simpler than the generation of report definition to be disabled and then enabled...

  • Custom properties are not displayed on the data portal

    In my version of return of DIAdem (2011), there are features to display personalized data portal properties. If selected by right-clicking on the data portal properties would appear under the root, the group or channel where they were stored. So far I have not been able to find this menu in 2014 DIAdem. This feature has been removed?

    Hi DIAdemUser1,

    In fact, this feature has been removed.  R & D wanted caused more confusion than benefit, and I agree.  I'm sorry for you and others who liked the feature that has now disappeared.  When tiara 9.0 released custom in the data portal properties shows their data types, but this feature has been removed in favour of simplicity.  I often miss this feature, but it's for the greater good.

    Brad Turpin

    Tiara Product Support Engineer

    National Instruments

  • Get the name and the data type into an object?

    Hello

    I would like to know if there is a way to get the names and the types of data encapsulated in an object of labview?

    For example, let's say I make a simple object, called myObject to be commonplace, with private data: myObjectName (string), myObjectValue (int 32) (etc.)

    So, how to build a method to return the type of the data of myObjectValue, or infact back the names and types of all data in the object field, which could be a lot?

    Thank you

    Paul.


  • SPACE is not displayed in the data in the apex 5.0.1

    Hi all

    I use version apex 5.0.1 on internet explore Oracle database 11g R2.

    I have data with the Urdu language and I could see my SQL Developer data correctly,

    but when I opened the apex to display the data, I have problem with a SPACE between each word that is separated from the SPACE.

    The screenshot is below. the EXCLAIMATION sign is displayed instead of the SPACE.

    Untitled.png

    How to solve this problem?

    Thank you.

    Hi Maahjoor,

    It would be useful for us that you can reproduce this problem on apex.oracle.com and provide us with the application id so that we can have a look. Have you also tested with another browser if the browser specific?

    Concerning

    Patrick

    ---

    Member of the APEX development team

  • Is there a window display and the data window as in Nuke for sequels?

    Not sure what the best way to Word this, but that's.  I wonder if there is a comparable feature in After Effects to what Nuke called the "showcase" and the data window".  I will do my best to explain my problem.  I'm jumping backwards between After Effects and Nuke.  I used After Effects extensively since version 6.5 to 2005 or 2006.  I've been tinkering with Nuke for years now, but now I'm determined to get competent in it.  One of the features I noticed Nuke who seems to be lacking in After Effects is the "bounding box/display window" that appears as a white dotted line around an image in the display window.

    Right now I'm working on a show that is My.cnf anamorphic linear exr with a deliverable 2158 x 2272 resolution.  There is a pixel 233 pad/mat up and down so that the image is actually 2158 x 1806.  If I open one of these files/shots in Nuke, I get the picture, 2158 x 1806 in the display window with a blank line dotted around her, within the metadata of the node, Nuke reading tab called the "exr/data window.  It's floating in a sturdy white box that defines the full resolution of the photo (2158 x 2272), which includes 233 pixel black padding up and down.  The anamorphic 2:1 ' squeeze' automatically' corresponds to the image in the display window 2158 x 1806 and remaining leaves 466 pixels up and down black and calls this overview read full resolution the "showcase" in the metadata tab of the node.  Nuke reads metadata exr and performs the anamorphic compression. 

    If I open the same file in after effects CC, it cannot read the exr metadata so it does not apply a squeeze anamorphic and it stretches the image of 2158 x 1806 to fit the area of 2158 x 2272 complete resolution.  I have to shrink the image to 79.5% on the Y axis to get it's good aspect ratio.  After effects 2014 and 2015 WILL read the metadata and do the squeeze automatically, BUT when you return, he makes the black bars on the top and the bottom, Cook in the file.  If this file is read Nuke, it opens fine but it will no longer be a data window around the image because the entire image is defined by both the 2158 x 1806 and 466 pixels of padding.  If I turn of Nuke, it does NOT the black padding but stretches the image 2158 x 1806 in the "data window" to mount a 2158 x 2272, defined as the size of the file "window" that gets pressed again to a 2:1 ratio when it is read in Nuke.

    It's exhausting to write so I would be surprised if anyone makes it all through in this.  Since I have to do, I'll leave this here, in the hope, I gave enough information for someone to recognize this situation.  I hope I'm missing something for After Effects to read and write these files in the same way Nuke.  I am new to the exr world.  I have always used the DPXs in the NEWSPAPER.  In order to work with linear files above them in EXRs is kinda weird too.  Thanks for reading if make you throughout this, I hope that he has no sense at all.

    With version 1.9, the plugin EXR changed its treatment of displayWindow. He used to ignore it, but now it crops the displayWindow throughout. Most people prefer this, but you can be the exception. Fortunately, there is a way to restore the old behavior with the instructions in this message.

    AE does not have this notion of dataWindow/displayWindow together, so there is no way to make an EXR this way. I suggest to make the buffer full off-AE, then perform an adjustment in Nuke to re - define the displayWindow. There is also the EXR command-line tools that can do.

    If an EXR file has a pixel aspect ratio other than 1.0 (square), which should be reflected in AE. If it wasn't for some reason, you should always be able to enforce in interpreting the film.

  • How to get the data type of an object?

    I have some custom classes, and I would like to make conditional function that behaves differently depending on the data type of the object. How can I do this?

    you could do something like

    var obj:CustomObject = new CustomObject();

    If (obj is Objetpersonnalise)

    {

    do something

    }

    or you could look at using getQualifiedClassName() or getDefinitionByName()

  • Help with if/else in the display of the data - (possibly foreach)

    Hi all

    I tried to put something in place, and I'm having difficulty to operate.

    84-111 lines became my biggest challenge.  I have an if/else statement implemented so that if a record has a picture on the local host that the image is pulled up.  The way I have it now, it works fine.

    If I swap lines 93-96 with 102-105 and a 90 just tweek line, I can get it to work if the image is on an alias and not localhost.

    The problem is that if I pretend it's now, I can't both work at the same time.  So I try to get the if/else statement to apply to each record that is pulled to the top.  It seems that what he does now is to choose what part of the if/else statement it should use for the first record and then that applies for all records.

    Is it possible to have coded it as if it was now for the if/else statement (because I want to be able to add multiple alias and just check to see if the image is on the localhost or not); but the image doesn't matter if the image is located on the local host or alias?

    Here's what I have so far:

    <?php
    $search = $_GET['series'];
    $query_begin=" SELECT * FROM movies WHERE movie_name_series = '$search' ";
    $search_begin = mysql_query($query_begin) or die(mysql_error());
    $row_begin = mysql_fetch_assoc($search_begin);
    if($row_begin == 0){
    ?>
    <script type="text/javascript"><!--
    setTimeout('Redirect()',0000);
    function Redirect()
    {
      location.href = 'index.php?content=noresult';
    }
    // --></script>
    <?php
     } 
    else 
    { 
                    $query_display = "SELECT * from series WHERE series_id = '$search'";
           $result_display = mysql_query($query_display);
           $row_display = mysql_fetch_array($result_display, MYSQL_ASSOC);
           
              $series_id = $row_diaplay['series_id'];
              $series_name = $row_display['series_name'];
        
        ?>
    <h2>All Movies in our Library categorized in the series <?php echo $series_name ?></h2>
    <br />
    <div style="float: left; width: auto">
        Click on the name of the movie to edit the movie.
    </div>
         <br />
            <hr size="1" noshade="noshade" />
      <br />
    <?php 
    $query="SELECT * FROM movies
      INNER JOIN family_rating ON movies.movie_star_rating=family_rating.star_id 
      INNER JOIN alias ON movies.alias=alias.alias_id
      INNER JOIN parent_alert ON movies.parent_alert=parent_alert.alert_id
      INNER JOIN rating ON movies.movie_rating=rating.rating_id
      WHERE movies.movie_name_series='$search'
      ORDER BY movies.movie_name ASC";
    $result= mysql_query($query)or die (mysql_error());
    while($row=mysql_fetch_array($result)){
    // Display the data 
    ?>
        <table width="200" style="margin: 20px">
        <tr align="center">
      <td valign="top">
       <h1 style="font-size: 12px"><?php echo $row['movie_name']; ?></h1>
            </td>
        </tr>
        <tr align="center">
      <td valign="top" style="width: 100%; border-bottom: ridge #FFF; border-left: ridge #FFF; background: url(assets/images/transback.png) repeat; padding: 10px">
       <a class="ToolText" onMouseOver="javascript:this.className='ToolTextHover'" onMouseOut="javascript:this.className='ToolText'">
       <style media="screen" type="text/css">
              
              #coverart {
                display: block;
                width: 110px;
                height: 150px;
              }
              #coverart:hover { 
                background: url("assets/icons/play_movie.png") no-repeat 0 0;
              background-size: 110px;
              }
             </style>
             
            <p>
             <form action="index.php?content=play_movie" method="post">
                <input type="hidden" value="<?php echo $row['movie_id']; ?>" name="movie" />
             <input type="hidden" value="<?php echo $row['warning'] ?>" name="warning" />
                
                                        <?php 
              if ($row['alias_name']='localhost') {
             ?>
                                        
                                        <input onmouseover='this.src="assets/icons/play_movie.png"' 
                                         onmouseout='this.src="movies/coverart/<?php echo $row['art']; ?>"'
                                        type="image" src="movies/coverart/<?php echo $row['art']; ?>" 
                                        style="border: none" height="150" width="110" />
                                        <?php
              }else{
               ?>
                                        
                                        <input onmouseover='this.src="assets/icons/play_movie.png"' 
                                         onmouseout='this.src="http://<?php echo $row['ip_address']; ?>/<?php echo $row['alias_name']; ?>/coverart/<?php echo $row['art']; ?>"'
             type="image" src="http://<?php echo $row['ip_address']; ?>/<?php echo $row['alias_name']; ?>/coverart/<?php echo $row['art']; ?>" 
                                        style="border: none" height="150" width="110" />
                                        
                                        <?php
              }
              ?>
                                       
                </form>
                                        </p>
                     
                                    <span><h2 align="center"><?php echo $row['movie_name']; ?></h2>
            <?php echo $row['rating_name']; ?>
                                    <h4><?php echo $row['description']; ?></h4>
                                    
            
            <?php
             if($row['parent_alert']='1') {
              ?>
            <p align"center"><img src="assets/icons/<?php echo $row['alert_file_name']; ?>"></p></span>
                                    <?php
             } else {
             }
             ?>
                </a>
                <img src="assets/icons/s_<?php echo $row['star_file_name']; ?>" />
            </td>
     </tr>
        </table>
    <?
    }
    }
    ?>
    

    I looked through a number of tutorials and it is appropriate to use a loop for each.  However, I can't get this to work.  Is there anything I can do to make it work the way I'm trying to?  There is a problem with my if/else or do I need one for each?  If I need one for each, how can I do this?

    Thank you.

    9thReg wrote:

    I have a page that pulls in some records in a database, where I've got year if / else statement in the section where it shows the data.

                                        
    
    

    Thank you. It is much clearer, and he made the mistake of stand out immediately. You'll kick yourself when you realize what it is.

    Your condition in the condition clause is assigning the value "localhost" in $row ['alias_name'] instead of comparing the two values. You must use two equal signs to:

    
    

    I haven't checked the rest of your code, but the condition of fixing should solve the main problem.

  • How to display all the data using several parameters?

    Hi all
    I used a query as follows to display the data in a report:

    Select col1, col2 / / col1 and col2 are columns of tabale tab1
    of tab1
    where
    tab1.Col1 =
    (case when: P_COL1 IS NOT NULL then / /: P_COL1 IS a USER SETTING to EQUAL COL1)
    : ANOTHER P_COL1 tab1.col1
    end)

    AND TAB1. COL3 =
    (case when: P_COL3 IS NOT NULL then / /: P_COL3 IS a USER SETTING to EQUAL COL3)
    : ANOTHER P_COL3 tab1.col3
    end)

    The problem is when I run the report with the values of parameters or not, it shows the data that is not null for col1 and col3.
    That is when the value of col1 or col3 is zero the report would not return this record!
    I want the report to show all the data not just the values that is not null.
    How to do this?

    Men,

    ( :p_col1 is null or ( :p_col1 = tab1.col1 ) )
    and
    ( :p_col2 is null or ( :p_col2 = tab1.col2 ) )
    and
    ( :p_col3 is null or ( :p_col3 = tab1.col3 ) )
    
    etc.
    

    Kurz

  • Why my display of the date of the mailbox does not have a / between the year and the month?

    I'm talking here about how the date of different e-mails appear in my Inbox. I have a / between the month and the day, and a / after the day, but I did not / between the year and the month.

    TB uses the date format short, such that defined by your operating system, which, in the case of Windows, is located in the Panel control/region and language.

    http://KB.mozillazine.org/Date_display_format

    There are a few modules that might also be useful:

    https://addons.Mozilla.org/en-us/Thunderbird/addon/ConfigDate/

    https://addons.Mozilla.org/en-us/Thunderbird/addon/Super-date-format/

    http://chrisramsden.vfast.co.UK/3_How_to_install_Add-ons_in_Thunderbird.html

  • Display with the Table function in pipeline object

    I try to use a read only View object with a pipeline function table which takes in and defined by the user returns the objects. I work with an OraclePreparedStatement, but want to use a view object.

    This is the query:
    SELECT test_pkg.test_function(?,?) FROM DUAL;

    How can I configure the input parameters of the View object? The only method I can find available is setWhereClauseParam, but there is no where clause.
    Is it possible to use an object view in this situation?

    Any help is greatly appreciated. Thank you.
    S

    This can be done very easily. The query of your view object should be:

    SELECT *
      FROM TABLE(test_pkg.test_function(:bind1, :bind2))
    

    Then create variable bind for both parameters.
    You will set the bind variable in the same way that you define bind variables for any other question.

    Published by: jflack on April 9, 2013 16:28

  • Schema name is not displayed in the data loading

    Hi all

    I'm trying to load a CSV file using oracle apex data loading option. The options are using a new upload (.csv) file and table. In the data load page, the schema name is not list my current schema because of which I could not not to download the CSV file.
    Can someone please help with that?


    I use apex oracle 4.1.1

    Concerning
    Rajendrakumar.P

    Raj,

    If it works on apex.oracle.com (4.2) and not in your case (4.1.1), my suspicion is that this is a bug that has been fixed in 4.2 APEX. Apart from upgrading your version 4.2 of the APEX, I'm not sure that there is not really a viable alternative.

    Thank you

    -Scott-

    http://spendolini.blogspot.com
    http://www.enkitec.com

  • Where is the display of the Date (calendar) in PSE11?

    Hello. Where is the display of the calendar in PSE11?

    Hi Magne69,

    The calendar is in the events section. Click on the 'Events' tab and there you have a calendar in the right pane. More info on that here...

    Thank you

    Catherine

Maybe you are looking for