Newland Tours

I'm reading Dreamweaver 8 with ASP, ColdFusion, and PHP:
Training from the Source
Lesson 11: Building Search Interfaces
I'm having trouble with diplaying multiple recordsets. I did
everything that the book told me to do, but it just doesn't work. I
just got done with the tours.asp and it works fine. Now I'm working
on the index.asp. rs_journal comes up fine, but when I add the
rs_worldregions, the page won't come up. I even uploaded the
finished sample of index.asp that came with the book and that
didn't work.
Has anyone read this book and had the same troubles?
The only difference I used is that I didn't use a DSN. I used
a custom connection string.
I went to the APPLICATION panel. Then to the DATABASES tab.
Then to the + CUSTOM CONNECTION STRING. On the Custom Connection
String box I entered:
Connection name: conn_newland
Connection string: "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=D:\mywebsite\newland\database\newland_tours.mdb;"
Dreamweaver should connect: Using driver on testing server
I'm able to connect to the database. But the only problem is
that I can't display multiple recordsets.

Can you post the code from your page? Or send it and I'll be
glad to try it
after my morning meeting (back in about 2-1/2 hours).
Nancy Gill
Adobe Community Expert
Author: Dreamweaver 8 e-book for the DMX Zone
Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
2003)
Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
A Beginner''s
Guide, Mastering Macromedia Contribute
Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
Web Development
"cstarr" <[email protected]> wrote in
message
news:epac42$6a7$[email protected]..
> I'm reading Dreamweaver 8 with ASP, ColdFusion, and PHP:
Training from
> the
> Source
> Lesson 11: Building Search Interfaces
>
> I'm having trouble with diplaying multiple recordsets. I
did everything
> that
> the book told me to do, but it just doesn't work. I just
got done with the
> tours.asp and it works fine. Now I'm working on the
index.asp. rs_journal
> comes
> up fine, but when I add the rs_worldregions, the page
won't come up. I
> even
> uploaded the finished sample of index.asp that came with
the book and that
> didn't work.
>
> Has anyone read this book and had the same troubles?
>
> The only difference I used is that I didn't use a DSN. I
used a custom
> connection string.
>
> I went to the APPLICATION panel. Then to the DATABASES
tab. Then to the
> +
> CUSTOM CONNECTION STRING. On the Custom Connection
String box I entered:
>
> Connection name: conn_newland
> Connection string:
"Provider=Microsoft.Jet.OLEDB.4.0;Data
> Source=D:\mywebsite\newland\database\newland_tours.mdb;"
> Dreamweaver should connect: Using driver on testing
server
>
> I'm able to connect to the database. But the only
problem is that I can't
> display multiple recordsets.
>

Similar Messages

  • Newland Tours Files

    I have bought an used copy of this book: Macromedia®
    Dreamweaver® 8 with ASP, Coldfusion® and PHP: Training
    from the Source By Jeffrey Bardzell and the CD-ROM with the example
    files is broken. Does anybody where can I download the files to
    follow the tutorial "Newland Tours"?
    Thanks a lot

    quote:
    Originally posted by:
    Coach Bob
    Stop the presses! The book is in revision by another author
    (me). If you have problems with the book please post them or send
    them to me in a private message and I'll see that they get
    addressed. There will also be another site for the errata and I vow
    to address the questions as they come in (as best I can).
    Mobyme, can you tell me where you ran into problems in the
    book. I'll make sure to take a look at them. I don't want readers
    of the next version of the book to experience the same
    frustrations. No promises, but I might be able to throw together an
    errata section on my site for the current version of the book. I'll
    ask both Jeff and the publisher to send me what they've received.
    Vbox, I've asked the editor about a replacement CD. If they
    give me the OK, I'll send you a note with a link where you can
    download the files.
    Don't give up on the book. It's not such a bad one. Hopefully
    you'll like the changes to the new one. (And the changes to the
    next version of DW!)
    Bob
    hi, did you ever get this book re-vised? i've got a copy of
    this from 06, which i've just bought, and i reckon its full of php
    mistakes. this is the 2nd book i've bought on the subject, and its
    not a patch on the first.unless, someone can point me towards the
    correctected php coding......

  • Error testing locally; works fine on remote server

    I was about to post that I'd hit an error when trying to
    create a
    conditional region in DW 8 with ASP, CF & PHP: Training
    from the Source.
    Rather than paste the non-PHP code, I uploaded the page to my
    remote server.
    When I browsed to the link, the error wasn't there.
    I inserted the code for the conditional region just before
    the opening
    <form> tag, as the book instructed (Lesson 6).
    <?
    if ($_GET['error'] == "notnumeric")
    echo "<p>*** Error! One or more fields was left blank
    or contained a
    non-numeric character.</p>";
    ?>
    When I preview locally, the page appears correctly, but with
    the following
    message before the form:
    Notice: Undefined index: error in C:\Program Files\Apache
    Group\Apache2\htdocs\newland\Lesson06\Start\newland-php\tourprice.php
    on
    line 27
    Line 27 is where the "if" statement starts.
    On my remote server, everything works as it should:
    http://www.feathertheweb.com/newland/Lesson06/Start/newland-php/tourprice.php
    Any help is appreciated.
    Thanks,
    Heather

    So, I changed the code you had provided and that worked. Now,
    I've tested
    the form and when I click "submit," I get this:
    Notice: Undefined index: nmChildren in C:\Program
    Files\Apache
    Group\Apache2\htdocs\newland\Lesson06\Start\newland-php\tourprice_processor.php
    on line 2
    Warning: Cannot modify header information - headers already
    sent by (output
    started at C:\Program Files\Apache
    Group\Apache2\htdocs\newland\Lesson06\Start\newland-php\tourprice_processor.php:2)
    in C:\Program Files\Apache
    Group\Apache2\htdocs\newland\Lesson06\Start\newland-php\tourprice_processor.php
    on line 4
    I'm guessing it's related to the change I made in
    tourprice.php. I tried to
    figure out what needed to be changed in
    tourprice_processor.php based on
    that change, but I'm still pretty new at this and really
    wasn't sure.
    Below is the code from tourprice_processor.php:
    <?php
    if (is_numeric($_POST['numAdults']) == false or
    is_numeric($_POST['nmChildren']) == false)
    header("Location: tourprice.php?error=notnumeric");
    exit;
    ?>
    <?php
    $numAdult = $_POST['numAdults'];
    $numChild = $_POST['numChildren'];
    $basePrice = $_POST['tourName'];
    $tourPrice = ($numAdult * $basePrice) + ($numChild *
    $basePrice);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <title>Newland Tours: Tour Price
    Calculator</title>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <link href="css/newland.css" rel="stylesheet"
    type="text/css" /></head>
    <body>
    <a href="#top"><img src="images/spacer.gif"
    alt="Skip to main page content"
    width="1" height="1" border="0" align="left" /></a>
    <table width="750" border="0" cellpadding="3"
    cellspacing="0">
    <tr>
    <td><img src="images/banner_left.gif" width="451"
    height="68" alt="Newland
    Tours Banner, Left." /></td>
    <td width="280"><img src="images/banner_right.jpg"
    width="276" height="68"
    alt="Newland Tour Banner, Right." /></td>
    </tr>
    <tr>
    <td><img src="images/navbar.gif" name="navbar"
    width="450" height="20"
    border="0" usemap="#navbarMap" alt="Navigation Bar."
    /></td>
    <td><img name="copyright_bar"
    src="images/copyright_bar.gif" width="272"
    height="20" border="0" alt="Copyright 2006 Newland Tours."
    /></td>
    </tr>
    <tr>
    <td colspan="2">
    <h1><br />
    <a name="top" id="top"></a>Tour Price
    Calculator</h1>
    <p>The estimated cost of your tour is
    <strong><?php echo
    '$'.number_format($tourPrice, 2);
    ?></strong>.</p>
    <p>Prices include hotel, accommodation, and travel
    expenses during the
    tour. They
    do not include airfare to the starting
    destination.</p>
    <p><a href="tourprice.php">Calculate</a>
    another tour.</p>
    <p><a href="contact.php">Contact</a> one
    of our qualified agents.</p>
    </td>
    </tr>
    </table>
    <br />
    <map name="navbarMap" id="navbarMap">
    <area shape="rect" coords="1,0,62,20" href="index.php"
    alt="Home" />
    <area shape="rect" coords="71,0,117,20" href="about.php"
    alt="About" />
    <area shape="rect" coords="129,0,196,20" href="tours.php"
    alt="Find Tours"
    />
    <area shape="rect" coords="209,0,311,20"
    href="profiles.php" alt="Country
    Profiles" />
    <area shape="rect" coords="327,0,434,20"
    href="contact.php" alt="Contact An
    Agent" />
    </map>
    </body>
    </html>
    Heather
    "David Powers" <[email protected]> wrote in message
    news:[email protected]...
    > Heather wrote:
    >> I inserted the code for the conditional region just
    before the opening
    >> <form> tag, as the book instructed (Lesson 6).
    >>
    >> <?
    >> if ($_GET['error'] == "notnumeric")
    >>
    >> When I preview locally, the page appears correctly,
    but with the
    >> following message before the form:
    >>
    >> Notice: Undefined index: error in C:\Program
    Files\Apache
    >
    > It's badly written code. It should be
    >
    > if (isset($_GET['error']) && $_GET['error'] ==
    "notnumeric")
    >
    >> On my remote server, everything works as it should:
    >
    > That's because your remote server has been configured to
    suppress PHP
    > notices.
    >
    > PHP notices alert you to non-fatal mistakes in coding. A
    lot of people
    > just ignore them, but it's a sloppy habit to get into,
    because it can lay
    > your scripts open to attack. Before testing the value of
    a variable, you
    > should always use isset() to check that the variable has
    been defined in
    > the first place.
    >
    >
    http://www.php.net/manual/en/function.isset.php
    >
    > --
    > David Powers
    > Author, "Foundation PHP for Dreamweaver 8" (friends of
    ED)
    > Author, "Foundation PHP 5 for Flash" (friends of ED)
    >
    http://foundationphp.com/

  • CSS changes not implemented

    I'm working through Lesson "Adobe Dreamweaver CS3 with ASP,
    ColdFusion, and PHP: Training from the Source" by Bob Flynn. The
    lesson is about CSS. I edit the CSS file as instructed, the changes
    to Headings, text size and colour are reflected in the design view
    of DW. However they are not being recognised by the browsers Safari
    and Firefox.

    Dooza I tried emptying the cache in Safari with no success.
    As for the code, it's pre-caned from the CD accompanying the
    book:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Newland Tours: Home</title>
    <link href="css/main.css" rel="stylesheet" type="text/css"
    />
    </head>
    <body class="thrColFixHdr">
    <div id="container">
    <div id="header"> <img src="images/banner_left.gif"
    alt="Newlands Logo" width="451" height="68" align="left"
    /><img src="images/banner_right.jpg" width="276" height="68"
    id="bannerRight" alt="Newland Tours Banner, Right/">
    <!-- end #header -->
    </div>
    <div id="sidebar1">
    <p class="navhead">Explore the Site</p>
    <p> <a href="about.html">About Newland
    Tours</a><br />
    <a href="tours.html">Find Tours</a><br />
      <a
    href="tours.html#africa">Africa</a><br />
      <a
    href="tours.html#europe">Europe</a><br />
      <a href="tours.html#asiaeast">East
    Asia</a><br />
      <a
    href="tours.html#asiacentral">Central Asia</a><br />
      <a href="tours.html#asiawest">West
    Asia</a><br />
      <a
    href="tours.html#americacentral">Central America</a><br
    />
      <a
    href="tours.html#americanorth">North America</a><br
    />
      <a
    href="tours.html#americasouth">South America</a><br
    />
    <a href="profiles.html">Country
    Profiles</a><br />
    <a href="contact.html">Contact an
    Agent</a></p>
    </div>
    <div id="sidebar2">
    <p><img src="images/title_travelers_journal.gif"
    width="276" height="25" alt="Traveler's Journal" /></p>
    <h3><img src="images/icon_tj.gif" alt="Traveler's
    Journal Logo" width="81" height="81" align="right" />Teens
    Discover the Mayans</h3>
    <p class="author">By Ellen Olenska</p>
    <p>Newland Tours recently took two dozen students of
    Bart Township High School to Chichen Itza, Mexico. While on the
    tour, students saw ancient Mayan ruins and artifacts. They learned
    the latest on the &quot;mystery of the
    Mayans.&quot;</p>
    <p>The Mayans were one of the world's most advanced
    civilizations when they mysteriously disappeared centuries ago.
    While archaeologists don't know exactly what happened to the
    Mayans, evidence points to war as one possible explanation. Bart
    Township High School students are using the experience as the basis
    for a series of reports that teams of participants are putting
    together.</p>
    <!-- end #sidebar2 -->
    </div>
    <div id="mainContent">
    <p>Operating since 1968, Newland Tours offers an array
    of travel tours. Whether you love hiking in exotic locations or
    want to get the most out of your retirement, Newland Tours has a
    package for you.</p>
    <p><img src="images/title_featured_vacation.gif"
    alt="Featured Vacations" width="276" height="25" /></p>
    <p><img src="images/temple_small.jpg" alt="Japanese
    temple" width="72" height="90" align="left"
    /><strong>Highlights of Japan</strong></p>
    <p class="caption"> Image: Heian Jingu Shrine, Kyoto
    Prefecture</p>
    <p>Get a taste for Japan's diversity, from the
    serenity of its shrines to the chaos of urban life. Meet
    &quot;Fuji-san,&quot; Japan's highest mountain at 12,387
    feet, visit temples, walk through gardens, and browse in Japan's
    most elegant shopping districts.</p>
    <p> Only $1,199/adult and $899/child USD.</p>
    <!-- end #mainContent -->
    </div>
    <!-- This clearing element should immediately follow the
    #mainContent div in order to force the #container div to contain
    all child floats -->
    <br class="clearfloat" />
    <div id="footer">
    <p>&copy; 2007 Newland Tours</p>
    <!-- end #footer -->
    </div>
    <!-- end #container -->
    </div>
    </body>
    </html>

  • Dreamweaver 8 with ASP, ColdFusion, and PHP

    I'm having trouble with diplaying multiple recordsets. I did
    everything that the book told me to do, but it doesn't work. I just
    got done with the tours.asp and it works fine. Now I'm working on
    the index.asp. rs_journal comes up fine, but when I add the
    rs_worldregions, the page won't come up. I even uploaded the
    finished sample of index.asp that came with the book and that
    didn't work.
    Has anyone read this book and have the same troubles?

    This is what the code looks like.
    <%@LANGUAGE="VBSCRIPT"%>
    <!--#include file="Connections/conn_newland.asp" -->
    <%
    Dim rs_journal
    Dim rs_journal_numRows
    Set rs_journal = Server.CreateObject("ADODB.Recordset")
    rs_journal.ActiveConnection = MM_conn_newland_STRING
    rs_journal.Source = "SELECT journalID, journal_entry FROM
    tbl_journal ORDER BY journalID DESC"
    rs_journal.CursorType = 0
    rs_journal.CursorLocation = 2
    rs_journal.LockType = 1
    rs_journal.Open()
    rs_journal_numRows = 0
    %>
    <%
    Dim rs_worldregions
    Dim rs_worldregions_numRows
    Set rs_worldregions = Server.CreateObject("ADODB.Recordset")
    rs_worldregions.ActiveConnection = MM_conn_newland_STRING
    rs_worldregions.Source = "SELECT * FROM tbl_region ORDER BY
    regionName ASC"
    rs_worldregions.CursorType = 0
    rs_worldregions.CursorLocation = 2
    rs_worldregions.LockType = 1
    rs_worldregions.Open()
    rs_worldregions_numRows = 0
    %>
    <%
    Dim Repeat1__numRows
    Dim Repeat1__index
    Repeat1__numRows = -1
    Repeat1__index = 0
    rs_worldregions_numRows = rs_worldregions_numRows +
    Repeat1__numRows
    %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <title>Newland Tours</title>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <link href="css/newland.css" rel="stylesheet"
    type="text/css" /></head>
    <body>
    <table width="750" border="0" cellpadding="3"
    cellspacing="0">
    <tr>
    <td colspan="2" width="470"><img
    src="images/banner_left.gif" width="451" height="68" alt="Newland
    Tours Banner, Left." /></td>
    <td width="280"><img src="images/banner_right.jpg"
    width="276" height="68" alt="Newland Tour Banner, Right."
    /></td>
    </tr>
    <tr valign="top">
    <td width="180"> </td>
    <td width="290"> </td>
    <td width="280"> </td>
    </tr>
    <tr valign="top">
    <td width="180" bgcolor="#DCDFD9">
    <p class="navhead">Explore the Site</p>
    <p>
    <a href="about.asp">About Newland
    Tours</a><br />
    <a href="tours.asp">Find Tours</a><br />
    <%
    While ((Repeat1__numRows <> 0) AND (NOT
    rs_worldregions.EOF))
    %>
      <a
    href="tours_detail.asp?regionID=<%=(rs_worldregions.Fields.Item("regionID").Value)%>"><%= (rs_worldregions.Fields.Item("regionName").Value)%></a><br
    />
    <%
    Repeat1__index=Repeat1__index+1
    Repeat1__numRows=Repeat1__numRows-1
    rs_worldregions.MoveNext()
    Wend
    %>
    <a href="profiles.asp">Country
    Profiles</a><br />
    <a href="contact.asp">Contact an
    Agent</a></p>
    <p><br />
    &copy; 2003 Newland Tours</p>
    </td>
    <td width="290">
    <p>Operating since 1968, Newland Tours offers an array
    of travel tours. Whether you love hiking in exotic locations or
    want to get the most out of your retirement, Newland Tours has a
    package for you.</p>
    <p><img src="images/title_featured_vacation.gif"
    width="276" height="25" alt="Featured Vacation." /></p>
    <p><img src="images/temple_small.jpg" width="72"
    height="90" align="left" alt="Heian Jingu Shrine, Kyoto
    Prefecture." /><strong>Highlights of
    Japan</strong></p>
    <p class="caption"> Image: Heian Jingu Shrine, Kyoto
    Prefecture</p>
    <p>Get a taste for Japan's diversity, from the
    serenity of its shrines to the chaos of urban life. Meet
    &quot;Fuji-san,&quot; Japan's highest mountain at 12,387
    feet, visit temples, walk through gardens, and browse in Japan's
    most elegant shopping districts.</p>
    <p>
    Only $1,199/adult and $899/child USD.
    </p>
    </td>
    <td width="280"><p><img
    src="images/title_travelers_journal.gif" width="276" height="25"
    alt="Traveler's Journal." /></p>
    <img src="images/icon_tj.gif" width="81" height="81"
    align="right" "Traveler's Journal logo."
    /><%=(rs_journal.Fields.Item("journal_entry").Value)%></td>
    </tr>
    </table>
    <br />
    <br />
    </body>
    </html>
    <%
    rs_journal.Close()
    Set rs_journal = Nothing
    %>
    <%
    rs_worldregions.Close()
    Set rs_worldregions = Nothing
    %>

  • LOGIN HELP!!!

    can anyone help with session variable problem?? I cannot seem
    to get my pages to take over the session variable, and am now
    getting 80040e14 errors....

    lol .. I'm sorry .. you didn't say what server model .. I
    thought you were
    talking about PHP (for some reason).
    In ASP, you will create the session variable like this (this
    example sets a
    session equal to a recordset variable)
    Session("YourID")
    =(rsyourrecordsetname.Fields.Item("YourID").Value)
    From there it's easy. You can create a data binding object
    that will allow
    you to drop the session variable whereever you wish. Go to
    the Data
    Bindings window in the Application panel and click the +
    sign. Then select
    Session Variable and fill in YourID in the window (or
    whatever you are
    calling it).
    Now an object will show in the Data Bindings window and you
    can drop it
    anywhere you wish on your pages. You can also carry the value
    from page to
    page using the Request Object to request it from a form
    variable or a
    previous page.
    Code looks like this:
    <%= Session("YourID") %>
    You would request the page with the user's details like this:
    <a href="page.asp?Member=<%= Session("YourID")
    %>">
    Does that make sense?
    Nancy Gill
    Adobe Community Expert
    BLOG:
    http://www.dmxwishes.com/blog.asp
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner's
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "peteneal" <[email protected]> wrote in
    message
    news:e25jga$qpo$[email protected]..
    >I wasn't aware i needed session start in ASP with VB??
    >
    > is this what i need??
    >
    > there's no definitive description for the use of Session
    Variable's - all
    > i am
    > trying to do is authenticate someone the simplest way
    possible (have
    > followed
    > Newlands Tour's login) and from there to end on a user's
    company details
    > page...via the session variable
    >

  • ASP Error

    Could anyone tell me what this means and how to fix it please:
    Error Type:
    Microsoft VBScript runtime (0x800A01A8)
    Object required: ''
    /newland/message_sent.asp, line 7
    Browser Type:
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.3; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)   
    Page:
    GET /newland/message_sent.asp
    This is the full page code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <%
    theSchema="http://schemas.microsoft.com/cdo/configuration/"
    Set cdoConfig=server.CreateObject("CDO.Configuration")
    cdoConfig.Fields.Item(theSchema & "sendusing")=2
    cdoConfig.Fields.Item(theSchema & "smtpserver")="mail.myserver.co.uk"
    cdoCongig.Fields.Update
    set cdoMessage=Server.CreateObject("CDO.Message")
    cdoMessage.Configuration=cdoConfig
    cdoMessage.From="[email protected]"
    cdoMessage.To="[email protected]"
    cdoMessage.Subject="This is the message subject"
    cdoMessage.TextBody="This is the message body"
    cdoMessage.Send
    Set cdoMessage=Nothing
    Set cdoConfig=Nothing
    %>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Newland Tours: About</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <link href="css/newland.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <a href="#top"><img src="images/spacer.gif" alt="Skip to main page content." width="1" height="1" border="0" align="left" /></a>
    <table width="750" border="0" cellpadding="3" cellspacing="0">
    <tr>
      <td><img src="images/banner_left.gif" width="451" height="68"  alt="Newland Tours Banner, Left" /></td>
      <td width="280"><img src="images/banner_right.jpg" width="276" height="68" alt="Newland Tours Banner, Right" /></td>
    </tr>
    <tr>
      <td><img src="images/navbar.gif" name="navbar" width="450" height="20" border="0" usemap="#navbarMap" alt="Navigation Bar" /></td>
      <td><img name="copyright_bar" src="images/copyright_bar.gif" width="272" height="20" border="0" alt="Copyright 2004 Newland Tours" /></td>
    </tr>
    <tr>
      <td colspan="2">
    <h1><br />
       <a name="top" id="top"></a>Message Sent </h1>
       <p>Your message has been sent. You should expect to here from us within 3 business days.</p>
       <p>Return to <a href="index.asp">Home</a> page</p></td>
    </tr>
    </table>
    <br />
    <br />
    <map name="navbarMap" id="navbarMap">
    <area shape="rect" coords="1,0,62,20" href="index.asp" alt="Home" />
    <area shape="rect" coords="71,0,117,20" href="about.asp" alt="About" />
    <area shape="rect" coords="129,0,196,20" href="tours.asp" alt="Find Tours" />
    <area shape="rect" coords="209,0,311,20" href="profiles.asp" alt="Country Profiles" />
    <area shape="rect" coords="327,0,434,20" href="contact.asp" alt="Contact An Agent" />
    </map>
    </body>
    </html>

    You have a typo on that line.
    cdoCongig.Fields.Update
    It should be:
    cdoConfig.Fields.Update
    Jim

  • How to load a virtual tour in Flash Catalyst ?

    Hi,
    I want to know if is it possible to load on FC 5.5 a Virtual Tour imported in .swf and created from Autopano Tour Pro.
    example: http://fraize54th.free.fr/jardinAlex.html
    I tried but I don't find any issue possible, if somebody could tell me if I can do this or I I have to give up !
    Thanks
    Alex

    Hi Alex,
    I wasn't able to make that SWF load from within an FC project, either.  FC does support embedding of SWFs, but there may be some addional logic that sets this SWF up that doesn't function well when called from within another SWF.
    This isn't a perfect solution, but you could have an FC button or action open an URL (where your virtual tour swf resided).
    Good luck!
    Nate

  • Problems with Verizon Wireless BlackBerry Tour BlackBerry OS 4.7.1.61 update:

    Problems with Verizon Wireless BlackBerry Tour BlackBerry OS 4.7.1.61 update - I was anxious to download the update to see if it addressed the sticky trackball problems and the low volume issue when using a blue tooth device. However, in the process of updating my BB Tour yesterday, the install stopped on the 8th out 12 updates. After a couple of 'retrys', the BB error message on the desktop came up which instructed me to: i) disconnect the device, ii) restart the computer. iii) restart the loading process and, iV) restore my data by loading the loader back-up file using Restore. Unfortunately my Tour was left without any software and the Desktop manager couldn't recognize it. The error message on the Tour was 503. Called Verizon Wireless tech and bottom line, the only fix is a new Tour, which they're sending me. Anyone else having issues with the update? Also, does it address the trackball and blue tooth issues?

    I had issues with the trackball and had to have my Tour replaced.  I was told this model does not have a removable trackball so the entire phone has to be replaced.  My current one is working OK but does stick a bit.  Seems to get worse over time.  My wife's tour is newer and so far she is not experiencing the problem.  Have not experienced a problem with the Blue Tooth volume.
    I have another issue with this upgrade that I am wondering if anyone else has seen.  My wife has the Tour as well.  She was prompted to do the upgrade and went through it.  It appeared to work except it blew out her Contact Alerts.  When we put them back in we can no longer get the sound to play when she receives an SMS message in her holster. Vibration works but doesn't do any good when it is in her purse.  Phones calls, calendar alerts, alarms all work in holster.  As soon as we delete the contact alert the default SMS alert will play in the holster.  If she takes her phone out of the holster the Contact alert will play.  My phone is still running 4.7.1.40 and this function works fine.  I am thinking about trying to put her's back to my version if possible but not sure the best way to go about this 

  • Tour got wet - here's what it does - how can I tell if it is "fried"?

    My Blackberry Tour (from 2009 - Blackberry device manager says I am running BB OS 4.7.1)  got wet in a rainstorm (phone was outside, not submerged, the wetness indicator strip on the battery has not had a line appear on it but a tab inside the phone is all red) approx. 5 days ago - I did some of what I should have done and some of what I probably should not have done as far as patience, lack of patience, letting it dry (in gentle heat (no hair dryer, etc. or rice), giving it a try... Here's what it does - my main questions are - do I have any hope of rescuing my contacts data - unfortunately, never backed-up?  If so, how?:
    - Without the Battery in:  Connected by USB cable to my laptop (plugged-in, USBs powered) (Windows 7; Blackberry Desktop version 5 (installed from the CD that came with the phone)) finds the phone in Windows device manager (Blackberry Smartphone connected via USB), as above, Blackberry device manager shows status as connected, can identify the phone's PIN, Blackberry Desktop Manager can see that the phone is connected (can see it's PIN) but shows that the device is in Disconnected State, the screen on the phone shows the battery with red X through it.
    With a Battery In: 
    - the battery with red X goes away,
    typically starts with a red indicator light, then changes to black screen with hour glass,
    - then to black screen with "BlackBerry" and progress bar (showing boot progress?). 
    - Boot progress bar completes,
    - the screen shows the Verizon logo, then
    - I get a flash (sometimes longer than others) of my desktop picture (it's one of the pre-loaded ones that is not on the micro-SD card, which I have removed). 
    - At this point there is a new progress bar which indicates that the phone is checking security settings (I cannot remember verbatim what it says, but it typically completes and, since I probably shouldn't be powering it on, I will not do that to get an exact quote; suffice to say, that usually completes). 
    - In terms of the desktop, I can also see that, in addition to my selected picture being there , the phone remembers my alarm time at 6:40AM).
    - A couple of times when I restarted it, I held down the escape/back button during the boot and launched the phone in safe mode ("safe mode" appeared at the top of the screen - a dialog appeared that explained safe mode and allowed me to click "ok" that I accepted that I knew what safe mode was. 
    - Whether in safe mode or not, it usually at this point returned to the initial power-up sequence, in a loop, between the red indicator light and the hourglass animation - it does not return to the screen with the "BlackBerry" logo with progress bar, just the aforementioned loop.
    At this point, I have tried two batteries - both Blackberry OEM, but with known/potential issues:  1.) the battery that was in the phone at the time it got wet - is approx. a year old (in terms of use), but was holding a reliable charge for 3-4 hours of talk time and
    2.) an older battery which may have been the one that was replaced by battery 1 or may be older - it almost certainly had diminshed charge holding capacity and had started the bulge that lithium batteries develop as the near death.  These batteries were not obtaining much, if any, in the way of  charge while in the phone plugged in, but did, outwardly (light changed from orange to green on a Blackberry OEM charger form the D-X1 battery; have not done a test with a circuit tester, etc.), accept a charge via the outside the phone method.  When using the inside the phone method - prior to any outside charging - during the boot-up process, at the point at which I could see my desktop, the indicator light flashed with the orange light and/or the indicator that one typically gets when the battery is lacking needs a re-charge).
    I have received and I am currently charging a new D-X1 Blackberry OEM battery, via the aforementioned Blackberry OEM outside the phone charger, for a go-around with the closest thing that I can get to a no problems battery.  
    OK, I am an **bleep**: I tried to re-boot the phone right away, I wasn't doing a back-up (though I thought that it was 1.) the reason that I was buying a Blackberry with an SD card - that this information was going to be portable and 2.) that I thought that the tech from Verizon, way back when I bought it, set the phone up to store the information on the SD card (no such luck, not there) or the SIM card - how could I test that? (which is, perhaps, why I thought that a backup was taking place).  Anyway, as you can tell, I have tried to be as descriptive as possible herein to say what I am seeing, because there are a number of other people with similar problems posting in various places, but, not really the same problems (they are getting stuck on a white screen, not getting all the way through the boot that I describe, had a phone in the pool all day, don't care about the data, just trying to save the phone (I was lax about an upgrade, because I liked my phone and I had a decent outlay of cash in the phone to start-off - was pushing to make it to this fall, hopefully not much longer, to get the newer Blackberry Classic coming out... hopefully with my contact listing being ported over).  That said, I have found plenty of evidence that suggests saving the phone is a real possibility, but the data may be more of a challenge.
    Huge post, looking for thoughts - thanks for any consideration given to my problems.

    if booted up with out all the way dry you might have fried it
    put it in a bag of rice for a few days in a nice warm spot 90-100 F
    then try it again if it still does the same thing then its toast
    Click here to Backup the data on your BlackBerry Device! It's important, and FREE!
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up
    Click to search the Knowledge Base at BTSC and click to Read The Fabulous Manuals
    BESAdmin's, please make a signature with your BES environment info.
    SIM Free BlackBerry Unlocking FAQ
    Follow me on Twitter @knottyrope
    Want to thank me? Buy my KnottyRope App here
    BES 12 and BES 5.0.4 with Exchange 2010 and SQL 2012 Hyper V

  • Screen goes black when playing "Tiger Woods PGA Tour 08"

    No need to mention that I am very happy with my new iMac. It replaces my G4 MDD PowerMac. The iMac is huge, quiet and fast on my graphic design jobs. I even won´t want to miss the glossy screen.
    Yesterday I received the brand new "Tiger Woods PGA Tour 08". Keen on trying the game I installed and successfully created a player and got first practice shots but as soon as I try to actually start a game scenario, it appears that the scenario just only loads about 90 % and then screen goes black. From there I can only shut down my iMac with the power switch.
    Now I found a support note on the EA Games Site. Title: "Why does "Tiger Woods PGA Tour 08" lock up with a black screen when playing on an iMac 7.1?" Answer: "This is caused by a driver issue with the video card that will be adressed by next system update by apple later this month."
    Question: is this indeed so? Can I expect a system update soon? Anybody there with the same problem?
    P.S.: I checked if I could run the game with a new user. Same problem.
    Thanks for help.

    Thank you for replying. There are more postings in this forum about that issue. I.e. gamers trying to play Unreal Tournament suffer from the same freezing on the new 24" iMac. Have a look as well at the reviews in the US apple store on this game.
    Solution is near. Installing 10.5 Leopard should solve the problem. As I do not want to install Leoprad yet, because some of my graphic apps will not run smoothly on leopard I have to wait for the next update for Tiger 10.4.11
    Obviously EA Games is to blame and failed to test the game good enough before hand.

  • DTM for Mac and Tour OS 5.0

    I've been using a BB for 12 years but most of that time with DTM for Windows (until I saw the Mac light three years ago).  Since the BB DTM, (aside from the fact we Mac folks get very little RIM love), after I updated my Tour to the "official" Verizon OS 5.0.591 I'm having all kinds of Calendar sync problems between iCal and my BB.  None of these problems existed with OS 4.7.x so I have to put the blame on OS 5.0 or else the fact that RIM hasn't updated DTM for Mac to work properly with OS 5.0.
    1.  if I force a sync of all iCal events to the BB everything is fine.  But the first time I do a normal sync without forcing the iCal events to override those on the BB, then I get the notification that a bezillion events will be modified in iCal.  The modifications always have to do with the sound, alarm, or time of the alarm.  I obviously don't let them happen.  Additionally, all the notification reminders are stripped from the events on the BB.  If force a sync and override everything on the device, then immediately do a normal sync, I should not have any changes on either side.
    2.  Not actually off-topic but while I'm at it, why do events that show me as BUSY in iCal show up as FREE on the BB?
    3.  I already know of the issue where I need to have all events reminders in iCal set to "Message" because if I set them to "Message with Sound" the reminder doesn't show up properly on the BB.  But why?  Isn't this rather basic?
    All in all, while the DTM for Mac is at least something, it's still light years behind what Windows has, and these latest problems with the Calendar sync are very frustrating.  People wonder why folks move to the inferior iPhone...it's pretty simple...it's always in sync with the Mac...period!  Thanks for any light that can be shed on this calendar issue.

    The upgraded OS you installed removed the lock icon from the screen, until you set a password on the device, and then the lock icon will return.
    Otherwise, have you tried using the top edge left button on the device?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Questions on transitioning to the Tour.

    Hi all,
    I wish I were more of a techie...maybe then these changes wouldn't be so painful....
    Yesterday I upgraded from my Curve to a Tour. With a few exceptions I've managed to tweak everything to the way I like them.
    I'm having trouble with the following:
    1. No memopad icon on the Tour. The icon doesn't show up anywhere. I've checked the applications folder, unhidden everything I can see, and I still can't find the Memopad icon. However, when I do a search for a known item in the Memopad, I can find it so I know it's on the device but for the life of me, I can't find the *&^%^ icon!
    2. I have some photos on my Curve that I forgot to e-mail to myself before I pulled the plug on my service to change it to the Tour. I don't have memory card for either device. How can I get those files over the Tour?
    Thanks for any assistance.
    Gary

    I just got a Tour from Sprint, so I don't know if they are different from provider to provider, however my MemoPad is the first Icon in the Applicatoins folder.  Have you gone into your "Options", "Advanced Options", and "Applications" just to make sure it is installed? 
    If it is not, then you may want to try to update your software through Desktop Manager and see if it puts it on there.
    You should have gotten a memory card with your Tour, are you sure you don't have one?  I would check the port in your tour to make sure you don't have one.  If you do, just put that in your curve, transfer your photos to it, then pull them off via cable.  Your other option is to install desktop manager and use that to get your pictures off your curve.

  • I was told to delete user.js file to stop viewing the "tour" page on start, file does not exist, problem remains

    i updated, i start firefox 2 tabs open one is "take the tour" tab the other is google, done the tour, a few times it opens up again every time, start of the healing process by typing in the question '"i keep seeing thr "take the tour"page on startup,then following the steps of the expertise i go to help,trouble blabla and i end up looking for user.js so i delete it or rename in a folder that contains folders and other data that nothing in there is like user.js file, so in the following question that is formed above there was no answer so i stepped into this case (only i had to create an account that was not my desire in the process) , thats all i know of.

    So, if you do not have the user.js file then you can rename or delete the prefs.js file (pref.js.sav) to see if that helps.<br />
    Windows likely hides the .js and shows them as User and Prefs.
    You can also try to delete the compatibility.ini file to force Firefox to reinitialize some other files.
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    *http://kb.mozillazine.org/Profile_folder_-_Firefox

  • Managing multiple external jpgs for use in virtual tour

    I've posted for help in a few forums now including this one. I have a big delima that I cannot overcome using google alone.
    I'm creating an interactive tour (pretty much a controllable slideshow) and I have multiple pictures now that, if in the correct order, will walk you around my school. You can turn left or right at doors (the picture that you're stopped at will wait for input from either the up, left, or right button and when clicked will take you to the corrisponding picture) and will eventually lead you out another entrance of the school and take you back to the main map.
    My problem lies in the pictures... I have hundreds of pictures each one needing to be referanced. The only thing I have figured out is that I need to use arrays to organize these pictures and make them easier to access. I have considered using XML to organize the lists of pictures but I cannot spend hours typing out all the names of the pictures.
    I need an easy way to access my pictures from outside my flash AS3 project.
    A reply with links to helpful things or even some code I could use would be extremely helpful.
    *pictures organized in folders as such...
    Walkthrough Pictures/
              a1
              a2
              a3
              a4
              a5
              a6
              b1
              b2
              b3
              b4
              b5
              b6/DSCN0042.JPG
                   DSCN0044.JPG
                   DSCN0045.JPG
                   DSCN0049.JPG
    and so on...

    // this creates the outer elements
    var xml:XML =
                <slideshow>
                 </slideshow>;
    while (xml.image.length() <  688){
    // <image/> is the inner element
        var item:XML = <image />;
        var photoIndex =  xml.image.length() + 1001;
    //  @ refers to attribute
        item.@src = "images/"+  photoIndex.toString().substr(1) + ".jpg";     // substr(1) is starts the string at position 1 rather than 0 this
    removes the leading 1 so that 1001.jpg becomes 001.jpg etc
        xml.appendChild(item);
    trace(xml);
    the output looks like this:
    <slideshow>
      <image src="images/001.jpg"/>
      <image src="images/002.jpg"/>
      <image src="images/003.jpg"/>
      <image src="images/687.jpg"/>
      <image src="images/688.jpg"/>
    </slideshow>
    to access this
             var holder:Sprite = new Sprite();
                xmlLoader = new URLLoader();  
                xmlLoader.addEventListener(Event.COMPLETE, onXMLLoadComplete);
                xmlLoader.load(new URLRequest(strXMLPath));
    function onXMLLoadComplete(e:Event):void {
                     loader.contentLoaderInfo.addEventListener(Event.COMPLETE, displaySlide);
                     loader.load(new URLRequest(xmlSlideshow..@src[intCurrentSlide]));
                        // intCurrentSlide is is 00n.jpg   an xmllist is an Array
    function displaySlide(e:Event):void {
              loader.contentLoaderInfo.removeEventListener(Event.COMPLETE, displaySlide);
                holder.addChild(loader.content);   // this adds the image to a Sprite
                addChildAt(holder, 0);                // this addh holder to stage at level 0
                if(holder.numChildren > 1){holder.removeChildAt(0);}  // remove bottom image in holder so no more than 1 image
              is displayed at a time

Maybe you are looking for