Question setting

Basically, what I'm trying to do is to make a completely different site to appear in the middle of an already existing site. I have been informed of how to do it is through frames. So I created a new page with 2 frames: a top one for a navigation bar that is common across all pages on my site and a lower which has a sperate in there site. When I click on one of the navigation buttons in the upper part, it just opens the link at the top of the window. I want the frame occur only on this page, and when I click on one of the links to go to another page without the frames. Is this possible?

You must specify the target. Before continuing, you should get at least a basic understanding before starting to build a site of images:
http://www.w3schools.com/HTML/html_frames.asp

Tags: Dreamweaver

Similar Questions

  • HP Envy 700-216 graphics Office Questions setting memory

    My computer, running Windows 8.1, has an A-10, with graphics card GPU in the HD 8670 D processor.  I know that it uses system memory.  I have found that it was using 768 MB on the 12 GB PC12800 RAM (1600).  I don't know where, or whether it is possible to adjust so that it uses more memory to my system.

    Would be really useful to use a bit more, because I doubt I'll be close to everything medium anyway?  Can I pay, is it possible?  I tried looking in almost all settings, but don't see anything to get to this setting.   I noticed some things seem to take the activation in the BIOS, but not knowing what they did exactly, I wouldn't change a thing.  Also, I looked through catalyst and saw nothing there either, to adjust.

    One of the reasons for which I had a processor A-10 (a series) is that I read later, you can add a graphics card, and that she would work with the GPU graphics to make for a better combined graphical experience.  But I noticed in the specifications of the motherboard (MS - 7778 Jasmine) the comment "If PCI-E card is installed you will have not yet boarded Graphics '   or something of the sort.  I was wondering what this means you cannot plug into these jacks on the motherboard, or the graphical part of the A-10 processor will just dormant?

    Any help on these questions would be useful, as well as suggestions of the best PCI-E graphics to get.  I have a power supply 550 Watt here somewhere - just need to find and check to see if it has all the appropriate Sockets.  Thank you!

    James

    J_Mike, welcome to the forum.

    Video Ingrated will use as much memory system as needed up to 1 GB, I think.  You don't have to adjust.

    Yes, the embedded video is disabled if you install a discrete video card.  However, it is not negative.  A discrete video card will improve performance as well.

    The 550W PSU will be good for one of the new intermediate level video cards.  Most of them requires a minimum of 400 w to work properly.

    Please click on "BRAVO Thumbs Up" if I helped you and click on "Accept as Solution" If your problem is resolved.

  • N00b question - setting Table height

    I have a table inside a layer, I want to put this table to have let say 10 columns and I want the height of the entire table to 100 px.
    What is happening is that the table does not change its size, what is happening, it is that the table is bigger then the div itself in the page.

    So how to change and limit the height of the table as I want?

    Hmmm.

    Best suggestion at this point may be to search the archives. I have
    don't ' know not whence these models 'Halo', but they seem to be
    very popular and also seem a little difficult to customize. I've seen a lot of posts
    has this respect, and I don't ' know not, but perhaps the answer is already
    waiting in the archives.

    The archives can be found here:

    http://groups.Google.com/group/Macromedia.Dreamweaver
    http://groups.Google.com/group/Macromedia.Dreamweaver.AppDev

    Try looking through the archives, if that is not ' fix you, after return.

    For your question, you can't set a height for the table. A table will be extended to
    show everything that is inside.

    You can control the height of the div, and if the div expands to show the content.
    or hides the content that passes over. This is set with the overflow:
    attribute (show/hide/auto).

  • Question setting baud rate to IMAQ using Camera Link

    I have a card PCIe-1433 to link camera, with a camera of Basler. I found that I can put the gain and exposure both directly in the camera with the help of the link series and order series. It works very well. I do this programmatically by using the CLAllSerial.DLL.

    Series orders take too long to send in my application because of the default 9600 baud rate, so I was able to send a command to the Basler camera up to its transmission speed, then changing the baud rate of the port com series camera link for the match. The result is that I can quickly talk to the camera. Sweet so far.

    However, with the Basler camera and camera link com serial port to the higher transmission speed, I can no longer acquire images using imgXXX IMAQ commands. I get a time-out of orders series IMAQ must use to control the camera for Imaging. Essentially the IMAQ driver does not know the baud rate change. I don't see how I can tell the IMAQ driver what output baud rate to use. Also, NEITHER MAX becomes unusable in this situation.

    How can I, via the IMAQ driver, increase the speed of transmission of orders series to the camera via the connection of the camera?

    See you soon,.

    Wayne

    So, I thought this close and post the solution. To increase the speed of transmission of communications series through camera link, you must:

    -Use the NI Camera File Generator to change the file of the camera (or simply edit it directly, since it is the text file).

    -Run NI MAX and connect to the camera using the new camera file. MAX will not be able to talk to the camera at the moment, because the speed of camera has not yet been changed.

    -In your application, first set the link rate 9600 series, so you can talk to the camera. Now change the baud rate in the camera itself, using all save changes, etc., are necessary for the camera, you are connected to. Finally, change the speed of link series to baud rate selected in the file of the camera. (It goes without saying that the serial link baud rate and baud rate camera must match).

    Now, both the driver AND AND the camera are according to the new baud rate. You can exit the application and allows to access your camera... until you turn off the camera... how he NI MAX (at least the Basler I use) restores baud rate 9600. Works great!

    See you soon,.

    Wayne

  • QML question setting of dynamic components

    I am wanting to adjust objects in a component definition in my main qml.

    hand. QML

    Page {
       id: mainPage
       Container {
           id: root
    
       //Container in separate page
       SomeCustomControl {
           id: someCustomControl
       }
    
       }
    
      onCreationCompleted: {        //I attempt to change them but nothing is recognized past customDef        someCustomControl.customDef.changeContainer.background = Color.Blue  }
    
    }
    

    someCustomControl.qml

    Container {
        id: root
    
        property variant attachedDef    property alias customDef: myDef
    
        Container {
           id: body
        }
    
        attachedObjects: [
            ComponentDefinition {
                id: myDef
                source: "myDef.qml"
            }
        ]
    
       onCreationCompleted: {
          if (!root.attachedDef){
            root.attachedDef= myDef.createObject();
          }
          body.add(root.attachedDef);
    }
    
    }
    

    myDef.qml

    Container {
        id: root
        property alias ccback: changeContainer.background    //Goal is to change the background color
        //From main.qml
        Container {
            id: changeContainer
            preferredWidth: 100
            preferredHeight: 100
            background: Color.Green
        }
    
    }
    

    I don't know how to access the components in the component definition to change

    I thought about it, instead of using the alias customDef, if I just use the Variant that he accepts the definition inside objects

    hand. QML

    onCreationCompleted: {   if (someCustomControl.attachedDef){      someCustomControl.attachedDef.ccback = Color.Blue   }
    }
    

    The other form of definition makes things a little crazy unless is just a really small item, I had just questions so that it connects, but then I played a little with this example, I wrote just out and turns out it was not as hard as I thought

  • Small Question: Setting of the different units of measure?

    Hi guys

    I'm no expert with Id and I was invited to present a design for print, using Id to create a print ready PDF. The dimensions given for me are 10 feet by 3 feet, with a 3mm of eave. OK, I set as 120inches by 36inches measures. But how then to set the purge in millimeters?

    Any help would be appreciated.

    Kind regards

    Graham

    You type in

    Units of measure can be changed by right-clicking the sovereigns, in the preferences or with a hotkey combo (which I keep forgetting who it is). However, almost all areas where you can type a unit value, you can also type in a different unit of measure. So in your case you just type in "3 mm" to the purge.

    (... "Pi" really added to the list of units?)

  • Newbie on the aperture lens question sets

    I did have the chance to try a goal at opening fixed yet. I just wanted to know if you can still change the opening of like for example f/2.8 to f/8 or more. ? Or is the only opening you can f/2.8. How does this work?

    This is not a "fixed" aperture because it cannot be changed.  This means that this isn't a "variable" opening that changes as the focal length changes.  This lens keeps f2.8 it is thanks to its focal range.  It can and it has all the apertures from f2.8 to f22.

    This goal is, BTW, the best 24-70mm made today.  There's nothing better.

  • BlackBerry Smartphones 2 Questions: Setting recurrent events calendar & auto unlocking

    I have an 8700 phone.

    1. I need to define a fortnightly recurring appointment in my calendar. However, there is no option to select a mode bi-weekly. The recurrence only available options are None, daily, weekly, monthly, annual. Help, please!

    2. I put my phone to 'Lock lock on Holster' (according to the security option). When I take it off of the case, I have to press on * unlock to turn, which I find it too heavy. Is there a way to "Unlock the handheld computer" automatically when removing it from the case?

    Thank you

    Rob

    rfelaire wrote:

    2. I put my phone to 'Lock lock on Holster' (according to the security option). When I take it off of the case, I have to press on * unlock to turn, which I find it too heavy. Is there a way to "Unlock the handheld computer" automatically when removing it from the case?

    sHello,

    Yes, it's easy. Just disable the lock on the Holster.

    When your blackberry is holstered, there is a small magnet that said 'you're inside me' for screen and blackberry keyboard do not work as long as the blackberry is in the Holster. As son as you come out of the Holster, the screen and the keyboard are available for type.

    It works for the Blackberry case, as well as for some other pouches/holsters from other companies, provided that they have the magnet

  • question setting scrolling

    I have no problem creating scrolling images with text or images. But I saw a file which seemed to have a floating frame where broken instead of free content scrolls. For a quick slide you took of the first image to the second and so on instead of just dragging.

    How this is done?

    (It appears in the 'mode of cooking magazines Donna Hay in Australia for reference)

    This has been done using HTML. I'll add this to my list of examples HTML to include. If anyone has examples of HTML code, please share.

  • How to set sql server date has time format

    Dear Sir.

    I used the windows 7 operating system.

    I have work on scada software to explore siemens wincc.

    I develop the report based on sql server work.

    but the problem is when I put my system date in DDMMYYYY format, so my data was not stored in sql server.

    but when

    I put my system date in YYYYMMDD format, then my data stored in sql server.

    so, how to change the date format sql server.

    I am attaching screenshot (it is a red box, so this date format, I held DDMMYYYY)

    Please give solution.

    Abhijit Hello,

    Thank you for visiting Microsoft Community and we provide a detailed description of the issue.

    According to the description, I understand that you have a question setting SQL server date time format. When you try to set the system date format id ddmmy, the data are not stored in SQL server on the system.

    To get more information about it, we have a dedicated forum where these issues are dealt with and would be better suited to the TechNet community.

    Please visit the link below to find a community that will provide the best support.

    https://social.technet.Microsoft.com/search/en-us/TechNet?query=SQL%20server&beta=0&AC=4#refinementChanges=129&PageNumber=1&showMore=false

    I hope this information is useful.

    Please let us know if you need more help, we will be happy to help you.

    Thank you.

  • Master Deatil - data (attribute set to 550 to Deptno in AppModule.EmpEOVO2 invalid precision/scale a) entry

    Hello

    Created according to schema Scott

    (1) EMP - EO

    (2) Dept - EO

    (3) Dept-Emp-Assocaication

    (4) EMPEOVO

    DeptEOVO 5)

    (6) Dept-EMP-VL (see link)

    (7) especially VO of presentations to the Module of the Application

    (7) with the Groovy Expression to obtain the values of the primary key for the EMP and Dept

    I have now that I drag and drop the DeptVo (ViewLink)

    as well as the Emp VO

    Drag Drop the CreateInsert on the page for the Dept and EMP

    After clicking on Dept - CreateInsert entered the Date, now I want to make the CreateInsert on Emp line, now I am faced with the question (set of attributes whose value 550 to Deptno in AppModule.EmpEOVO2 has precision/scale not valid)

    Thanks adavance

    Venkatn

    Have you checked the data type of the attribute pk in the emp table?

    What is a number type? If this isn't the case, you will need to return to the groovy case expression.

    Timo

  • Problem with challenge Questions/Force Password reset

    Problem with challenge Questions/Force Password reset

    We have integrated the IOM - OAM 11g R2 PS1. When a new user is created through the console of the IOM and tried to login for the first time in the console of the IOM.

    -Accessible via Direct / url of the Web server on port 7777 (by OAM), framework for change of password is visible and challenging questions setting frame is not visible. In this case, I'm not able to reset the password due to errors (popup appears with "Houston-29000 unexpected exception caught:" error). Paste the contents of the log below:

    NOTE: ANY CUSTOMIZATIONS PERFORMED ON ISSUES CHALLENGE *.

    oracle.iam.ui.platform.exception.OIMRuntimeException: Houston-29000: Unexpected exception caught: java.lang.NullPointerException, msg = null

    at oracle.iam.ui.authenticated.firstlogin.model.am.FirstLoginAMImpl.changePassword(FirstLoginAMImpl.java:261)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at oracle.adf.model.binding.DCInvokeMethod.invokeMethod(DCInvokeMethod.java:657)

    at oracle.adf.model.binding.DCDataControl.invokeMethod(DCDataControl.java:2143)

    at oracle.adf.model.bc4j.DCJboDataControl.invokeMethod(DCJboDataControl.java:3114)

    at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:261)

    at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1635)

    at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2150)

    at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:740)

    at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.executeEvent(PageLifecycleImpl.java:402)

    at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding._execute(FacesCtrlActionBinding.java:252)

    at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding.execute(FacesCtrlActionBinding.java:210)

    at oracle.iam.ui.platform.utils.FacesUtils.executeOperationBinding(FacesUtils.java:176)

    at oracle.iam.ui.platform.utils.FacesUtils.executeOperationBindingFromActionListener(FacesUtils.java:123)

    at oracle.iam.ui.authenticated.firstlogin.bean.FirstLoginValidatorBean.setPassword(FirstLoginValidatorBean.java:376)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at com.sun.el.parser.AstValue.invoke(AstValue.java:187)

    at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:297)

    at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1256)

    at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)

    at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)

    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)

    to oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$ 1.run(ContextSwitchingComponent.java:92)

    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)

    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)

    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:1018)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:386)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:194)

    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:227)

    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)

    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)

    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.adf.view.page.editor.webapp.WebCenterComposerFilter.doFilter(WebCenterComposerFilter.java:117)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:446)

    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:446)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)

    Any help.

    Thank you.

    I solved this problem, the problem is due to Bug ID # 17008132.

    Thank you.

  • Method of application for process by running several times question

    Hi all

    In my controller code, application of process method is run several times, and insertion of multiple data in the table, any body can help me how to solve this problem.

    I have the code in my application process below:

    OAApplicationModule m = pageContext.getApplicationModule (webBean) (OAApplicationModule);

    am.invokeMethod ("InsertRecord", null);

    OAMessageLovInputBean oalovinputbean = (OAMessageLovInputBean) webBean.findIndexedChildRecursive ("ccustatus");

    oalovinputbean.setValue (pageContext, "INPROGRESS");

    String userName = pageContext.getUserName ();

    System.out.println ("username is:" + username);

    OAMessageTextInputBean pUserId = (OAMessageTextInputBean) webBean.findChildRecursive ("item32");

    pUserId.setValue (pageContext, userName);

    OAMessageTextInputBean pchangedby = (OAMessageTextInputBean) webBean.findChildRecursive ("item34");

    pchangedby.setValue (pageContext, userName);

    If ((("on").) Equals (PageContext.GetParameter ("rrchkbox")))

    {

    String whereclause1 = (String) pageContext.getTransactionValue ("whereclause");

    String workordnum = (String) pageContext.getTransactionValue ("workordnum");

    String rrnum = (String) pageContext.getTransactionValue ("rrnum");

    String ponum = (String) pageContext.getTransactionValue ("ponum");

    System.out.println ("whereclause test1" + whereclause1);

    String status = pageContext.getParameter ("ccustatus");

    System.out.println ("CLEMENT LINE STATUS:" + status);

    Serializable param [] = {workordnum, rrnum, whereclause1, ponum};

    am.invokeMethod ("getSearchData1", param);

    am.invokeMethod ("checkSelectedrow", param);

    Vcnt serializable = am.invokeMethod ("processPOData", param);

    }

    Below the code written in AM:

    Public Sub InsertRecord()

    {

    XXDPECONTAINERVOImpl vo = getXXDPECONTAINERVO1();

    vo.setMaxFetchSize (0);

    Line XXDPECONTAINERVORowImpl = (XXDPECONTAINERVORowImpl) vo.createRow ();

    oracle.jbo.domain.Number empNum = (oracle.jbo.domain.Number) getOADBTransaction () .getSequenceValue ("XXDPE_CONTAIN_SEQ");

    row.setContainerizationId (empNum);

    vo.insertRow (row);

    row.setNewRowState (rank. STATUS_INITIALIZED);

    }

    Please help me.

    Thank you Manu for your answer, my question set, in fact it was I have attached several region in the page controller, so whenever the page load is run 3 times and the call to the insert 3 times, so I corrceted it now is workign fine.

    Thnaks

    Deb

  • How to merge several pull random requests in a result set?

    See tables: http://dl.dropbox.com/u/10356431/Shared/screen.png

    Can someone help me build a query that will randomly get questions based on the category and the level of difficulty and the total number of questions in the Question Set Config. table.

    I built a.

    SELECT c.question_id
    s.question_set_id
    OF qm_question_category c
    s qm_question_set_cfg
    WHERE (c.category_id = s.category_id
    AND c.difficulty_level = s.difficulty_level
    )
    AND ROWNUM < = (SELECT SUM (total_questions)
    OF qm_question_set_cfg
    WHERE question_set_id = 101138) / * Set ID * /.
    ORDER BY dbms_random.value

    It retrieves the total number of questions randomly from the existing questions based on the categories and the level of difficulty.

    But what I want is to * first go get the questions in each category + difficulty at random, then merge these lines * in a single result set. (For eg. 10 questions random category 1, Category2 10 to 10 of CategoryN as stated in the Question Set Config)

    Hello.

    Here's one way:

    --'sample data'
    WITH questions AS
    (
         SELECT
              LEVEL question_id,
              'Q'||LPAD(LEVEL,3,'0')||'?' question_text FROM DUAL
         CONNECT BY LEVEL <=500
    ),
    question_category AS
    (
         SELECT
              10-MOD(LEVEL,10) category_id,
              LEVEL question_id,
              MOD(LEVEL,3)+1 difficulty_level
         FROM dual
         CONNECT BY LEVEL <=1000
    ),
    question_set AS
    (
         SELECT 1 set_id, 'set_1' set_name FROM DUAL UNION
         SELECT 2 set_id, 'set_2' set_name FROM DUAL
    ),
    question_set_config AS
    (
         SELECT 1 set_config_id, 1 set_id, 1 category_id, 3 difficulty_level, 3 no_of_questions FROM dual UNION
         SELECT 2 set_config_id, 1 set_id, 2 category_id, 2 difficulty_level, 5 no_of_questions FROM dual UNION
         SELECT 3 set_config_id, 2 set_id, 3 category_id, 2 difficulty_level, 4 no_of_questions FROM dual UNION
         SELECT 4 set_config_id, 2 set_id, 4 category_id, 1 difficulty_level, 6 no_of_questions FROM dual
    ),
    ------------------------ 'end of sample data' ----------------------------------
    questions_categories AS
    (
         SELECT
              qc.category_id,
              q.question_id,
              q.question_text,
              qc.difficulty_level,
              ROW_NUMBER() OVER (PARTITION BY qc.category_id,qc.difficulty_level ORDER BY dbms_random.value) rn
         FROM
              questions q,
              question_category qc
         WHERE
              q.question_id = qc.question_id
    )
    SELECT
         qs.set_id,
         qc.question_id,
         qc.question_text,
         qc.category_id,
         qc.difficulty_level
    FROM
         question_set_config qsc,
         question_set qs,
         questions_categories qc
    WHERE
         qsc.set_id = qs.set_id AND
         qsc.difficulty_level = qc.difficulty_level AND
         qsc.category_id = qc.category_id AND
         qc.rn <= qsc.no_of_questions
    ORDER BY 1,4;
    
    SET_ID     QUESTION_ID     QUESTION_TEXT     CATEGORY_ID     DIFFICULTY_LEVEL
    ------     -----------     -------------     -----------     ----------------
    1     29          Q029?          1          3
    1     359          Q359?          1          3
    1     449          Q449?          1          3
    1     298          Q298?          2          2
    1     328          Q328?          2          2
    1     88          Q088?          2          2
    1     238          Q238?          2          2
    1     208          Q208?          2          2
    2     187          Q187?          3          2
    2     7          Q007?          3          2
    2     247          Q247?          3          2
    2     367          Q367?          3          2
    2     486          Q486?          4          1
    2     276          Q276?          4          1
    2     186          Q186?          4          1
    2     456          Q456?          4          1
    2     156          Q156?          4          1
    2     66          Q066?          4          1
    

    I hope this helps.

    Kind regards.

  • Regulatory issue in Question pool

    Captivate v5.5

    I create a project with 40 questions in a pool one question and 10 random question slides in the project.

    I want to check each question before publication, but it seems you cannt check how each of the question sets of slides, looks and works from within the question pool (or can you?)

    As I have only 10 questions at random in the project, if I run the project to check the questions in this way, I have no way of verifying all 40 questions as I see only 10 of 40.

    How can I check all 40 questions in the question pool?

    Noel

    Put questions issue on the main project pool, then test, then move them back in the Question pool when you're happy they look right.

Maybe you are looking for