Dreamweaver 8 Bugs in Windows Vista

Thought i would start this thread because i am having mucho
problemes with DW8 in Windows Vista Business Edition. I also know
that at this time DW8 is not supported in Vista, hope this helps
the developers:
Crashes intermittently when embedding
Flash movies in a page, from the button at the top
Crashes sometimes when on open file
dialog box
Cannot update to 8.0.1 - seems to be
working on installation but doesnt update application
Cannot update to 8.0.2 - seems to be
working on installation but doesnt update application

Let me ask you a hypothetical question. How much of new
product development
would you steal to work on such a thing?
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
==================
"Jim Wells" <[email protected]> wrote in
message
news:eqi960$s7o$[email protected]..
>
quote:
> >Out of interest, why did you choose to upgrade to
Vista at this point in
> >time i.e. be an early adopter?
>
> Always a mystery why people do
>
> Always a mystery to me why a company of this site cant
release a patch the
> day
> Vista comes out. Its not like they couldnt get their
hands on a beta copy
> and
> be up to speed on this.
>
>
>

Similar Messages

  • JRE bug or Windows Vista error?

    Hi everybody. I have a problem with the report generation. I'm using HSQLDB 1.8 as dbms. I am using Hibernate too but I am using a JDBC connection for the reports. I designed some reports with iReport 4.0. I have two types of reports in my application, the first type prints invoices and the second type prints sales reports.
    For the second type I need to include dates (using this notation '2011-1-1') in the WHERE statement. This kind of reports produces an exception but not the first type. This is the message when I request a sales report (I deleted some lines):
    net.sf.jasperreports.engine.JRException: Error executing SQL statement for : salescake
    at net.sf.jasperreports.engine.query.JRJdbcQueryExecu ter.create Datasource(JRJdbcQueryExecuter.java:169)
    at net.sf.jasperreports.engine.fill.JRFillDataset.cre ateQueryDa tasource(JRFillDataset.java:684)
    at net.sf.jasperreports.engine.fill.JRFillDataset.ini tDatasourc e(JRFillDataset.java:605)
    at net.sf.jasperreports.engine.fill.JRBaseFiller.setP arameters( JRBaseFiller.java:1281)
    at net.sf.jasperreports.engine.fill.JRBaseFiller.fill (JRBaseFil ler.java:901)
    at net.sf.jasperreports.engine.fill.JRBaseFiller.fill (JRBaseFil ler.java:845)
    at net.sf.jasperreports.engine.fill.JRFiller.fillRepo rt(JRFille r.java:58)
    at net.sf.jasperreports.engine.JasperFillManager.fill Report(Jas perFillManager.java:417)
    at net.sf.jasperreports.engine.JasperFillManager.fill Report(Jas perFillManager.java:247)
    at com.reports.SalesByCustomerReport.showReport(Sales ByCustomer Report.java:24)
    at com.presentation.SalesByCustomerInternalFrame.view InvoiceBut tonActionPerformed(SalesByCustomerInternalFrame.ja va:231)
    at com.presentation.SalesByCustomerInternalFrame.acce ss$100(Sal esByCustomerInternalFrame.java:17)
    at com.presentation.SalesByCustomerInternalFrame$2.ac tionPerfor med(SalesByCustomerInternalFrame.java:87)
    at javax.swing.AbstractButton.fireActionPerformed(Unk nown Source)
    at javax.swing.AbstractButton$Handler.actionPerformed (Unknown Source)
    Caused by: java.sql.SQLException: Wrong data type: java.lang.IllegalArgumentException in statement [select I.INVOICE_NUMBER, I.SALE_DATE,I.CONSIGNEE,I.DESTINATION_COUNTRY,I.DE LIVERY_CON DITIONS,P.TARIFF_ENTRY,P.LOT,P.DRY_NET_WEIGHT,I.TO TAL
    from INVOICE I, PRODUCT P
    where I.INVOICE_ID=P.INVOICE_ID and I.CONSIGNEE='CONSORCIO MINERO S. A.' and I.SALE_DATE>='2011-1-20' and I.SALE_DATE<='2011-14-20' ]
    at org.hsqldb.jdbc.Util.throwError(Unknown Source)
    at org.hsqldb.jdbc.jdbcPreparedStatement.executeQuery (Unknown Source)
    at net.sf.jasperreports.engine.query.JRJdbcQueryExecu ter.create Datasource(JRJdbcQueryExecuter.java:163)
    ... 48 more
    I tested this query in the HSQLDB utility and it is correct. I am thinking that the problem could be the JRE, I am using this one:
    C:\Program Files\Java\jre6\bin>java -version
    java version "1.6.0_24"
    Java(TM) SE Runtime Environment (build 1.6.0_24-b07)
    Java HotSpot(TM) Client VM (build 19.1-b02, mixed mode, sharing)
    As you can see, my Windows Vista pc can't recognize the java command so I have to call it specifically from the directory where it is located. Maybe the problem is that I am using Windows Vista (I know it sucks but I had no time to change it).
    When I copy my program to my Windows XP computer it works fine. All the reports are shown correctly. This pc has this JRE:
    C:\Documents and Settings\Manuel & Juancho>java -version
    java version "1.6.0_01"
    Java(TM) SE Runtime Environment (build 1.6.0_01-b06)
    Java HotSpot(TM) Client VM (build 1.6.0_01-b06, mixed mode, sharing)
    There is no problem to recognize the java command.
    Let me tell you something. Is it possible that HSQLDB or iReport can delete the database content? It happened to me. I was designing my last report and a "No pages in document" message was shown. I thought that I was wrong. Finally I checked the database and there was no data! What is the problem?
    Please help me.
    Thanks in advance.

    853741 wrote:
    For the second type I need to include dates (using this notation '2011-1-1') No, you should not be using any notation. Presumably it's a DATE or DATETIME column. So you use a PreparedStatement's setDate() or setTimestamp() method.
    in the WHERE statement. This kind of reports produces an exception but not the first type. This is the message when I request a sales report (I deleted some line
    Caused by: java.sql.SQLException: Wrong data type: java.lang.IllegalArgumentExceptionI expect that kind of error would be less likely with PreparedStatements.
    I tested this query in the HSQLDB utility and it is correct. I am thinking that the problem could be the JREAs already pointed out, for something so trivial, it's extremely unlikely that you've uncovered a JRE bug.
    As you can see, my Windows Vista pc can't recognize the java command Because you haven't set up your PATH correctly.

  • Lightroom bugs with Windows Vista

    I'm having difficulties with one of the file navigation controls in LR running under Windows Vista. The control that pops up with the import (choose files) function works fine, but the control that pops up with the add folder or create new library function misbehaves and causes LR to hang.
    I've logged a ticket with Adobe, tried all the standard workarounds (run as administrator, re-create preferences etc.), but to no avail. I think it is a bug.
    Has anyone experienced this? Any solutions out there?

    What I've seen is that if you try to import from a card reader using the LR downloader, you get a list of files on the card and a message saying that they could not be imported. This also apparently damages the LR database because you cannot import even from a folder on the computer until you delete the database and create a new one. It happens in XP compatibility mode for me too. Otherwise, I have had no troubles using LR on my Vista machine. I can import from a card using another program's downloader and then import the folder into LR for editing.

  • Dreamweaver MX 2004 and Windows Vista

    Does anyone know if Dreamweaver MX 2004 will install and run
    on the new Windows Vista?

    Looks like the only thing I can't do is establish a
    connection to a db. I
    get a 405 error with both DWX 2004 and DW8 trial.
    If I manually setup the string in code it will work, but then
    you can't use
    server behaviors.
    Just an FYI
    "Rob" <[email protected]> wrote in message
    news:[email protected]...
    > That's strange, windows mail made that turn out wacked.
    >
    > "Rob" <[email protected]> wrote in message
    > news:[email protected]...
    >> debushman,
    >>
    >> I have been running Sudio MX 2004 on Windows Vista
    Ultimate with no
    >> issues yet.
    >> I have used DW more than the others and mainly in
    code view, but any day
    >> now
    >> I do expect DW to crap on me like a new born.
    >>
    >> Will it work for you? Maybe. Should you do it? Your
    call there. Don't
    >> expect DW
    >> to be fully compatible with Vista until the release
    of DW9.
    >>
    >> If DW is your only tool and MX 2004 is your only
    version then wish you
    >> luck if
    >> you are diving head first into Vista. Hold off
    unless you have multiple
    >> computers
    >> with one as a dedicated dev machine.
    >>
    >> Rob
    >>
    >> "Bill00" <[email protected]> wrote in
    message
    >> news:[email protected]...
    >>> If 8 isn't supported, I'd really doubt that MX
    is going to run well...
    >>>
    >>> --
    >>> Extending Knowledge, Daily
    >>>
    http://www.communityMX.com/
    >>> CommunityMX - Free Resources:
    >>>
    http://www.communitymx.com/free.cfm
    >>>
    >>> No registration req'd for free content
    >>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>> news:[email protected]...
    >>>> Sounds risky to me.
    >>>>
    >>>> --
    >>>> 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
    >>>> ==================
    >>>>
    >>>>
    >>>> "debushman"
    <[email protected]> wrote in message
    >>>> news:[email protected]...
    >>>> > Does anyone know if Dreamweaver MX 2004
    will install and run on the
    >>>> > new
    >>>> > Windows Vista?
    >>>>
    >>>>
    >>>
    >>>
    >>
    >

  • Dreamweaver CS3 Problem on Windows Vista

    Hi Adobe
    Dreamweaver CS3 is a great program and i installed it on my
    Desktop(Windows XP Home, SP0, 120MB RAM, 8GB HD
    I installed the same version at my laptop(Windows Vista Home
    Premium, SP1, 3GB Ram, 320GB HD) and it doesn't work. It starts and
    then it closes automaticly
    Please help me.
    Ty
    Pt

    And by the way, we are all just volunteers here, not Adobe.
    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
    ==================
    "HTMLPT" <[email protected]> wrote in
    message
    news:gjlatd$2mi$[email protected]..
    > Hi Adobe
    >
    >
    > Dreamweaver CS3 is a great program and i installed it on
    my
    > Desktop(Windows XP
    > Home, SP0, 120MB RAM, 8GB HD
    > I installed the same version at my laptop(Windows Vista
    Home Premium, SP1,
    > 3GB
    > Ram, 320GB HD) and it doesn't work. It starts and then
    it closes
    > automaticly
    >
    > Please help me.
    >
    > Ty
    >
    > Pt
    >

  • Dreamweaver CC not supporting Windows Vista but Photoshop CC is?

    Adobe Dreamweaver CC is not supporting Windows Vista, where as Adobe Photoshop CC is? I mean, shouldn't they support the same stuff? Is it because of the build type or something? But this really bothers me. Please let me know if there is a different version of Adobe Deamweaver that I can download, which supports Windows Vista too. Thank you.
    - Murtaza

    Hi Murtaza,
    All CC applications are tested on Windows 7 and above. Please have a look on links below for the tech specs of CC,DW CC and PS CC.
    http://www.adobe.com/in/products/creativecloud/tech-specs.html
    http://www.adobe.com/in/products/photoshop/tech-specs.html
    http://www.adobe.com/in/products/dreamweaver/tech-specs.html
    Thanks
    Bhawna Gupta

  • How I fixed  bug with Windows VISTA & iTunes 7.3 software...

    Okay guys, for a few weeks I've been posting about how my Windows Vista will not work with the iTunes software 7.3.
    Many of you with Vista also have posted the same problems over and over and over with no real answers available to us.
    Well, I have fixed my problem.
    The last straw was last night when I desperately needed to burn something and obviously I couldn't because my CD/DVD Drive was "Missing".
    All this morning I backed up all my files on my computer and reformatted my computer by choosing to set it back to factory settings. After 60 min. of this, after the 3 prior hours, my computer appeared brand new.
    And sure enough, my CD/DVD Drive was there. Next, I went to my Roxio Easy CD Creator and sure enough, it also recognized my Drive as well. I had it burn a file and it worked.
    Next, I went to an older Apple Downloads page, and Downloaded iTunes 6.0. Not anything but the lowest 6.
    http://www.oldapps.com/itunes.htm
    And guess what, it works as well with my Vista.
    I loaded a CD Soundtrack, pulled a few tracks into a separate folder then burned them and checked them.
    So, this is one option for you guys out there to try that gets an A+ from me. Yes, it has literally taken me all day and night, but everything is back to working order and I am finally happy!
    Anything to get rid of that nasty Version 7, anything!
    Kathy
    www.katchvideo.com

    bumped to help others just coming here...

  • Dreamweaver CS3 vs. Windows Vista

    SO! I am almost thoroughly disgusted with this program. I am
    in an online based web design class for college and now that we are
    within the last few weeks of class they teacher has asked us to
    install a free 30-day trial of Dreamweaver CS3 for out final
    project. I downloaded it the first time with no problems, ran the
    installation process, then when I went to open the program itself
    it gave me this:
    "You cannot use this product at this time. You must repair
    the problem by uninstalling and then reinstalling this product or
    contacting your IT administrator or Adobe customer support for
    help."
    After you click "ok" on the prompt, Dreamweaver still makes
    an attempt to open itself, but once it goes to a blank workspace,
    it shuts itself down completely!
    So I did what it asked, and ran into the same problem again.
    I have already done the command prompt and run as
    administrator with the code that I found on the adobe
    troubleshooting website.
    It would be greatly appreciated if anyone could let me know
    what is going on here.

    So, have you contacted Adobe Customer support? You realise
    these forums are
    user to user, and Adobe employees only drop in now and then.
    That said, there are many people who have your setup running
    smoothly, so
    don't be too disheartened - someone will have a suggestion or
    two which may
    help shortly.
    Brendon
    "purestheart86" <[email protected]> wrote in
    message
    news:fumafd$3r4$[email protected]..
    > SO! I am almost thoroughly disgusted with this program.
    I am in an online
    > based
    > web design class for college and now that we are within
    the last few weeks
    > of
    > class they teacher has asked us to install a free 30-day
    trial of
    > Dreamweaver
    > CS3 for out final project. I downloaded it the first
    time with no
    > problems, ran
    > the installation process, then when I went to open the
    program itself it
    > gave
    > me this:
    >
    > "You cannot use this product at this time. You must
    repair the problem by
    > uninstalling and then reinstalling this product or
    contacting your IT
    > administrator or Adobe customer support for help."
    >
    > After you click "ok" on the prompt, Dreamweaver still
    makes an attempt to
    > open
    > itself, but once it goes to a blank workspace, it shuts
    itself down
    > completely!
    >
    > I have already done the command prompt and run as
    administrator with the
    > code
    > that I found on the adobe troubleshooting website.
    >
    > It would be greatly appreciated if anyone could let me
    know what is going
    > on
    > here.
    >

  • Dreamweaver and Windows Vista Problem

    Hello,
    I ran into a problem with my Dreamweaver - 8 application and
    cannot find a fix. I open up the Dreamweaver application, 2-3
    seconds later, I get the following error message, “A problem
    caused the program to stop working correctly, windows will close
    the program and notify you if a solution is available.” I am
    using Windows Vista and believe the problem is associated with the
    Vista operating system. I am puzzled by the fact that I have been
    using Dreamweaver with Vista and have had no problems up until now.
    I uninstalled & reinstalled Dreamweaver to no avail. I
    restored my computer to an earlier date, and updated Dreamweaver,
    and still have the same problem.
    Any help to resolve this problem would be greatly
    appreciated.
    Steve
    Text
    Text

    Hello Again,
    I finally fixed the problem. I went into my network settings
    and reset my network address. This did the trick, I went back and
    opened up Dreamweaver without any problem.
    Steve

  • Bug with Access connexions with Windows vista Pro SP2

    I wish to use Thinkvantage Access connexions on my Lenovo G550.
    I previously used Acces connexions on Thinkpad and i like this tool.
    I have installed Access connexions but I have troubleshooting beause my computer runs uner Windows vista Pro SP2.
    Is a solution exist to resolve this bug ?

    Hi and welcome to the forum!
    As far as I know, Access Connections is only compatible with ThinkPads and few lenovo 3000 systems, see following from support page: http://download.lenovo.com/ibmdl/pub/pc/pccbbs/mobiles/85cv28ww.txt
    Hope this answers your question.
    Maliha (I don't work for lenovo)
    ThinkPads:- T400[Win 7], T60[Win 7], IBM 240[Win XP]
    IdeaPad: U350
    Apple:- Macbook Air [Snow Leopard]
    Did someone help you today? Compliment them with a Kudos!
    Was your question answered today? Mark it as an Accepted Solution! 
      Lenovo Deutsche Community     Lenovo Comunidad en Español 
    Visit my YouTube Channel

  • Is Dreamweaver compatible with Windows Vista?

    No matter what I do I can't insert text into Dreamweaver. I'm
    beginning to think Dreamweaver is not compatible with Windows
    Vista. I can type text into it but I can't write a document in
    another program then insert it into a DW page. It just won't do
    anything at all. I've watched about 4 videos on this and read many
    things on Dreamweaver help and can't find it. I think it might be
    easier to learn html than Dreamweaver. I can't find any good
    Dreamweaver tutorials, even in Lynda.com. They all teach as if you
    already know most of the program.

    Where are you copying the text FROM? Which app?
    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
    ==================
    "bob e kimball" <[email protected]> wrote in
    message
    news:ginjdm$q8g$[email protected]..
    > No matter what I do I can't insert text into
    Dreamweaver. I'm beginning to
    > think Dreamweaver is not compatible with Windows Vista.
    I can type text
    > into it
    > but I can't write a document in another program then
    insert it into a DW
    > page.
    > It just won't do anything at all. I've watched about 4
    videos on this and
    > read
    > many things on Dreamweaver help and can't find it. I
    think it might be
    > easier
    > to learn html than Dreamweaver. I can't find any good
    Dreamweaver
    > tutorials,
    > even in Lynda.com. They all teach as if you already know
    most of the
    > program.
    >

  • Dreamweaver CS3 hangs on "initializing files" in Windows Vista Home Premium

    Hi,
    Anybody else encountering this issue? I noticed this7 error
    in Windows Vista Home Premium. When you launch Dreamweaver CS3, it
    opens the splash screen, displays “initializing files”
    and thats it.
    Necessary Troubleshooting steps we’re already done to
    attempt to launch/fix the program but to no avails.
    seems the problem happens on acer computers with 4 gigs of
    ram.
    You can check it from this
    Thread
    Thanks! I hope someone from engineering can take a look at
    this issue!

    A little more on this topic with solution ...
    http://sidapolinario.unicpinoy.com/2008/05/09/dreamweaver-cs3-some-emmerging-issues/
    Regards.
    Patrick.

  • Bug when getting file path in non-english Windows Vista

    Hello,
    I'm getting an error when trying to get the file path of a video in a non-english Windows Vista... The code is:
    var file = "video.flv"
    var filePath = air.File.applicationStorageDirectory.resolvePath(file);
    filePath = filePath.nativePath;
    The filePath variable is used later by a flash video player to load the video file..
    In the brazilian Windows Vista the path of the StorageDirectory would be something like "C:\Usuários\(user name)\..." but if I run this script it returns "C:\Users\(user name)\..." as the native path.
    The problem seems to be in the "nativePath" function, cause I'm able to copy files to the app-storage folder using the "air.File.appicationStorageDirectory.resolvePath()" method without any problems.
    I could insert a small code which substitutes "Users" with "Usuários" but then it wouldn't work on an english Vista...
    Any ideas on this? Is there a way to check the language of the operating system in Air so to act accordingly?
    Thanks for any help!

    Hello,
    has anybody found a solution?
    Testcase: SQL Developer 3.1 on a German XP with default NLS Settings
    CREATE TABLE "TEST_TABLE"
           "NUM" NUMBER
          ,"VCH"  VARCHAR2(10 BYTE)
        ) ;Test file test_insert.dsv
    num;vch
    1;KL
    1,5;tz
    12345,45;ooImporting using the wizard inserts the first row correctly, for the others I get
    SET DEFINE OFF
    --Einfügen für Zeilen  1  bis  3  nicht erfolgreich
    --ORA-01722: invalid number
    --Zeile 2
    INSERT INTO TEST_TABLE (NUM, VCH) VALUES (1.5,'tz');
    --Zeile 3
    INSERT INTO TEST_TABLE (NUM, VCH) VALUES (12345.45,'oo');Beside the wrong umlaut in the message the insert statement itself is correct, because you cannot use the german decimal separator "," in the script. The bug is, that it should use the same NLS settings for generating and running the script.
    Regards
    Marcus

  • CS5 Dreamweaver on Windows Vista. Will not open at all. Please advise

    CS5 Dreamweaver on Windows Vista. Will not open at all. Been fine until now. No recent updates on computer, other Creative Suite software all work fine too.
    I have the Student package installation so I am unable to uninstall then re-install as one off set up. Or is it possible to get the re-installation on a student package, and if so will I have to re-install everything?
    have been using Dreamweaver only two months ago and now it is will not open. I do not get anything on the screen, no egg-timer or anything. Tried to look up online to solve problem, but no joy.
    Please advise....
    James

    When DW starts acting weird, the first thing to try is Deleting Corrupted Cache in DW
    http://forums.adobe.com/thread/494811
    If that doesn't help, try Restore Preferences.  Note: your work space, custom settings & 3rd party extensions will be wiped out by this.  So make backups of anything you need to keep.
    http://helpx.adobe.com/dreamweaver/kb/restore-preferences-dreamweaver-cs4-cs5.html
    If all else fails, use the CS Cleaner Tools below followed by a software re-install.
    http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html
    Good luck!
    Nancy O.

  • I have Dreamweaver CS3 on a PC with Windows Vista SP2. The program recently began to hang when opening previously created HTML files. How do I fix this?

    I have Dreamweaver CS3 on a PC with Windows Vista SP2. The program recently began to hang when opening previously created HTML files. How do I fix this?

    Hi rmarchione,
    Can you try restoring preferences and let us know if it helps?
    Restore preferences | Dreamweaver CS4, CS5, CS5.5, CS6
    Thanks,
    Preran

Maybe you are looking for