Issue with Dreamweaver CS3 Check username behavior

Let me start by saying that I'm not a developer, and I may be in over  my head on the project I'm working on.
I'm creating a  page to register new user's information into aa Access user table. I've  created a registration form, and added the Insert Record behavior. That  works fine, no problems. However, when I add the Check New User  behavior, I get some strange results.
If the new  username is valid (not a duplicate), the form processes and goes to my  "thank you for registering" page. Great.
If the new  username is not valid, the behavior redirects to the "sorry, pick a  different username" page. Great.
When the user goes  back to the registration page to change the User Name and tries to  submit the form, and error message appears thet the connection  (MM_rsKey) is still open. When I look at the code (with my very limited  knowledge of actual code), it looks like the behavior doesn't close the  connection unless the selected User Name is valid. If the redirect  happens, and the user goes back to the registration form page, the  connection hasn't been closed, and the form simply won't process.
I've  even tried splitting the registration into 2 parts... I created a form  with only the User Name field and a submit button, thinking I'll just  make the second part of the process an update, where the additional  information is added to the existing record that matches the user name,  but still no joy.
I even checked to see if the code  that closes the connection resides on the redirect page, but I don't  think that's the case.
I'm probably missing some  perfectly simple step, but I just can't seem to figure it out.
I  appreciate any help with this. Thanks in advance.
Ken

Yes, that's really how that behavior is meant to be used. You could even take it a step further and have a password field on the first page.
The only issue I have with that scenario is is for some reason, the user doesn't complete step two - then you essentially have the account created but not complete. So then you have to add some sort of check upon login and direct the user back to step 2 if he never filled out that part.
So you may want to start thinking about eventually building a registration page where it's all containined on the same page. The prococess would be something like this:
1. User enters all required information,  including username and password.
2. The page is submitted, but before the insert record occurs the check new username runs, or some variation of it.
3. If it passes, the record is inserted and rediects to the confirmation page.
4. If it doesn't pass the check, instead of a redirect like the behavior does, it displays a message.
5. the tricky part here is not to lose all the other entered information. That can be retained in a session, and bound back to the input fields.
That's just an overview, and i'm sure you've seen enough web forms to recognize the workflow - usually with registration forms and online shopping and checkout forms.

Similar Messages

  • IIS Issue With Dreamweaver CS3

    I have an ASP site which tests ok in Internet Explorer on my
    local pc, which is running IIS. When I get an error during testing,
    I have to reboot the pc to view any pages again as IIS appears to
    be locked out in some way. Anyone give me a steer as to why this is
    or what I I can do to avoid this?
    Steve

    Soz for delay..have been out of office...here is the full
    code:
    <%@LANGUAGE="VBSCRIPT"%>
    <!--#include virtual="/samson beta/Connections/Samson.asp"
    -->
    <%
    Dim MM_editAction
    MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
    If (Request.QueryString <> "") Then
    MM_editAction = MM_editAction & "?" &
    Server.HTMLEncode(Request.QueryString)
    End If
    ' boolean to abort record edit
    Dim MM_abortEdit
    MM_abortEdit = false
    %>
    <%
    ' IIf implementation
    Function MM_IIf(condition, ifTrue, ifFalse)
    If condition = "" Then
    MM_IIf = ifFalse
    Else
    MM_IIf = ifTrue
    End If
    End Function
    %>
    <%
    If (CStr(Request("MM_update")) = "form1") Then
    If (Not MM_abortEdit) Then
    ' execute the update
    Dim MM_editCmd
    Set MM_editCmd = Server.CreateObject ("ADODB.Command")
    MM_editCmd.ActiveConnection = MM_Samson_STRING
    MM_editCmd.CommandText = "UPDATE CLAIMS SET Comments = ?
    WHERE [Claim Number] = ?"
    MM_editCmd.Prepared = true
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param1", 202, 1, 255,
    Request.Form("Comments")) ' adVarWChar
    MM_editCmd.Parameters.Append
    MM_editCmd.CreateParameter("param2", 5, 1, -1,
    MM_IIF(Request.Form("MM_recordId"), Request.Form("MM_recordId"),
    null)) ' adDouble
    MM_editCmd.Execute
    MM_editCmd.ActiveConnection.Close
    ' append the query string to the redirect URL
    Dim MM_editRedirectUrl
    MM_editRedirectUrl = "/Inetpub/wwwroot/Samson Beta/Main.asp"
    If (Request.QueryString <> "") Then
    If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0)
    Then
    MM_editRedirectUrl = MM_editRedirectUrl & "?" &
    Request.QueryString
    Else
    MM_editRedirectUrl = MM_editRedirectUrl & "&" &
    Request.QueryString
    End If
    End If
    Response.Redirect(MM_editRedirectUrl)
    End If
    End If
    %>
    <%
    Dim rsClaimUpdate__MMColParam
    rsClaimUpdate__MMColParam = "1"
    If (Request.QueryString("Claim Number") <> "") Then
    rsClaimUpdate__MMColParam = Request.QueryString("Claim
    Number")
    End If
    %>
    <%
    Dim rsClaimUpdate
    Dim rsClaimUpdate_cmd
    Dim rsClaimUpdate_numRows
    Set rsClaimUpdate_cmd = Server.CreateObject ("ADODB.Command")
    rsClaimUpdate_cmd.ActiveConnection = MM_Samson_STRING
    rsClaimUpdate_cmd.CommandText = "SELECT * FROM CLAIMS WHERE
    [Claim Number] = ?"
    rsClaimUpdate_cmd.Prepared = true
    rsClaimUpdate_cmd.Parameters.Append
    rsClaimUpdate_cmd.CreateParameter("param1", 5, 1, -1,
    rsClaimUpdate__MMColParam) ' adDouble
    Set rsClaimUpdate = rsClaimUpdate_cmd.Execute
    rsClaimUpdate_numRows = 0
    %>
    <%
    Dim Repeat1__numRows
    Dim Repeat1__index
    Repeat1__numRows = 10
    Repeat1__index = 0
    rsSitedAssets_numRows = rsSitedAssets_numRows +
    Repeat1__numRows
    %>
    <%
    %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <!-- DW6 -->
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1">
    <title>Service Calls</title>
    <link rel="stylesheet" href="2col_leftNav.css"
    type="text/css">
    <style type="text/css">
    <!--
    .style1 {
    font-family: "Courier New", Courier, mono;
    font-size: x-large;
    .style15 {font-weight: bold}
    .style17 {
    font-weight: bold;
    background-color: #F9F9F7;
    body {
    background-color: #FFFFFF;
    .style22 {color: #000000; font-weight: bold; font-family:
    Tahoma; }
    .style28 {color: #000000; font-family: Tahoma; }
    .style30 {color: #FFFFFF; font-weight: bold; font-family:
    Tahoma; font-style: italic; }
    body,td,th {
    font-family: Tahoma;
    color: #000000;
    .style33 {color: #000000}
    -->
    </style>
    <div align="left"></div>
    </head>
    <!-- The structure of this file is exactly the same as
    2col_rightNav.html;
    the only difference between the two is the stylesheet they
    use -->
    <body>
    <div class="style15" id="masthead">
    <div class="style33" id="globalNav">
    <div align="center">
    <p><span class="style1"><img
    src="Game%20On%204.gif" width="710"
    height="88"></span></p>
    </div>
    </div>
    </div>
    <div align="center"></div>
    <table width="752" border="0" align="center">
    <tr>
    <th width="41" scope="col"><a
    href="Site%20Faults.asp"><img
    src="Images/cooltext90622309.png"width="144" height="54" border="0"
    onMouseOver="this.src='Images/cooltext90622309MouseOver.png'"
    onMouseOut="this.src='Images/cooltext90622309.png'"></a></th>
    <th width="220" scope="col"><a
    href="Site%20Claims.asp"><img
    src="Images/cooltext90622213.png"width="144" height="54" border="0"
    onmouseover="this.src='Images/cooltext90622213MouseOver.png'"
    onmouseout="this.src='Images/cooltext90622213.png'"></a></th>
    <th width="96" scope="col"><a
    href="Site%20Collections.asp"><img
    src="Images/cooltext90623725.png"width="144" height="54" border="0"
    onMouseOver="this.src='Images/cooltext90623725MouseOver.png'"
    onMouseOut="this.src='Images/cooltext90623725.png'"></a></th>
    <th width="138" scope="col"><a
    href="Site%20Movements.asp"><img
    src="Images/cooltext90622434.png"width="144" height="54" border="0"
    onmouseover="this.src='Images/cooltext90622434MouseOver.png'"
    onmouseout="this.src='Images/cooltext90622434.png'"></a></th>
    <th width="138" scope="col"><a
    href="Site%20Diary.asp"><img
    src="Images/cooltext90622597.png"width="144" height="54" border="0"
    onmouseover="this.src='Images/cooltext90622597MouseOver.png'"
    onmouseout="this.src='Images/cooltext90622597.png'"></a></th>
    <th width="93" scope="col"><a
    href="Log%20In.asp"><img
    src="Images/cooltext90621857.png"width="144" height="54" border="0"
    onmouseover="this.src='Images/cooltext90621857MouseOver.png'"
    onmouseout="this.src='Images/cooltext90621857.png'"></a></th>
    </tr>
    <tr>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    </tr>
    </table>
    <div align="center"></div>
    <p align="center"> </p>
    <p align="center"> </p>
    <div>
    <h3 align="center">Welcome Username, </h3>
    <p align="center">  </p>
    <form method="POST" action="<%=MM_editAction%>"
    name="form1">
    <table align="center">
    <tr valign="baseline">
    <td nowrap align="right">Claim Number:</td>
    <td><input type="text" name="Claim_Number"
    value="<%=(rsClaimUpdate.Fields.Item("Claim
    Number").Value)%>" size="32">
    </td>
    </tr>
    <tr valign="baseline">
    <td nowrap align="right">Comments:</td>
    <td><input type="text" name="Comments"
    value="<%=(rsClaimUpdate.Fields.Item("Comments").Value)%>"
    size="32">
    </td>
    </tr>
    <tr valign="baseline">
    <td nowrap align="right"> </td>
    <td><input type="submit" value="Update record">
    </td>
    </tr>
    </table>
    <input type="hidden" name="MM_update" value="form1">
    <input type="hidden" name="MM_recordId" value="<%=
    rsClaimUpdate.Fields.Item("Claim Number").Value %>">
    </form>
    <p> </p>
    <p align="center"> </p>
    </div>
    <div>
    <h3 align="center"> </h3>
    </div>
    <div></div>
    </div>
    <div align="left"><strong>
    <!--end content -->
    </strong>
    </div>
    <div class="style17" id="siteInfo">
    <div align="center">&copy;2005
    Game On! Services </div>
    </div>
    </body>
    </html>
    <%
    rsClaimUpdate.Close()
    Set rsClaimUpdate = Nothing
    %>

  • Shift+i issue with Dreamweaver CS4

    Hi,
    i have an issue with Dreamweaver CS4 when I press shift+i the behavior is similar as cmd+v (a paste action). I checked the keyboard shortcut, but no action set for shift+i .. i don't understand.
    Please may you help me!?
    thanks
    bye
    Max

    Another place you can ask is in the forums for dreamweaver:
    http://www.adobe.com/support/forums/

  • SFTP connection issue with Dreamweaver 2014

    I have a very weird SFTP connection issue with Dreamweaver CC (2014). I am on a Mac running 10.9.4 and have no problem connecting to my server through SFTP with Dreamweaver CS 6. However, using the exact same settings on CC (2014), I get the following error: "An FTP error occurred - cannot make connection to host. Your login or password is incorrect. Please check your connection information".
    I am truly at a loss here. Command line connection works without problems.
    Any thoughts?

    Hi there,
    Try after rebooting your system or in a different user account on MAC.
    Is there any limit with number of login sessions with your SFTP?
    Could you check with Filezila or similar FTP client and connect to your site, see if you get any error there?
    Thanks.

  • Issues with Analysis Authorization checks in APO

    Hi Friends,
    I am facing an issue with Analysis authorization checks in APO.
    We have setup user access based on Management Entity (Analysis authorization - AGMMGTENT and 0TCAACTVT) and core APO authorizations (based on the work profile - e.g: Demand Planner).
    Scenario: Consider User A has access to India and Australia Management Entities with 0TCAACTVT - *
    This user also has display access to all management Entities (AGMMGTENT - * and 0TCAACTVT - 03). This scenario works very well in Quality where the RSECADMIN trace shows check on both Characteristics. However in Production the RSECADMIN trace shows up only against AGMMGTENT (*) and by default takes 0TCAACTVT as (*).
    In Quality the Characteristics that get checked are as below : and it works as expected. Display access for Management Entities that are supposed to be displayed only and change access to only the Management Entities that it should.
    However the Trace for Production shows the following : As a result it is allowing the user to change access to all management Entities. Which is not desirable..
    Resultant trace results are as below: This should not happen..
    I have compared all Analysis Authorizations and it is same across both Instances. The Demand planner access is consistent too..
    Will it be possible for you to advise on what could I be missing.

    Hi All,
    If it helps, in Quality: the Authorization checks are listed as: Subselection (Technical SUBNR) 1
    while in Production it checks Subselection (Technical SUBNR) 1 in one place, however where it fails - the check happens as Subselection (Technical SUBNR) 0.
    Is there a way we can change this to SUBNR 1. Is there any table entry that I can look at to check if the Authorization check is functioning incorrectly..
    Please advise.. Thanks..
    Regards,
    Prakash

  • Colour Management Issue with PS CS3 and Leopard 10.5.2

    Hi Everyone,
    Since I have installed Leopard I am having colour management issues with Photoshop CS3 and my Canon i9950 printer.
    My screen is calibrated with a Spyder and I used to ask Photoshop (in 10.4.11) to manage colour when printing and used the Spyder profile. Everything came out as I saw it on screen.
    Now in leopard when I do the same thing everything comes out too yellow on the print. If I ask Photoshop to let the printer manage the colour it is too red. If I use the default colour management (photoshop managing the colour and it choosing the colour space it is better, but still too yellow).
    Photoshop gives the hint to turn off colour management in the printer but there is no option for this and it also said the same thing before of course (when it worked in 10.4.11).
    Any ideas?
    Thanks.

    >It was working perfectly in Tiger with the monitor profile.
    You were lucky.
    the monitor profile is so Photoshop can display your images correctly.
    the working space is Adobe RGB, sRGB, BruceRGB, ect... these are all known color spaces so when the file goes to another computer there is a consistent color space for reference. If you use your monitor profile as a working space then nobody else knows what is going on with your file.
    when you print you need to use the printer profile for the type of paper you are printing on this is supplied by the printer manufacturer. you can also have custom profiles made.
    you need to read up on color management:
    http://www.gballard.net/psd.html
    http://digitaldog.net/

  • Issue with Fireworks CS3

    I'm experiencing an annoying issue with Fireworks CS3.
    Immediate use of the application is not available after its opened.
    Meaning, clicking on the application menu more than once returns a
    message in the title bar, &quot;Adobe Fireworks CS3 (Not
    Responding)&quot;, and it hangs there at least 30 seconds or so
    until it's ready to be used. And this is even having Windows Aero
    disabled.
    I recently formatted my computer and have minimal programs
    installed. Here's an overview:
    Windows Vista Business x64
    Intel Core2 Quad CPU @2.40 GHz, 2400 MHz, 4 Cores
    8 GB Memory - DDR2
    500G 8M 7200 SATA II Hard Drives (x2)
    GeForce 8600GT 256M video card
    Office 2007 Ultimate (complete install)
    CS3 Web Standard (less Contribute and Version Cue)
    Acrobat Pro 8.1.1
    iTunes 7.6
    QuickTime 7
    If anyone has an idea why this may be happening, please let
    me know.
    Thanks,
    Mike

    ~Michael wrote:
    > I disabled Windows Firewall and nothing changed. Prior
    to formatting I did have
    > Norton AV 2008 installed, and still experienced the same
    issue with Fireworks.
    > And yes, I'm the administrator on the computer and UAC
    is off. I forgot to
    > mention, I'm only experiencing this issue with
    Fireworks. Everything else opens
    > blazingly fast. Michael
    Clutching at straws here but my last bit of advice would be
    to make sure
    you have the latest NVidia drivers for your graphics card.
    Other than
    that I don't know what else to tell you except that Fireworks
    works
    great for me which of course doesn't help. Maybe a call to
    support would
    get you some more pointed advice are you certainly don't seem
    to be
    alone with this issue although it doesn't affect every Vista
    user.
    FWIW, before I got this machine last July (2007) I ran CS3 on
    an aging
    2001 AMD Athlon 1 GHz machine with 1 GB or Ram (running XP
    Pro). While
    no CS3 (or any other) application was blazingly fast,
    Fireworks was no
    worse than any other. The worst offender for me was
    Illustrator.
    There has to be a combination of hardware, drivers or memory
    resident
    apps that makes it worse for Fireworks somehow but these
    kinds of issues
    are the hadest to troubleshoot. That's why I think getting a
    hold of
    Adobe's official support may help as I hope they are
    gathering data on
    this to hopefully pinpoint a cause for the problem and may
    have some
    more meaningful advice than I or other users here may be able
    to give.
    Stéphane Bergeron
    reach : connect : communicate
    http://www.webfocusdesign.com
    blog : tutorials : articles : gallery
    http://www.pixelyzed.com

  • Previous computer crashed without my Adobe CS3 Design Standard for Macintosh application being uninstalled, I'm having issues with the CS3 on my new Macintosh laptop. Please help!

    Since the previous computer crashed without my Adobe CS3 Design Standard for Macintosh applications being uninstalled, I'm having issues with the CS3 on my new Macintosh laptop. Please help, I've tried using the online "contact us" with no success, unable to get in contact with a tech support agent that can assist me.

    CS3 is too old to run on a new Macintosh laptop, sorry. You'll have to purchase CS6 or a Creative Cloud subscription.

  • CVS / subversion with dreamweaver CS3

    Hello,
    I am working on a few projects that require code versioning
    and I have been told by many people that CVS is the way to go.
    Is there a way to integrate CVS with dreamweaver CS3?
    Has dreamweaver CS3 native support for any repository system
    type??
    There are some free gpl plugin/add-on for CVS/ repository
    support?
    Thanks a lot

    "FMorales_at4" <[email protected]> wrote in
    message
    news:fgvcau$g2e$[email protected]..
    > Hello,
    >
    > I am working on a few projects that require code
    versioning and I have
    > been
    > told by many people that CVS is the way to go.
    Some may say SubVersioN is the way to go, it's been
    redesigned to address
    some shortcomings in CVS
    > Is there a way to integrate CVS with dreamweaver CS3?
    http://www.grafxsoftware.com/product.php?id=22
    > Has dreamweaver CS3 native support for any repository
    system type??
    Dreamweaver has native support for Microsoft Visual
    SourceSaFe
    Dreamweaver can use WebDAV repositories natively, and you can
    use apache as
    a WebDAV frontent for SubVersion.
    > There are some free gpl plugin/add-on for CVS/
    repository support?
    http://sourceforge.net/projects/subweaver/
    > Thanks a lot
    Welcome

  • Contribute CS4 with Dreamweaver CS3

    I have a number of sites created with Dreamweaver CS3, and
    intend to provide update access with Contribute - but Contribute
    CS3 is now hard to get hold of. Will these sites work with
    Contribute CS4 if developed with DW CS3: general functions such as
    editable sections, checkin/checkout. I don't want to upgrade my
    systems yet to CS4.
    CS4 suite has much higher system requirement than CS3 - which
    probably means a hardware upgrade first - so want to avoid this.
    Can't find any info on this anywhere.
    Thanks

    I just read on the adobe website that:
    "Contribute CS4 works with Adobe Dreamweaver® CS4
    templates"
    Does that mean it wont work with Dreamweaver CS3 templates?

  • Issue with Dreamweaver - Server Busy error message

    Hi,
    Whenever i open Dreamweaver, i see "Server Busy" error message. I am unable to use the application due to this. Can you please help resolve this right away?
    Regards,
    Raghu

    I am using Dreamweaver CC. This problem started after a recent update I think.
    Operating system - Windows 8.1 Professional
    Basic system config in case you need it - 8 GB RAM, 2 TB HDD, Intel i7
    Regards,
    Raghu
    Date: Fri, 20 Dec 2013 11:18:44 -0800
    From: [email protected]
    To: [email protected]
    Subject: Issue with Dreamweaver - Server Busy error message
        Re: Issue with Dreamweaver - Server Busy error message
        created by Nancy O. in Dreamweaver support forum - View the full discussion
    Which ver and build # of DW?
    Which operating System?
    Do you use a testing server?
    If so, which one and is it running?
       Nancy O.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5948026#5948026
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5948026#5948026
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5948026#5948026. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Dreamweaver support forum at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Fireworks CS4 compatible with Dreamweaver CS3

    Is there any issues with developing pop ups in Fireworks CS4
    and importing into Dreamweaver CS3? Thanks

    > I have no programming (HTML) experience
    DW will be a very tough learning curve for you in this case.
    Are you sure
    it's the right choice?
    > I was reading where DW CS3 doesn't do popups.
    Where? Surely you are misinterpreting that - it has Spry
    menus built in,
    but a much better choice even than those exists.
    Check the uberlink and MacFly tutorials at PVII -
    http://www.projectseven.com/
    and the Navbar tutorial/articles at Thierry's place
    http://tjkdesign.com/articles/dropdown/
    Or this one (more recent article):
    http://tjkdesign.com/articles/Pure_CSS_Dropdown_Menus.asp
    Or to get it done fast, go here -
    http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm
    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
    ==================
    "BRF64" <[email protected]> wrote in message
    news:ge7gfg$p2s$[email protected]..
    > Murry,
    >
    > Thanks for responding. I was reading where DW CS3
    doesn't do popups. The
    > result I would like would be to have a popup occur from
    a line of text (no
    > graphic). I have no programming (HTML) experience and I
    am not sure how to
    > achieve that result. Any recommendations would be
    appreciated.
    >

  • Color management issues with Flash CS3, please help?

    Hello everyone.
    I am having issues with color from a Jpeg image produced in Photoshop CS4
    after importing onto the stage in Flash CS3. The color in Flash changes the image to a lighter less saturated state. Yuk.
    Here is a link to a screen capture to show you what's happening (for a bigger view):
    http://www.rudytorres.com/color/weirdcolor.png
    As you can see the front image is the Photoshop image showing the sRGB color profile embedded but Flash (behind) changes that color.
    This client is quite picky and she will notice this difference.
    If any one can help, please.
    - Rudy
    P.S. It's a button somewhere, Right?

    Dougfly,
    Only an hour wasted? Lucky you. Color is an incredibly complex subject. First, forget matching anything to the small LCD on the back of your camera. That's there as a basic guide and is affected by the internal jpg algorithm of your camera.
    2nd, you're not really takeing a color photo with your digital camera, but three separate B&W images in a mosaic pattern, exposed thru separate red, green and blue filters. Actual color doesn't happen until that matrix is demosaiced in either your raw converter, or the in-camera processor (which relies heavily on camera settings, saturation, contrast, mode, etc.)
    Having said the above, you can still get very good, predictable results in your workflow. I have a few color management articles on my website that you might find very helpful. Check out the Introduction to Color Management and Monitor and Printer Profiling. In my opinion, a monitor calibration device is the minimum entry fee if you want decent color.
    http://www.dinagraphics.com/color_management.php
    Lou

  • Technical issue with DW CS3

    I just installed Dreamweaver CS3 yesterday, and there seems
    to be a device conflict with my USB mouse. When DW has focus, I am
    unable to double-click, the mouse is VERY sluggish in response, and
    if I try to double-click, it gives me that annoying scroll arrow
    that I've already disabled.
    What could be causing this?

    Are you asking if the application is running on virtual
    memory, or if my OS settings are running virtual memory?
    What specifically should I check?

  • Can someone with Dreamweaver cs3 open a cs5 file?

    Hi:
    Work just upgraded me to DreamWeaver CS5 but I work on files that I share with another web author and they have DreamWeaver CS3.  If I edit a file and save it in DreamWeaver 5, will the other author be able to open the file in DreamWeaver CS3?  I have not loaded my new software at work yet because I was afraid there might be a problem.    This is our work intranet so I need to be careful I don't screw the site up. We save our files with the extension .shtml.
    Thanks
    Jeff

    Yes, provided you use DW's Check In/Check Out feature so that you don't overwrite each other's work.
    There are no proprietary file formats like Microsoft Office.
    HTML code is HTML code and can be read by any human being or text editor.
    The only caveats are if you use emerging technologies such as HTML5. CS5 can handle that but CS3 will struggle.

Maybe you are looking for

  • How to install Windows 8 on Mid 09 Macbook Pro (10.8.3)

    So i loved the new Windows 8, and even had it installed before bootcamp supported windows 8 on my new iMac, i waited to buy a bigger hard drive and more ram for my mid 09 Macbook Pro.  The day i bought the new hardware, Apple released 10.8.3, and an

  • Lumia 800 Keyboard Problem - Is this Normal?

    When using some apps (Facebook, for example) the virtual keyboard becomes partially unresponsive - pressing any key in the bottom two rows is almost impossible. Also, in the messaging app, the 'send' button is inactive when the keyboard is visible. I

  • Automatic delivery block to be reduced - Credit management?

    Hi All, I was asked by a user to change automatic delivery block from 60 days to 30 days for a given credit control area. On further talks with the user, she gave an example where a customer had overdues for more than 60 days and hence went on a bloc

  • Planned Vs Other Key Figues

    Hi, I have the following requirement: User Selections: 0CALMONTH Plan Value   Keyfig1    keyfig2   keyfig3... The user enters the plan value for the month he choses. When he enters the plan values the kefig1 should be diplayed for the month 0CALMONTH

  • How to sync mail on mac and ipad?

    Is there a way to sync all of my mail on both of my devices? It used to work ok but now I'll open mail on my ipad and it shows all the new messages but when I open mail on my mac it only shows what it had before, no new ones. Also works vice versa, I