Template template parameters don't work

Consider the following code:
#include <iostream>
#include <algorithm>
template <template <typename T, int I> class Container, typename type, int size>
struct ContainerTraits
     typedef typename Container<type, size>::type value_type;
template <typename T, int N>
class MyContainer
     public:
          typedef T type;
          static const int SIZE = N;
          T* begin() { return data; }
          T* end() { return data+N; }
          T &operator[](int index) { return data[index]; }
     private:
          T data[N];
template <template <typename T, int I> class Container, typename type, int size>
void fillZeroContainer(Container<type, size> c)
     typedef ContainerTraits<Container, type, size> CTraits;
     typedef typename CTraits::value_type value_type;
     std::fill(c.begin(), c.end(), value_type(0));
int main()
     MyContainer<float, 4> c;
     fillZeroContainer(c);
     std::cout << c[0] << std::endl;
     // Once the rest of the code compiles, try to uncomment this.
//      float array[int(c[0]) + 2];
//      array[0] = 0;
     return 0;
Compiling yields:
$ g++ -Wall sunCCproblem.cc
$ sunCC sunCCproblem.cc
"sunCCproblem.cc", line 40: Warning: The variable c has not yet been assigned a value.
"sunCCproblem.cc", line 30: Error: Template template-parameter Container<T, I> requires a class template argument.
"sunCCproblem.cc", line 40: Where: While instantiating "fillZeroContainer<MyContainer<float, 4>, float, 4>(MyContainer<float, 4>)".
"sunCCproblem.cc", line 40: Where: Instantiated from non-template code.
"sunCCproblem.cc", line 7: Warning (Anachronism): Using Container as a template without a declaration.
"sunCCproblem.cc", line 31: Where: While specializing "ContainerTraits<MyContainer<float, 4>, float, 4>".
"sunCCproblem.cc", line 31: Where: Instantiated from fillZeroContainer<MyContainer<float, 4>, float, 4>(MyContainer<float, 4>).
"sunCCproblem.cc", line 40: Where: Instantiated from non-template code.
1 Error(s) and 2 Warning(s) detected.
This is Sun Studio 12 (x86) on Linux AMD64 (ubuntu).
I think it is a bug in the compiler. GCC and Intel have no problem compiling this code.
If that is not correct, please let me know what shold be corrected to make the code compile.
Thanks in advance,
F. Beekhof

This problem was filed as CR 6639155, which you can view at
[http://bugs.sun.com]
This bug appears not to have been fixed yet.
If your problem appears to be the same, you can vote for the bug. If not, you can file a new bug report.
If you have a support contract with Sun, you can escalate the bug to get a fix sooner. You could also get the fix before it is officially released in a patch. You can find out about support contracts here:
[http://developers.sun.com/sunstudio/support/index.jsp]

Similar Messages

  • IMPORTANT - numerical parameters don't work

    Hello Adobe.
    I've recently downloaded the Flash CS5 and we wanted to upgrade license, but we experience VERY bad problem.
    Steps:
    1. Create blank FLA AS 3.0 movie.
    2. Add to first frame (stage), for example, TextArea component and name it "xxx".
    3. Set in "Properties" window in "Component Parameters" tab:
    text - "hello world"
    maxChars - 10
    4. Add script to first frame with next code:
    trace(xxx.text);
    trace(xxx["text"]);
    trace(xxx.maxChars);
    trace(xxx["maxChars"]);
    xxx.maxChars = 20;
    trace(xxx["maxChars"]);
    trace(xxx.maxChars);
    5. Test movie. You will get next output:
    hello world
    hello world
    0 - WHY THIS IS NOT 10!!!!!!!!!!!!!!!!!!!!!!!
    0 - WHY THIS IS NOT 10!!!!!!!!!!!!!!!!!!!!!!!
    20
    20
    SO NUMERICAL PARAMETERS DON'T WORK! I not a new to Flash. Have worked more than 5 years with this. Also we've tested such behaviour with latest (downloaded today and yesterday) packages from OFFICIAL www.adobe.com website. They are:
    DESIGN PREMIUM CS5
    FLASH CS5 PRO
    we've tested this behavoiur on different machines, with different operating systems. THE SAME - NO WAY!!!!
    PLEASE FIX THIS ISSUE ASAP! and please reply to this thread with DATE of FUTURE FIX! thanks!

    Hi Nivesh!
    - "Are you using a localized version of Flash?  If so, which locale?"
    - en_US
    - "Do you use an Input Method Editor (IME)?  If so, which IME do you use and with what settings?"
    - No, I don't
    - "Also, are you on MAC or WIN?"
    - Windows XP ( SP3 )
    -"Do you have an older version of Flash on the same machines?  If so, when you save this FLA as a previous version and Test Movie using that version, do you still get 0/null or the correct values?"
    - Yes, I have Flas CS4 as well. I did some tests and here is the result:
    Flash CS5. Drag to stage NumericStepper. Set maximum = 100. Test this movie : maximum = 0. Save this fla as a previous version.
    Flash CS4. Open this fla. Test this movie. maximum = 0. Goto the component inspector and look for the maximum values. Attention! maximum = 100,00 ( not 100, not 100.00, not 0 ) Set maximum = 100.5 and test . Result : maximum = 100.5. Save this fla. ( By the way, if I do "Save and compact" then I see  "Filed to open document" pop up )
    Flas CS5. Open our file. Goto the component parameters and see (Attention!) maximum = 100,5 ( not 100.5 ). Test the movie. Result : (Attention!) maximum = 50. Set maximum = 100.55 and press Enter. (Attention!) this value is replaced by 100,55. Test movie and see maximum = 55.
    So I guess it can help you to detect the problem.

  • Destype and desname parameters don't work properly

    Hi,
    We have a j2ee webApp that uses oracle reports to run reports. One report in particular could be really long and slow (b/c it contains lots of dynamically generated jpegs) depending on what parameters a user chooses. So for this report, we'd like it to run asynchronously, notify the user when it is finished, and store the pdf on that user's local machine. So our report url looks like this:
    http://appServerHostName:portNumber/WebApp/rwservlet?report=someReport.jsp&server=ourServer&destype=LOCALFILE&desname=$TMP/test.pdf&cmdkey=someKey&desformat=pdf&ENGINERESPONSETIMEOUT=50&NOTIFYSUCCESS=[email protected]&NOTIFYFAILURE=[email protected]&background=yes&ourSpecificParameters...
    I got the first 2 things working by doing background=yes&notifysuccess=someEmailAddress
    However, I can't get the report to be downloaded to the user's machine after it's done running. I've tried:
    1) destype=localfile&desname=$TMP/test.pdf
    2) destype=localfile&desname=C:\temp\test.pdf and other ways.
    I also tried to see if I could store the pdf on our UNIX appServer:
    destype=file&desname=$TMP/test.pdf but that didn't work either.
    No matter what I set destype to (localfile, cache, or file), the pdf ALWAYS gets stored on our appServer at $ORACLE_HOME/reports/cache and the name of the pdf gets derived from the value of desname plus some 8-digit random numeric string. So in the 1st case above, the generated pdf was:
    test25136488.pdf
    And in the second case, the C:\temp\ wasn't interpreted as a directory, but as part of the filename so the result was an ugly filename:
    C:\temp\test14257852.pdf
    This is only a problem for us for this 1 report (and possibly others in the future) b/c our other reports typically run pretty fast so the user can just wait for the pdf output to pop up in their web browser.
    Any help on how to get destype and desname working properly (or if you have a better solution for dealing with really time and memory consuming reports) would be much appreciated.
    Thanks.

    Hello,
    The behaviour of DESTYPE=LOCALFILE is not the same for rwclient and the reports servlet :
    http://www.oracle.com/webapps/online-help/reports/10.1.2/topics/htmlhelp_rwbuild_hs/rwrefex/cmdline/common/bld_destype.htm
    It is not possible to save an ouput returned by an URL automatically with a browser.
    If you want something automatic, you have to use a free utility like curl or lynx
    http://curl.haxx.se/
    http://lynx.isc.org/lynx2.8.5/index.html
    or write a small application in java. There are many examples on the web :
    http://www.devdaily.com/java/edu/pj/pj010011/index.shtml
    Learn how to download the contents of a URL
    using Java's URL class
    http://www.javaworld.com/javaworld/javatips/jw-javatip34.html
    Java Tip 34: POSTing via Java
    Learn how to POST data to Web servers in Java
    http://www.exampledepot.com/egs/java.net/Post.html?l=rel
    e135. Sending a POST Request Using a URL
    http://java.sun.com/docs/books/tutorial/networking/urls/readingURL.html
    Reading Directly from a URL
    Regards

  • Report parameters - don't work in portlet mode?

    Hi,
    Portal 3.0.9 on Solaris.
    I've a report created using the wizard, based on two tables.
    On the Customization Form Display Options
    wizard step I've defined a couple of columns I'd like to see on the parameter form / customization screen. When I run the report in traditional (non-portlet) mode, everything works fine. I can pass parameters to it and the records are selected according to the conditions.
    When I run the report in portlet-mode, and click the Customize link, even though the parameter fields appear, they seem not to have any effect. As a result of the Apply button the previously set conditions disappear from the customization screen, when clicking OK, it isn't taken into consideration at all.
    Thanks,
    Peter

    It was a local issue. After having removed and added the component to the page again, everything started to work fine.
    Thanks for all of you who helped me to resolve my issue.
    Peter

  • Report Parameters don't work as portlet

    I have a report from a SQL Query with parameter options in the where clause. When I launch from the customization page on Manage Component, everything works well. I have now exposed the report as a portlet and when I click on customize or edit page and enter the parameter and press Apply or OK, it returns to the portal page and no results are returned. Am I missing something obvious here or is this is bug.
    Thanks
    Jody Clayton

    Hi,
    Which version of portal are you using? Try refreshing the page. It might work.
    Thanks,
    Sharmila

  • Templates with Flash don't work

    Hello,
    I have several pages with templates, but with the new Flash
    player, the swf that are included in the templates don't work, they
    do'nt appear in the webpage.
    Any help please!!

    It's IE-only behaviour as a result of changes Microsoft made
    last
    year to their browser, regarding how Active Content (Flash,
    Quicktime etc)
    is handled, after losing a high profile court case.
    http://blog.deconcept.com/2005/12/15/internet-explorer-eolas-changes-and-the-flash-plugin/
    Background:
    http://en.wikipedia.org/wiki/Eolas
    See also
    http://www.adobe.com/devnet/activecontent/
    If you're running Dreamweaver 8.0.2, the fix is already built
    into DW's
    interface.
    If not, try
    http://blog.deconcept.com/swfobject/
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "marialmar" <[email protected]> wrote in
    message
    news:epltgd$qcm$[email protected]..
    > Hello,
    >
    > I have several pages with templates, but with the new
    Flash player, the
    > swf that are included in the templates don't work, they
    do'nt appear in
    > the webpage.
    > Any help please!!

  • Contribute Acting strange - template parameters with repeating regions

    Basically what I'm trying to achieve is that there is a
    repeating region on a page, and each region is supposed to
    alternate colors. To achieve this, the regions with the colors are
    put into a div which has a background color applied to it. To do
    this, I have created two expressions, one to check to see if it's
    an even numbered region, and if so, to open the div, and another to
    close the div. That looks like this:
    quote:
    <!-- TemplateBeginRepeat name="Article" -->
    @@((_index & 1) ? shade : noshade )@@
    stuff
    @@((_index & 1) ? shadeend : noshade )@@
    <!-- TemplateEndRepeat -->
    At the top, I have three template parameters to go along with
    these:
    quote:
    <!-- TemplateParam name="shade" type="text"
    value="<div>" -->
    <!-- TemplateParam name="shadeend" type="text"
    value="</div>" -->
    <!-- TemplateParam name="noshade" type="text" value=""
    -->
    Which look like this on the actual pages:
    quote:
    <!-- InstanceParam name="shade" type="text"
    value="&lt;div&gt;" -->
    <!-- InstanceParam name="shadeend" type="text"
    value="&lt;/div&gt;" -->
    <!-- InstanceParam name="noshade" type="text" value=""
    -->
    The odd thing is that, when I add an editable region,
    something weird occurs with the template parameters and they end up
    looking like this:
    quote:
    <!-- InstanceParam name="shade" type="text"
    value="&lt;div&gt;" --><!-- InstanceParam
    name="shadeend" type="text" value="&lt;/div&gt;"
    -->->
    <!-- InstanceParam name="noshade" type="text" value=""
    -->
    And that, of course, results in having a nice "->" showing
    up at the top of my page. The repeating region appears to work. It
    changes background colors just like it should, but I have no idea
    why it's throwing in the "->" at the end.

    For grins, try changing this -
    <div id="content1" style="display:none">
    to this (IN THE TEMPLATE FILE) -
    <div id="content@@(_repeat._index)@@''
    style="display:none">
    (that should be a " character after the last @ sign - I had
    to use two '
    characters to keep the code from getting munged in my
    newsreader)
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:g2m3cq$85h$[email protected]..
    >I need to see the template markup around the repeating
    region, please.
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    > ==================
    >
    >
    > "ITLogic" <[email protected]> wrote in
    message
    > news:g2m25n$6se$[email protected]..
    >> Sure. I'm using DW CS3. Here is a copy of the
    repeating regions I'm
    >> trying to
    >> create. Notice each DIV has a sequential ID. I could
    go hand edit this,
    >> but I'm
    >> trying to automate it as much as possible. I am
    selling Contribute as a
    >> means
    >> for clients to edit their own content. Most don't
    know how to spell HTML
    >> much
    >> less know how to use it.
    >>
    >> <div id="content0" style="display:''">
    >>
    >> <!-- ADD TICKER's CONTENT #1
    HERE--------------------->
    >>
    >> <p>Hello</p>
    >>
    >> <!-- END CONTENT #1----------------->
    >>
    >> </div>
    >>
    >> <div id="content1" style="display:none">
    >>
    >> <!-- ADD TICKER's CONTENT #2
    HERE--------------------->
    >>
    >> <p>World</p>
    >>
    >> <!-- END CONTENT #2----------------->
    >>
    >> </div>
    >>
    >

  • Use of template parameters

    I have a standard Dreamweaver template with a photo in the
    heading. I need to change this photo depending which page is being
    shown. It occurred to me that a template parameter should do the
    trick. I can find no help in the CS3 documentation, and the online
    help no longer supports CS3 users. MX help does give a vague idea,
    but nothing remotely like an example.
    Can anyone tell me what I need to do to set this up

    Template parameters seem like they would be a really nice way
    to do thing.
    They are a mixed blessing, though. The easiest way would be
    with server
    scripting, but if you want to try template parameters, do
    this -
    1. Open the Template page
    2. Select the image
    3. Use MODIFY | Templates > Make Attribute Editable
    4. You will want to make the src attribute of the image tag
    editable with a
    URL parameter in the ensuing dialog
    5. You can browse to and select an image to use for the
    default value of
    this image
    After clicking OK, you will find the following changes on
    your Template
    page -
    Above the </head> tag you will see -
    <!-- TemplateParam name="whatever" type="URL"
    value="pathtoimage" -->
    and in the <img> tag you will see -
    <img src="@@(whatever)@@"....
    The template engine will insert the value of the "whatever"
    parameter into
    the src attribute of the <img> tag when a child page is
    spawned (or
    updated). On that child page, if you want to CHANGE the
    value, use MODIFY |
    Template Properties, and select "whatever", whereupon you
    will get a dialog
    to browse to and select a NEW image to use for this
    parameter. This is the
    ONLY way to change that parameter - if you try to edit it
    directly it will
    not work.
    Try it. You'll see what I mean.
    And by the way, you might find some useful info here -
    http://www.dmx-templates.com.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "whatalotofrubbish" <[email protected]>
    wrote in message
    news:[email protected]...
    >I have a standard Dreamweaver template with a photo in
    the heading. I need
    >to
    > change this photo depending which page is being shown.
    It occurred to me
    > that a
    > template parameter should do the trick. I can find no
    help in the CS3
    > documentation, and the online help no longer supports
    CS3 users. MX help
    > does
    > give a vague idea, but nothing remotely like an example.
    >
    > Can anyone tell me what I need to do to set this up
    >

  • Dreamweaver CC features such as Template Parameters

    I have Dreamweaver CS6 and have not ventured onto the cloud yet. While looking up a question regarding syntax for Dreamweaver Template Parmeters, I noticed most of the documentation starts with the clause "The user interface has been simplified in Dreamweaver CC and later. As a result, you may not find some of the options described in this article in Dreamweaver CC and later." I found this expression even when I searched Creative Cloud specific support, e.g. see Dreamweaver Help | Using optional regions in templates. The link A Look at the Modernized Dreamweaver CC : Adobe Dreamweaver Team Blog is over a year old and no help.
    How in the world do you find what features actually exist in Dreamweaver CC without buying it? Are Template Parameters still available? Has anyone successfully imported a Dreamweaver CS6 site that has Template Parameters to Dreamweaver CC? I found a PDF for Dreamweaver CC, (http://helpx.adobe.com/pdf/dreamweaver_reference.pdf) which seems to indicate Template Parameters are still supported, but I don't have a lot of faith in it based on previous experiences with Adobe documentation.
    Thanks in advance.

    Are Template Parameters still available?
    Yes. Why do you want to use them? There are usually better ways to do things... Are you also using nested templates, by chance?
    Has anyone successfully imported a Dreamweaver CS6 site that has Template Parameters to Dreamweaver CC?
    There is no "import" to it. You just define a site in CC that points into the CS6 site's local root folder and you're ready to go.

  • Template parameters showing reverting to old data

    Hi I added meta-data using template parameters. For some
    reason DW reverted back to showing old meta-data on the page. When
    I checked the template parameters fields it showed the latest
    meta-data. it just had not been written to the page.
    Is this a known bug?

    Is that meta data in an editable region?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Steve84" <[email protected]> wrote in
    message
    news:e7efir$7q5$[email protected]..
    > Hi I added meta-data using template parameters. For some
    reason DW
    > reverted
    > back to showing old meta-data on the page. When I
    checked the template
    > parameters fields it showed the latest meta-data. it
    just had not been
    > written
    > to the page.
    >
    > Is this a known bug?
    >

  • Template editable region not working

    I am using DW2004.  I have a template with a number of editable regions.  One region is causing me problems.  When I apply the template to a page, the BeginEditable and EndEditable tags become editable themselves.  Trying to save the page causes errors about saving changes to regions that cannot be edited.
    The template has this editable region:
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!--MainText-->
    <div id="MainText">
          <div align="left">
    <!-- TemplateBeginEditable name="MainText" -->
            Main Text
    <!-- TemplateEndEditable -->
        </div><!-- Align text left -->
    </div><!-- MainText-->
    MainText is a CSS style
    #MainText{float:right; width:565px; margin: 0 0 0 0; background-color:#ffffff;}
    In the document after the template is applied, I get the following.
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!--MainText-->
    <div id="MainText">
      <div align="left">
    <!-- #BeginEditable "MainText" -->
      <table width="329" border="0" cellpadding="10">
    Problem is the <!-- #BeginEditable "MainText" --> can be changed.  If I do a return after the "-->" the tag is no longer able to be changed.  Same with the end editable tag.  As soon as I go back to Design view, the code changes to become editable again.
    At the moment I have around 150 screwed up pages after running a template update.  Can anyone help?

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html><!-- #BeginTemplate "/Templates/tem_gen_pp.dwt" --><!-- DW6 -->
    <head>
    <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Title -->     
    <!-- #BeginEditable "doctitle" -->
    <title>Project interviewing techniques white paper</title>
    <!-- #EndEditable -->
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Meta Info -->     
    <!-- #BeginEditable "MetaInfo" -->
    <meta name="description" content="White Paper on Project Documentation">
    <meta name="keywords" content=" project perfect, project management, project manager, project, project consulting, project training, Sydney, Australia, project management white paper, ">
    <meta name="robots" content="index,follow">
    <!-- #EndEditable -->
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- External Files -->
    <link href="css/standard.css" rel="stylesheet" type="text/css">
    <SCRIPT LANGUAGE="JavaScript" SRC="css/standard_javascript.js"></SCRIPT>
    </head>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Other Scripts -->
    <!-- #BeginEditable "OtherScripts" -->
    <!-- #EndEditable -->
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
        <!-- #BeginEditable "Head" -->
    <!-- #EndEditable -->
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <body>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Wrapper to centre the page -->
    <div id="wrapper">
    <div id="center">
    <table width=800px height="84" border="0" cellpadding="5" cellspacing="0" bgcolor="#3333FF">
        <tr>
          <td height="84" width="8%"> </td>
          <td width="3%" bgcolor="#000099"> </td>
          <td width="9%" bgcolor="#FFFFFF"><img src="images/logo/PP_P_only.jpg" width="84" height="84"></td>
          <td width="2%"></td>
          <td width="60%" height="84" valign="top"><br>       
              <span class="style12 ">PROJECT </span>
            <span class="style12 "><strong>PERFECT</strong></span><BR>       
            <span class="style13">                 Project Management Software</span><br>                                <span class="style14">                                                       Specialists  in Project Infrastructure</span>
          </td>
          <!-- Image top right -->         
          <td height="84" width="18%"> 
            <!-- #BeginEditable "Title" -->
            <div align="center"><a name="top"></a><img src="images/titles/title_free_info.gif" width="115" height="80"></div>
          <!-- #EndEditable -->     
            </td>
        </tr>
      </table>
    </div><!-- Center -->
    <div id="Navigation">
    <fieldset> <legend><b>Menu</b> </legend>
    <table width="195" border="0" cellpadding="0" cellspacing="0" bordercolor="#000000" bgcolor="#FFFFFF" >
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Home Page -->
        <tr>
          <td>
            <a href="index.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image17','','images/miscellaneous/homeon.jpg',1)"><img src="images/miscellaneous/homeoff.jpg" alt="Project Management Software Home Page" name="Image17" width="140" height="35" border="0"></a> </td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Subscribe -->     
        <tr>
          <td  bgcolor="#FFFF00"><div align="center" class="style15"><strong>Sign up for our newsletter. Hear about new Project Management White Papers.<br>
                <br>
            When you subscribe you can download a free eBook<br>
            <br>
    &quot;The Project Managers Guide to Creating and Managing Requirements&quot;       
                </strong></div>
            <p align="center"><a href="http://projectperfect.com.au/mailman/listinfo/subscribers_projectperfect.com.au">Click Here to Join </a>       
            <p>
            </td>
        </tr>
        <tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- RSS -->     
    <td valign="top"> 
          <h5 align="center" class="style4"><a href="rss/rss_news.xml" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image15','','images/miscellaneous/xml.gif',1)"><img src="images/miscellaneous/rss.gif" alt="RSS News Feed" name="Image15" width="36" height="14" border="0"></a></h5></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!--PA Home Page -->
        <tr>
          <td valign="top"><a href="pa.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('project-management-software','','images/miscellaneous/pmsoftwa reon.jpg',1)"><img src="images/miscellaneous/pmsoftwareoff.jpg" alt="Project Management Software" name="project-management-software" width="140" height="35" border="0"></a></td>
        </tr>
        <tr>
           <td width=165px ><h5>              <a href="pa_download_enq.htm">&gt;Download 30 day trial </a><br>
                <a href="pa.htm">&gt;General Info</a><br>
                <a href="pa_cost_justification.htm">&gt;Cost Justification</a> <br>
                <a href="pa_faq_buyers.htm">&gt;FAQ for PA Buyers</a><br>
                <a href="pa_pricing.htm">&gt;Pricing</a><br>
                <a href="http://www.projectperfect.com.au/catalog/index.php/cPath/21">&gt;Buy Now</a></h5></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Method H Home Page -->
        <tr>
          <td valign="top"><a href="method_h.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('business-analysis-software','','images/miscellaneous/basoftwar eon.jpg',1)"><img src="images/miscellaneous/basoftwareoff.jpg" alt="Business Analysis Software" name="business-analysis-software" width="140" height="35" border="0"></a></td>
        </tr>
        <tr>
          <td width=165px><h5>       
              <a href="method_h.htm">&gt;&quot;Method H&quot; General Info</a><br>
            <a href="http://www.projectperfect.com.au/catalog/index.php/cPath/22">&gt;Pricing</a><br>
            <a href="http://www.projectperfect.com.au/catalog/index.php/cPath/22">&gt;Buy Now</a></h5></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Free Stuff -->    
        <tr>
          <td valign="top"><a href="services.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('project-management-white-papers','','images/miscellaneous/whit epaperon.jpg',1)"><img src="images/miscellaneous/whitepaperoff.jpg" alt="Project Management white papers, links and free stuff" name="project-management-white-papers" width="140" height="35" border="0"></a></td>
        </tr>
        <tr>
          <td width=165px><h5>       
                  <a href="wp_index.php">&gt;White Paper Index</a><br>
                <a href="student.htm">>PM for Kids </a><br>
                <a href="RM3/index.php">&gt;Resources</a></h5>
          </td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Consulting -->     
        <tr>
          <td valign="top"><a href="consult_train.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('consulting','','images/miscellaneous/serviceson.jpg',1)"><img src="images/miscellaneous/servicesoff.jpg" alt="Project Infrastructure Consulting Services" name="PM Services" width="140" height="35" border="0"></a></td>
        </tr>
        <tr>
          <td width=165px><h5>       
                  <a href="consult_train.htm">&gt;Consulting</a><br>
                <a href="microsoft-access-development.htm">&gt;Microsoft Access Development</a><br>
                <a href="assessment.htm">&gt;PM Assessment</a></h5></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Blog -->     
        <tr bgcolor="#FFFFFF">
          <td valign="top"><a href="blog/index.php" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image16','','images/miscellaneous/blogon.jpg',1)"><img src="images/miscellaneous/blogoff.jpg" alt="Project Management Blog" name="Image16" width="140" height="35" border="0"></a></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Contact -->     
        <tr>
          <td valign="top">  
          <a href="contact_index.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image18','','images/miscellaneous/contactuson.jpg',1)"><img src="images/miscellaneous/contactusoff.jpg" alt="Contact Project Perfect" name="Image18" width="140" height="35" border="0"></a></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Search --> 
        <tr>
          <td valign="top">  
          <a href="search.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image19','','images/miscellaneous/searchon.jpg',1)"><img src="images/miscellaneous/searchoff.jpg" alt="Search Project Perfect site" name="Image19" width="140" height="35" border="0"></a></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Contents --> 
        <tr>
          <td height="2" valign="top">  
          <a href="contents.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('contents','','images/miscellaneous/contentson.jpg',1)"><img src="images/miscellaneous/contentsoff.jpg" alt="Contents of Project Perfect web site" name="contents" width="140" height="35" border="0"></a></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Spread the word -->
          <tr>
            <td><a href="cgi-bin/birdcast.cgi" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('tell-a-friend','','images/miscellaneous/tellafriendon.jpg',1)" ><img src="images/miscellaneous/tellafriendoff.jpg" alt="Tell a friend about project perfect" name="tell-a-friend" width="140" height="35" border="0"></a></td>
          </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
        <!-- Generic Ad for PA -->
          <tr>
            <td><img src="images/miscellaneous/Ver4.jpg" width="200" height="250"></td>
          </tr>
    <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- PM Opininons Ad -->   
         <tr>
          <td height="2" valign="top" bgcolor="#FFFFCC"><fieldset>
            <p align="center"><a href=http://www.project-management-opinions.com/index.php?option=com_mtree&task=viewlink&link_i d=653 ><img src=
                      "http://www.project-management-opinions.com/rate_us_14.jpg" alt="Rate us at PM Opinions!" title="Rate us at PM Opinions!" vspace="5" width="88" border="0" height=                  "65" hspace="5"></a> </p>
          </fieldset></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Method 123 -->
        <tr>
          <td height="2" valign="top"><a href="http://www.mpmm.com/project-management-software-products.php?AID=$AffiliateIDN$"><a href=                                "http://www.mpmm.com/index.php?AID=070754 "><img src="http://www.mpmm.com/images/banners/logo-160x50.gif" width="160" height="50" border="0" alt=                                "Project Management Methodology, Project Management Process, Project Management Methodologies"></a></td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- Adspace-->
        <tr>
          <td height="2" >
        <!-- #BeginEditable "adspace" -->
         <p>
        <!-- #EndEditable -->
          </td>
        </tr>
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!-- RSS Widget -->   
        <tr>
          <td valign="top"><script type="text/javascript" src="http://widgetserver.com/syndication/subscriber/InsertPanel.js?panelId=9bd60456-9247-49e5-9 463-5da9e1871c2f"></script>                           <noscript>Get great free widgets at <a href="http://www.widgetbox.com">Widgetbox</a>!</noscript></td>
        </tr>
    <!-- Blank Cell -->   
        <tr>
          <td valign="top"> </td>
        </tr>
      </table>   
    </fieldset>
    </div><!-- Navigation -->
        <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++ -->
    <!--MainText-->
    <div id="MainText">
          <div align="left">
    <!-- #BeginEditable "MainText" -->
      <table width="329" border="0" cellpadding="10">
        <tr>
          <td width="305" height="27"><font size="-2"><a href="index.htm">Home</a></font><font size="-2">- </font><font size="-2"><a href="wp_index.php">White Paper Index</a></font></td>
          </tr>
      </table>
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td width="75%"><h1 align="center">Project Interviewing Techniques </h1>
          </td>
          <td width="25%"><div align="center">First published March 08 <br>
          </td>
        </tr>
        <tr>
          <td width="75%"><div align="center">
              <h4>Neville Turbit - Project Perfec</h4>
          </div></td>
          <td width="25%"><div align="center"><b>Rating</b></div></td>
        </tr>
        <tr>
          <td width="75%"><div align="center"><font size="-1"><a href="downloads/Info/info-project-interviewing-techniques.pdf">(Download pdf version)</a></font></div></td>
          <td width="25%"><div align="center">
            <?php
    $topic="interv";
    $display="stars";
    require "/home/projectp/public_html/b3r/b3_rating/b3_rating.php";
    ?>
          </div></td>
        </tr>
      </table>
      <h2> Overview</h2>
      <p> <span class="style15"><a href="pa.htm"><img src="images/pa_general/pa_advt_2.gif" alt="Get Organised with Project Administirator Software" width="250" height="150" border="0" align="right"></a></span>As a Project Manager, it is inevitable you will have to carry out project interviews. They might range from interviewing a candidate for a project team role, to interviewing a Sponsor about their expectations on a project. Rarely are people given training on interviews. It is just expected that like breathing, it comes naturally. </p>
      <p>Nothing could be further from the truth. Interviewing is a technique, and as such it needs to be taught. Some people are naturals and some struggle. If you doubt there is skill involved, turn on your TV and watch a professional interviewer on a current affairs type program. In this article, we attempt to cover a few of the basics that will make you a better interviewer.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>My Experiences</h2>
      <p>Many years ago I took over a role as Marketing Manager in a financial services organisation. The week I arrived, it became evident that the company had a big hole in their investment portfolio and investors were about to loose lots of money. If I had known before, I might not have taken the job. I was to suddenly have to face the media and break the news. I had never thought much about being interviewed in the past but suddenly it became a significant concern. </p>
      <p>The company called in a specialist who would prepare me over a number of days to handle interviews. In our first mock interview he had me blabbering nonsense in about a minute. We then went back to basics and he spent a week teaching me about interviewing techniques. By the end of the week I was confident to face the media and get my message across in a way that did not cause a run on the institution, and gave investors confidence that if they stayed with the organisation, within a year their losses would be recouped. In fact the majority did stay, and they did get their money back.</p>
      <p>While I was on the other side of the fence (the interviewee), I also had to learn more about interviewing than I ever expected there was to know. Here is a simple thing I was taught in the first hour or so. You can see it on TV every night. Invade personal space. </p>
      <p>A reporter on TV who is standing beside a person being interviewed has to stand close so they both fit on the screen. Typically this involves being within less than half a metre (about a foot) from the person. You can use this to your advantage with someone who has not had the benefit of media training to make them feel uncomfortable. </p>
      <p>Try it on a colleague. Ask them an awkward question while standing up close to them. You can see them squirm. Ask the same question across the room, and they may show mild discomfort but nothing like the level when you are up close to them. Also see what happens when the reporter is trying to make the person comfortable. They move further away. In fact they may want to make them relax by putting some space between them before getting up close and personal for the killer questions.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Open and Closed Interviews</h2>
      <p>Interviews can be either &ldquo;Open&rdquo; or &ldquo;Closed&rdquo;. Usually interviews are a mixture of both. We will cover how each type of interview is carried out, and the pros and cons of &ldquo;Open&rdquo; versus &ldquo;Closed&rdquo;. Managing an Interview around &ldquo;Open&rdquo; and &ldquo;Closed&rdquo; questions is a key skill of the interviewer.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Definition - Open and Closed Questions</h2>
      <p>An open interview is one where questions are not specific. They are open ended and designed to allow the person to cover a broad range of topics. As an example</p>
      <p>&ldquo;Tell me about sales?&rdquo; is an open question.</p>
      <p>&ldquo;What were sales for your territory last month?&rdquo; is a closed question.</p>
      <p>The first question may take half an hour to answer. The second will probably take less than a minute.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Why use Open Questions</h2>
      <p>It all depends on what you already know and what you need to know. If you are absolutely confident you are fully briefed on a topic, and there is only one fact you need to determine, a closed question is preferable. On the other hand, if your knowledge is sketchy, and you are not even sure what questions to ask, an open question is the way to go.</p>
      <p>If your washing machine is broken and the repair man tells you the water pump is not working, you are unlikely to ask him is it the shaft is worn, impeller is split or motor burnt out? That would be a closed question and we probably don&rsquo;t have the knowledge to ask it anyway (Incidentally I did make that up. I have no idea what else could break). We would ask an open question such as asking him to explain further. At that point he might explain it is the impeller broken because some coins got through the filter and jammed in the pump. You can then follow up with a more closed question about what that means to the repair and your wallet.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Essence of Open Questions</h2>
      <p>The essence of open interview technique is - </p>
      <ul>
        <li>Question move from the general to the specific and back to the general</li>
        <li>Much is deduced from listening and probing. A simple comment may indicate an important area to be explored</li>
        <li>There are often unforeseen topics raised. Some are relevant and some may not be relevant. You need to filter and quickly dismiss the ones that are not relevant</li>
      </ul>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Tips for Open Questions</h2>
      <p>Here are a number of tips for asking open questions</p>
      <ul>
        <li>Think if the person can answer &ldquo;yes&rdquo; or &ldquo;no&rdquo;. If the answer is they can, it is not an open question</li>
      </ul>
      <ul>
        <li>If the person provides a wandering answer, or a &lsquo;brain dump&rsquo; offer a summary of the question - let the interviewees confirm its accuracy. <br>
    &ldquo;If I understand what you are saying&hellip;&rdquo; </li>
        <li>Allow ample opportunity for &lsquo;and also&rsquo; issues to be raised at the end of the interview or afterwards. People answering open questions tend to remember facts as they go along.</li>
      </ul>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Closed Interviews</h2>
      <p>In using the opposite interview technique, closed interviews, you might ask </p>
      <p>&ldquo;For reporting of sales, I suppose the current breakdown by nation, state and category is OK, isn&rsquo;t it?&rdquo; </p>
      <p>The question presumes and prompts a yes/no answer. It also offers a quick and easy interview, requiring minimum reflection and analysis.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font> </p>
      <h2>Why Closed Questions</h2>
      <p>As mentioned, closed interviews are useful when you are trying to find out one fact. You know precisely the question to ask and know the possible answers. They are also useful in clarifying facts in an open interview. As people cover topics broadly, you might grab one point and want to understand it more clearly. You want to drill down on a particular aspect. </p>
      <p>For example, you asked a question on how effective current sales reports are. The person is giving you a full briefing on all the reports, and the implications. They mention the sales summary report. You might ask a closed question about who receives the report and why they are provided with a copy.</p>
      <p>Closed questions allow you to drill down on a piece of information. It is more likely that closed questions will be more spontaneous than open questions. As the open question draws out the big picture, you want to closely examine bits of the picture with closed questions.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>On the Spot</h2>
      <p>Closed questions can put people on the spot. They can almost sound like they were fired by the prosecutor in a trial. </p>
      <p>&ldquo;When did you first know the project was behind schedule?&rdquo;</p>
      <p>&ldquo;How many resources can you give up to the project?&rdquo;</p>
      <p>The result is the same as in a trial. The person becomes defensive. They try to find a way out of any admission or commitment. A better approach is to use an open question that allows people room to manoeuvre or qualify their answer. You can tighten up the response with closed questions based around the answer.</p>
      <p>&ldquo;How did you first come to suspect the project may not be on track?&rdquo;</p>
      <p>&ldquo;If we need people to assist, how would you be able to help?&rdquo;</p>
      <p>In both cases, an open ended question allows the person to answer without feeling threatened or ambushed. You avoid the instinctive &ldquo;flight or fight&rdquo;.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Information Gathering</h2>
      <p>An interview is an information gathering exercise. That means that you, as the interviewer, are there to direct and listen. You know your own views. The interviewee does not necessarily need to know those views. While you are talking, you are not listening and the purpose of an interview is to find out information from the interviewee. Your role is to keep the ball rolling down the road.</p>
      <p>There is an old saying that when carrying out an interview, you should &ldquo;speak with your ears&rdquo;. In other words, if you say something it should only be because you want to hear the answer.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Making people comfortable</h2>
      <p>A technique used by television interviews is to ask a number of easy questions to relax the person before hitting them with the big one. </p>
      <p>&ldquo;So your name is Jim Brown? Lived here long Jim? Married with 2 kids I hear?&rdquo;</p>
      <p>Then</p>
      <p>&ldquo;So tell us about killing your mother in law with a chain saw.&rdquo;</p>
      <p>Use the relaxing questions to start your interview. If the person is at all apprehensive at the start of an interview, a few questions to loosen them up will help later in the discussion. </p>
      <p>Imaging you are being interviewed and you are feeling a little nervous or unsure about the area under discussion. You might not even know exactly why you are being interviewed. If the person starts by explaining the purpose of the interview then asks a few easily answered questions, you start to relax and will become more likely to assist the person.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Follow the dots</h2>
      <p>An agenda is a great tool, in most circumstances. If you are having a regular review meeting and have a range of regular topics to cover, an agenda is a great roadmap. Point 1; point2; point 3.</p>
      <p>If on the other hand it is an open discussion, an agenda may be an impediment. The interviewee may want to talk about point 1 and 7 because he sees them as related. The discussion is roaming around the topic, and it might not fit into neat compartments. </p>
      <p>In this case use the agenda as a checklist. It does not have to be strictly followed. It can be a list of topics you want to have covered by the end of the interview. As the interview draws to a close, go over the agenda and see if any points still need discussion. It takes some skill to treat an agenda as a set of boundaries rather than a roadmap. If you can develop those skills, the results can be excellent.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Summarising</h2>
      <p>Sometimes people lose the thread of what they are saying. Their mind is wandering down a path and they forget where they have been or are going. It is useful to sometimes stop and summarise what you think has been said. It is double purposed. Firstly it confirms what has been said, and secondly it re-focuses the person.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Active Listening</h2>
      <p>It is a fact that most people want to be listened to. It is important to feel that the person is mentally still with us as we speak. The occasional nod of the head or confirmation of a point helps people feel their comments are valued. Be sure to respond to people or they will stop contributing and want to terminate the interview. Writing things down will assist in convincing people their input is of value.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Answer the Question</h2>
      <p>Watch a politician answer a question, and you will often find they don&rsquo;t answer the question. Techniques include:</p>
      <ul>
        <li>&ldquo;That is a good point but before I answer that let me say&hellip;&rdquo; and of course they never get back to the question</li>
        <li>&ldquo;I want to make three points&hellip;&rdquo; none of which are relevant to the question</li>
        <li>&ldquo;Why would you ask me that?&rdquo; In other words, let&rsquo;s argue about whether you should ask the question rather than try and answer it.</li>
      </ul>
      <p>If you cannot get an answer to a question, try to understand why the person is uncomfortable to provide an answer. It may just be that they forgot the original question and went off on a different track. On the other hand they may well have something they don&rsquo;t want to tell you. Sometimes understanding the reason for not answering in fact answers the question.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Body Language</h2>
      <p>Very few people can hide body language. You do not have to be an expert to read it as we all do to some extent. The eyes looking around the room for an answer; folded arms in a defensive position; legs crossed towards you for trust and away for mistrust. There are many articles on body language and a bit of research can help you read what is not being said.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Independent Interviewer</h2>
      <p>As a consultant I have been amazed some times at what people have told me. Even though it might not be attributed to them in a report, people often say things to an outsider they would never say to their peers.</p>
      <p>I remember one project review where the project manager was scathing in his remarks about the steering committee. He had never expressed his thoughts to them but told me. On investigation I had to agree with his comments and put it in the report. One of the steering committee members came up to me afterwards and asked me why the project manager never expressed his concerns to the committee?</p>
      <p> Sometimes it is useful to use an outside party for interviews as they are usually seen as coming to the situation without a bias. If not independent, they are usually viewed as not coming to support any entrenched point of view. In fact, from a consultant credibility point of view, it does you no good to go into an organisation to reinforce a particular person&rsquo;s case if you do not believe it to be valid. I usually tell people in that situation that I do investigation, not lobbying. </p>
      <p>Several years ago I did a PIR for a company and managed to upset the executive management team by pointing out their lack of support and the failures that followed. Although I had done considerable work for the organisation I was not invited back to do any more work for a couple of years. When I was invited back, I found most of the people I had been critical of had moved on. I was invited back because the person who now wanted work done was impressed with my fairness and impartiality from years before. He had remembered me and now needed the same sort of review done without someone pushing a particular point of view. What goes around comes around.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <h2>Conclusion</h2>
      <p><font color="#006666" face="trebuchet ms, arial, helvetica"><a href="pa.htm"><img src="images/pa_general/pa_advert.gif" alt="project management software" width="250" height="100" border="0" align="left"></a></font>It is surprising how many people think an interview is just a fireside chat. The dynamics are far more complex. Think about your own interviewing technique and use some of these ideas to improve it. It is particularly important for your career path as you sometimes have to interview senior managers. The interview is often the only real exposure you have for them to form an opinion of you. If a promotion comes up and you have just bungled your way through a poor interview with a senior manager, your chances of getting a promotion are low. On the other hand if you have managed to direct the interview in a manner that impressed the manager, your chances are enhanced.</p>
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
      <p> 
      <table width="100%" border="1" cellspacing="0" cellpadding="0">
        <tr>
          <td width="70%"><div align="center">
              <p><b>To date,
                    <?php
    $topic="interv";
    $display="total";
    require "/home/projectp/public_html/b3r/b3_rating/b3_rating.php";
    ?>
              people have rated this article. The average rating is
              <?php
    $topic="interv";
    $display="average";
    require "/home/projectp/public_html/b3r/b3_rating/b3_rating.php";
    ?>
              - Add your rating. Just select a rating and click the button. No other information required. </b></p>
              <p><b>Only one rating per person is allowed.</b></p>
          </div></td>
          <td width="30%"><center>
              <p> </p>
            </center>
              <center>
                <?php
    $topic="interv";
    $display="preset1";
    $myimages="no";
    $font="verdana";
    $fontsize="2";
    $category="";
    $autoredirect="yes";
    $myurl="http://yourdomain.com/different.html";
    $checkuser="yes";
    require "/home/projectp/public_html/b3r/b3_rating/b3_rating.php";
    ?>
            </center></td>
        </tr>
      </table>
      <p align="center">
                <a href="#top">Return to the top</a>
          <p align="center">
                <SCRIPT LANGUAGE="JavaScript">
                MM_LastModDate()
                </script> 
      <p align="center"><font face="trebuchet ms, arial, helvetica" color="#006666"><img src="images/miscellaneous/dividing_line.gif" width="300" height="10"></font></p>
    </div>
    <!-- #EndEditable -->
        </div><!-- Align text left -->
    </div><!-- MainText-->
    </div>
    <!-- Wrapper -->
    </body>
    <!-- #EndTemplate --></html>

  • Using Office 2013 group policy template to define Trusted Locations and Template Locations doesn't work

    User Configuration/Policies/Administrative Templates
    - Using Office 2013 group policy template to define Trusted Locations and Template Locations doesn't work
    Microsoft Word 2013/Word Options/Security/Trust Center/Trusted Locations
    - Allow Trusted Locations on the network: 
    Enabled 
    - Trusted Location #1: 
    Enabled 
    Path:  //server/sharedfoldername   [Edit:  Path:
    \\server\sharedfoldername]
    Date: June 10, 2013
    Description: Trusted Location
    Allow sub folders: Enabled
    The policy appears to apply to the client correctly by adding the following registry key and values:
    HKEY_CURRENT_USER\Software\Policies\Microsoft\office\15.0\word\security\trusted locations\location1
    allowsubfolders: 1
    date: June 10, 2013
    Description: Trusted Location
    Path:  //server/sharedfoldername  [Edit: Path: 
    \\server\sharedfoldername]
    However, when you open Word Options/Trust Centre/Trust Centre Settings…/Trusted Locations
    There are no trusted locations listed under ‘Policy Locations’
    I have tried setting similar settings for setting the Shared Templates folder location and just like the trusted locations policy, the registry keys are created properly in HKEY_CURRENT_USER\Software\Policies however word doesn’t
    seem to recognize these either.
    This used to work flawlessly using the administrative templates for Word 2007 and 2010. Has anyone been able to get these policies to apply successfully, or know why office doesn’t recognize these settings from the Policies registry
    Key?

    This would have been an easy solution to the issue.  Unfortunately it isn't the problem.  This question was originally posted on another Microsoft site and
    was transferred here and when it was transferred the path's changed from the original post: 
    \\server\sharedfodlername to //server/sharedfoldername.  (I will edit the question to show up as it did in the original post) Not sure how that happened.  This
    is still an issue that I haven't been able to get working correctly.
    As it turns out the 'New from Template' interface Word 2013 has developed is very bulky with large thumbnails and is not very customizable nor practical for an office
    that has a large number of templates.   Because I am unsatisfied with the display and performance of the 'New' template chooser I sought after a solution to change the way word creates a document from a template in another thread: 
    http://answers.microsoft.com/en-us/office/forum/office_2013_release-word/how-can-you-change-the-display-of-templates-in/d49194b9-a6b4-4768-8502-7d7b50e9dd65 working through this issue with Jay we were able to develop
    some VB script with handles a very large number of templates in a list view and it works much faster than the built-in Word interface.  The above thread is how I've worked around trying to define a shared template location and I am quite happy with it.

  • Encore CS4 (version 4.0.0.258) will not finish burning to blu-ray disc when using a menu template.  DVD burning works fine.  Anyone know the problem with blu-ray?  HELP!

    Encore CS4 (version 4.0.0.258) will not finish burning to blu-ray disc when using a menu template.   DVD burning works fine with menu template.  Anyone know the problem with blu-ray?  HELP!

    For CS4 you must update the Roxio component, especially with Win8
    http://forums.adobe.com/thread/1309029 http://docs.roxio.com/patches/pxengine4_18_16a.zip
    http://corel.force.com/roxio/articles/en_US/Master_Article/000012592-PX-Engine-Description -and-Download

  • Templates as template parameters

    In the Sun Workshop(TM) Compilers C++ 6 Readme there is a list of Standards which are not implemeted ,among them:
    Template template parameters (templates as template parameters).
    Is there any workaround to it instead o changing all my source code?

    when will templates as template parameters be < supported?
    Template template parameters are on the list of things we want to do for the release after Sun One Studio 7, Compiler Collection(formerly called Forete Developer 7). We can't promise we will be able to implement it in time for that release, but we will try. The number one priority for Forte Developer 7 is compile-time performance.
    This was asked before: <http://forum.sun.com/thread.jsp?forum=5&thread=7350>
    - Rose

  • Template Template Parameters, Forte 6U2, Forte 7EA

    Forte 6U2 does not support template template parameters. I had hoped to see support added in Forte 7 early access, but they are not supported in that release either.
    While some may argue that template template parameters are the height of C++ esoterica, very sophisticated and usefull libraries like Loki (by Alexandrescu) require them. There are compilers on the market that are capable of handling this construct, and Lippman, who is now at Microsoft, has commited to supporting Loki, Blitz and Boost in future releases of the compiler (see http://www.codeproject.com/interview/stanlippman14nov2001.asp?print=true ). This suggests that microsoft will soon support template template parameters as well.
    I would be interested to see if other people who read this forum care about this issue at all, and if so, please respond so we can try to get Sun to do something about this...

    I absolutely agree that Sun must keep pace with [if not lead] industry and provide the full suite of C++ language features.
    I, too, have spent many hours with Forte C++ 5.3 trying to employ the techniques described in Alexandrescu's "Modern C++ Design" and implemented in his "loki" library. Even recursive template specializations seem not to be supported, though I must do further investigation to confirm.
    And it would be nice if the compiler recognized what I was trying to do and issued a "feature XYZ not yet supported" message.
    ... Dave

Maybe you are looking for

  • How to restrict/allow users to access oracle forms/reports through SSO

    Dear All, I am new to oracle application server and need to know how can we manage the access rights for oracle forms using OID/SSO.

  • Is the standard delivery cost for calendar in UK really £7.19?

    Is the standard delivery cost for calendar in UK really £7.19? I want two different calendars, already designed, and think £14.38 is a ridiculous amount to pay for postage......help please!

  • Pb00 and pbxx

    HI, if the condition PB00 copied from inforecord system , should not allow  PBXX to input manually . pls can anybody tell me the configuration needed. thanks laxman

  • Menu Bar disappears after quitting applications

    I just got my 2012 Mac Mini 2.3 i7 + Fusion Drive. Installed a few standard applications (Office, VLC, Chrome, Handbrake, Transmission, AppCleaner). Everytime I quit an application my menu bar disappears as well. A simple key press or click on the sc

  • UDT dynamic custom type mappings

    I'm using Oracle Data Provider for .NET Release (11.1.0.6.20) in combination with .NET Framework (2.0.50727). As there are user defined types in the database schema, ODP.NET was chosen to connect to the Oracle database. The DB server contains databas