Dreamweaver 8 work area redraw problem

Hi all, I'm having severe problems with screen refreshes in
the work area - dreamweaver doesn't seem to be able to redraw the
screen. I've no idea what is going on to try and resolve the
problem and have tried completely removing dreamweaver and doing a
'clean' reinstall to no avail.
When first started up dreamwaver draws the menus, property
bars and tool palettes ok but the Windows XP desktop shows in the
workarea. pages can be displayed and worked on alright in the split
window view, but neither the code or design views display
correctly, and CSS style sheets cannot be displayed for editing (a
window appears, but you can't see anything in it - or a split
code/design window style is displayed). dragging a document window
around the workarea leaves a trail of 'echos' of the window in the
work area.
This is a complete mystery to me - have tried installing on
two different machines (both WinXP SP2) and applying available
updates to DW8... similar problems on both machines.
Anyone got any ideas?

Please provide a link (URL).....
Regards
John Waller

Similar Messages

  • Work Area Wizard problem

    The 'Workarea Wizard' appears disabled in the Welcome screen of the Repository Object Navigator and in the Tools menu into this app.
    The help mention something about a WorkArea privilege that I am not sure the Repsitory Owner has:
    Note: You must have the Workareas repository privilege before you can perform this operation. The repository owner can assign this privilege to you.This are the system privileges of the Repository Owner:
    SQL> select privilege,admin_option from user_sys_privs;
    PRIVILEGE                                ADM
    CREATE ANY SYNONYM                       NO
    CREATE PROCEDURE                         NO
    CREATE SEQUENCE                          NO
    CREATE SYNONYM                           NO
    CREATE TABLE                             NO
    DROP ANY SYNONYM                         NO
    UNLIMITED TABLESPACE                     NOAny idea about this?

    Ulises,
    You need to enable Versioning. Do this by starting the Repository Administration Utility (RAU) as the repository owner. Select Options --> Enable Version Support.
    Once enabled, you cannot disable version support but you will be able to manage Work Areas.
    Hope this helps...
    J.T.

  • Problem in modifying the code using work area concept

    Hi,
    I am working on a code in which i am on the code in which i am using the modify statement but it is not giving the right output.
    here's d code:-
    LOOP AT T_ITPO5 INTO W_ITPO5.
            LOOP AT T_ITPO4 INTO W_ITPO4 WHERE AUFNR = W_ITPO5-AUFNR.
           LOOP AT T_ITPO4 INTO W_ITPO4 FROM WV_INDEX.
             IF W_ITPO4-AUFNR EQ W_ITPO5-AUFNR.
             IF ITPO4-NTGEW <> 0 .
                CALL FUNCTION 'ZGET_ITEM_WEIGHT'
                  EXPORTING
                    P_BUID   = W_ITPO4-WERKS
                    P_ITEMID = W_ITPO4-MATNR
                    P_QTY    = 1
                    P_UOM    = W_ITPO4-MEINS
                    P_UOM1   = 'KG'
                  IMPORTING
                    P_RETVAL = W_ITPO4-WTKG.
                TOTWT1 = W_ITPO4-WTKG * W_ITPO4-MENGE.
             IF W_ITPO4-BWART = '261'.
              W_ITPO5-I_QTY = W_ITPO5-I_QTY + TOTWT1.
             ELSEIF W_ITPO4-BWART = '101' OR W_ITPO4-BWART = '531'.
              W_ITPO5-I_QTY = W_ITPO5-I_QTY - TOTWT1.
             ENDIF.
           ENDLOOP.
             MODIFY T_ITPO5 INDEX SY-TABIX FROM W_ITPO5.
           MODIFY T_ITPO5 FROM W_ITPO5 TRANSPORTING AUFNR.
       ENDLOOP.
         WRITE: / 'PRD.NO       ITEM DESCRIPTION                               WIP(KGS)'.
        ULINE.
        LOOP AT T_ITPO5 INTO W_ITPO5.
          READ TABLE T_ITPO1 INTO W_ITPO1 WITH KEY AUFNR = W_ITPO5-AUFNR.
          SELECT SINGLE MAKTG FROM MAKT INTO W_ITPO5-ITEMDESC WHERE MATNR = W_ITPO1-MATNR.
          if sy-subrc = 0 .
          WRITE: / W_ITPO5-AUFNR,W_ITPO5-ITEMDESC,W_ITPO5-I_QTY.
          TOT_QTY = TOT_QTY + W_ITPO5-I_QTY.
          else.
          write 'Unsuccessful'.
          endif.
        ENDLOOP.
        ULINE.
        FORMAT COLOR 3.
        WRITE: / 'GTOTAL',55 TOT_QTY.
        FORMAT COLOR OFF.
    plzz provide me guidelines to solve this problem.

    here's d code;-
    TYPES: BEGIN OF ITPO1,
           AUFNR TYPE AFPO-AUFNR,      "Order Number
           PSMNG TYPE AFPO-PSMNG,      "Order item quantity
           WEMNG TYPE AFPO-WEMNG,      "Quantity of goods received for the order item
           DWERK TYPE AFPO-DWERK,      "Plant
           MATNR LIKE AFPO-MATNR,      "Item Id
           END OF ITPO1.
    DECLARATION FOR AUFM TABLE
    TYPES: BEGIN OF ITPO4,
           AUFNR TYPE AUFM-AUFNR,      "Order Number
           BWART TYPE AUFM-BWART,      "Movement Type (Inventory Management)
           MENGE TYPE AUFM-MENGE,      "Quantity
           MEINS TYPE AUFM-MEINS,      "Base Unit of Measure
           BLDAT TYPE AUFM-BLDAT,      "Document Date in Document
           WERKS TYPE AUFM-WERKS,      "Plant
           MATNR TYPE AUFM-MATNR,      "Material Number
           NTGEW TYPE MARA-NTGEW,      "Net Weight
           WTKG  TYPE MARA-NTGEW,
           END OF ITPO4,
           BEGIN OF ITPO5 ,
           AUFNR TYPE AUFM-AUFNR,
           MENGE TYPE AUFM-MENGE,
           I_QTY TYPE AUFM-MENGE,
           ITEMDESC LIKE MAKT-MAKTG,
           END OF ITPO5.
        WORK AREA AND INTERNAL TABLE DECLARATION
    DATA : W_ITPO1 TYPE ITPO1,
           W_ITPO4 TYPE ITPO4,
           W_ITPO5 TYPE ITPO5,
           T_ITPO1 TYPE ITPO1 OCCURS 0,
           T_ITPO4 TYPE ITPO4 OCCURS 0,
           T_ITPO5 TYPE ITPO5 OCCURS 0.
    VARIABLES
    DATA: TOTWT1 LIKE AUFM-MENGE,
          TOT_QTY LIKE AUFM-MENGE.
    PARAMETERS N SELECT-OPTIONS
    PARAMETERS: PLANT LIKE AFPO-DWERK.
    SELECT-OPTIONS: PO_DATE FOR AFKO-GSTRP.
        LOOP AT T_ITPO5 INTO W_ITPO5.
            LOOP AT T_ITPO4 INTO W_ITPO4 WHERE AUFNR = W_ITPO5-AUFNR.
                CALL FUNCTION 'ZGET_ITEM_WEIGHT'
                  EXPORTING
                    P_BUID   = W_ITPO4-WERKS
                    P_ITEMID = W_ITPO4-MATNR
                    P_QTY    = 1
                    P_UOM    = W_ITPO4-MEINS
                    P_UOM1   = 'KG'
                  IMPORTING
                    P_RETVAL = W_ITPO4-WTKG.
                TOTWT1 = W_ITPO4-WTKG * W_ITPO4-MENGE.
             IF W_ITPO4-BWART = '261'.
              W_ITPO5-I_QTY = W_ITPO5-I_QTY + TOTWT1.
             ELSEIF W_ITPO4-BWART = '101' OR W_ITPO4-BWART = '531'.
              W_ITPO5-I_QTY = W_ITPO5-I_QTY - TOTWT1.
             ENDIF.
           ENDLOOP.
             MODIFY T_ITPO5 INDEX SY-TABIX FROM W_ITPO5.
           MODIFY T_ITPO5 FROM W_ITPO5 TRANSPORTING AUFNR.
       ENDLOOP.
         WRITE: / 'PRD.NO       ITEM DESCRIPTION                               WIP(KGS)'.
        ULINE.
        LOOP AT T_ITPO5 INTO W_ITPO5.
          READ TABLE T_ITPO1 INTO W_ITPO1 WITH KEY AUFNR = W_ITPO5-AUFNR.
          SELECT SINGLE MAKTG FROM MAKT INTO W_ITPO5-ITEMDESC WHERE MATNR = W_ITPO1-MATNR.
          if sy-subrc = 0 .
          WRITE: / W_ITPO5-AUFNR,W_ITPO5-ITEMDESC,W_ITPO5-I_QTY.
          TOT_QTY = TOT_QTY + W_ITPO5-I_QTY.
          else.
          write 'Unsuccessful'.
          endif.
        ENDLOOP.
        ULINE.
        FORMAT COLOR 3.
        WRITE: / 'GTOTAL',55 TOT_QTY.
        FORMAT COLOR OFF.
    I want to have output that the production order is displayed along with the deficit quantity. but using this concept it shows only production order no. and qty 0.

  • Problem in Printing the work area

    Hi Everybody,
    I'm working in upgrade project.
    in 4.7 version, directly trying to print the work area and assign to some other fields.
    Eg: write: Mara.
    text = mara.
    but in 6.0, its not allowing to assign directly like this.
    Plz help me urgently. B'coz, we struck in middle.
    Thanks in advance.
    Regards,
    JaganMohan.

    Hi,
    basically the problem might be in the ecc 6.0 for the attributes of the program where u r writing it might be u checked the unicode check box if it so remove it and then try or else it is proiblem with the unicode in the ecc 6.0 system where u r working
    plzz reward if it is usefull
    plzz dont forget to reward...

  • I am getting problem with internal table & work area declaration.

    I am working with 'makt' table ..with the table makt i need to work with styles attributes ..so i declared like this
    TYPES : BEGIN OF ty_makt,
             matnr TYPE makt-matnr,
             spras TYPE makt-spras,
             maktx TYPE makt-maktx,
             maktg TYPE makt-maktg,
             celltab TYPE lvc_t_styl,
           END OF ty_makt.
    DATA : i_makt TYPE TABLE OF ty_makt.
    DATA : wa_makt TYPE ty_makt .
        But end of program i need to update dbtable "makt"...i am getting problem with internal table & work area declaration.
    i think makt table fields mapping and internal table/work area mapping is not correct. so please help me to get out from this.

    Hi Nagasankar,
    TYPES : BEGIN OF TY_MATNR,
                  MATNR TYPE MAKT-MATNR,
                  SPRAS TYPE MAKT-SPRAS,
                  MAKTX TYPE MAKT-MAKTX,
                  MAKTX TYPE MAKT-MAKTG,
                  CELLTAB TYPE LVC_T_STYL,  " Its Working perfectly fine..
                 END OF TY_MAKT.
    DATA: IT_MAKT TYPE STANDARD TABLE OF TY_MAKT,
              WA_MAKT TYPE TY_MAKT.
    Its working perfectly fine. if still you are facing any issue post your complete code.
    Thanks,
    Sandeep

  • My Mac suddenly started getting a pop up message saying "There was a problem conecting to the server. URLs with the type "file" are not supported." My internet is working fine,no problem connecting. I just keep getting this message which I click off .

    My Mac suddenly started getting a pop up message saying "There was a problem conecting to the server. URLs with the type "file" are not supported." My internet is working fine,no problem connecting. I just keep getting this message which I click off and continue working.

    Open the Time Machine pane in System Preferences. If it shows that Time Machine is ON, click the padlock icon in the lower left corner, if necessary, to unlock it. Scroll to the bottom of the list of backup drives and click Add or Remove Backup Disk. Remove all the disks, then add them back. Quit System Preferences. Test.

  • Original Cisco GLC-GE-100FX gbics are not working in WS-C3560CG-8PC-S while Third-Party gbics work without any problems

    Hi all,
    i have a gbic problem with my WS-C3560CG-8PC-S.
    My original 100FX gbics are not working
    Mar 30 01:28:41.575: %PHY-4-SFP_NOT_SUPPORTED: The SFP in Gi0/10 is not supported
    Mar 30 01:28:41.575: %PM-4-ERR_DISABLE: gbic-invalid error detected on Gi0/10, putting Gi0/10 in err-disable state
    100FX Third-Party Gbics are working without any problems.
    NAME: "GigabitEthernet0/9", DESCR: "100BaseFX-FE SFP"
    PID: Unspecified       , VID:      , SN: AFFxxxxx
    What can i do?
    I tried different firmware versions (12.2 and 15.2(1)E3)
    I also tried the "service unsupported-transceiver" command.
    It still does not work with 8 Switches and 16 original gbics :(

    GLC-GE-100FX and GLC-T is not supported as documented in the 3560C Data Sheet.
    You could try contacting your Cisco SE/AM and request for a Product Enhancement Request (PER).

  • Adobe aftereffects is not working on os x maverics all updates...... is dis soft. will work on the new os x yosemite.??  y apple is nt working on dis problem wen users are facing problems with new os x .....

    Adobe aftereffects is not working on os x maverics all updates...... is dis soft. will work on the new os x yosemite.??  y apple is nt working on dis problem wen users are facing problems with new os x .....

    I suggest you contact Adobe tech support or their Mac forums for assistance.

  • Apple are working on the problem apparently..

    Ok, so my replacement PB arrived this morning.
    Same screen issue, and a completely dead battery too, along with the usual keyboard beeps when you type as mentioned in my previous topic on the General Forum. the light sabre noise is not present though, as this replacement has a Seagate drive rather than a Toshiba..
    The higher level tech support person said that they can send out a new battery no problem, as they are aware of the issue, but she also said that if I took my PB to a repair centre they could fix the screen problem too. I asked if the repair centres had different screens to the shipped models and she said 'yes, we are aware of the problem and are working on it.' Whether that was in fact an answer to my question or not I don't know...sometimes these guys are a little hard to understand.
    My argument is that I can't really do without my powerbook - my ibook isn't quite powerful enough and I need the portability. I also can't see a fix for this screen problem in the near future however, as there have only been one or two folks on here that say they have defect-free screens.
    I suggested that I hang on to my PB, as currently sending out a replacement will just cost Apple as I don't think the problem will be fixed, and then in a few months time if PB's are rolling off the line with fully functioning screens we can arrange for a replacement then.
    They weren't too keen on that idea, so we've gone for replacement number 3 right now (actually 4, as I had previously purchased a PB from a retail store too!)
    So.. I'm just hoping against hope that I get a brand new unit that has a decent screen (and a battery that works!), or I have to make the decision as to whether I ask for a refund and do without my PB until I'm guaranteed a unit that works.
    So far I can't fault Apple Customer service, although my opinion of the quality of the PB has taken a stark nosedive unfortunately.
      Mac OS X (10.4.2)  

    I have found a free program called iBackupBot. I got it off of cnet.com. This program allowed me to look at all of my contacts, notes and photos from the so called "back up does not exist" error message. I was able to copy and print out the items, I have not backedup anything yet, I'm gonna try that in the morning. I wanted to get this link out to all of you who are having problems with missing data. Good Luck to all of Us.
    http://Download.cnet.com/iBackupBot/3000-18551_4-10969873.html

  • We recently purchased the iphone5 (2) and are having problems with sound coming thru the earbuds when we plug them in to the iphones.  works fine with the ipad.  help please

    recently purchased the iphone5 (2 of them) and are having problems with the earpods.  no sound when plugged in to the iphone.  both phones.  works with the ipad.  help please

    Hi P5052,
    Welcome to the Support Communities ... and congratulations on the purchase of your iPhone 5's!
    It is very unusual that neither phone is working with the new earpods. 
    Have you tried a different headphone just to see if the issue is with the earpods or the iPhones?
    The article below will give you the basic troubleshooting steps for this issue.
    Click on the link below to see more details and screenshots. 
    I've quoted some helpful highlights for you:
    iPhone: Can't hear through the receiver or speakers
    Symptoms
    When someone calls, I can't hear them through the receiver or speaker phone, and I can't hear music through the speaker. I also can't be heard by someone who is calling me.
    Note: iPhone has one speaker, which is adjacent to the dock connector. On iPhone 4 or later models, the speaker is to the right of the dock connector. On earlier iPhone models, the speaker is to the left of the dock connector.
    Resolution
    Verify that there is nothing plugged in to the headset jack, including headsets, headphones, or adapters.
    Make sure the Ring/Silent switch is not switched to silent.
    While on the Home screen, adjust the volume buttons. If you see the icon below, indicating that headphones are attached, there may be debris or an object lodged in the headset jack:
    Check the headset jack. If there is an object lodged in the headset jack that is not easily removed, have the iPhone serviced to remove object.
    For Original iPhone: If there is light debris, such as lint, in the headset jack, try connecting a pair of headphones to the headset jack and then remove the headphones. Repeat this several times to remove the debris.
    If you have installed a protective film on the display, either ensure that the receiver is not covered or remove the film completely.
    Check the receiver mesh (which is on the top front of the device, above the display). If it appears blocked, use a clean, small, dry, soft-bristled brush to carefully and gently brush away any debris.
    If you have paired with a Bluetooth headset that is nearby, either use the headset or turn Bluetooth off (chooseSettings > General > Bluetooth).
    Restart the iPhone.
    If restarting the iPhone doesn't resolve the issue, try restoring the device.
    If the issue persists, go to the Service Answer Center - iPhone for information on service.
    Hope this helps!
    - Judy
    <Edited by Host>

  • Work Area Problem

    Hi, I don't know what I did. My work area has moved up to the
    right side of the timeline. It's like two parallel columns now
    going side by side. I was not able to move it down UNDER the
    timeline. Does anybody have any ideas of how to fix it?

    your welcome!
    you might wanna mark this as answered so that others don't
    waste their time coming in here to check out the issue.

  • 10.5.3 Update- Window redraw problems in Finder and all Apps

    Hallo there. After installing the update on my MacBook Pro 2.4GHz I am getting irritating redraw problems in all Apps with scrolling possibilities incl. the Finder. Especially Safari. Triple stuttered lines make it impossible to read anything.
    On top of that the permissions are cocked up. The System is telling me not to transfer an iWEB website to a USB stick cos I don't have the privileges. Virtual Sick just splattered over my screen.
    This ultra expensive machine only has its justification because it is a tool and I want to WORK with it. Not long and this bean-can is flying out the window.
    This is an ultimate pain. I wish the updates would work. It's just so unprofessional. So "Windows". I wish Atari was still building computers.
    Is anyone out there that knows anything about this?
    Would appreciate any help.
    Thank you.

    Have you tried doing anything? Try running Disk Utility
    Disk Utility
    http://docs.info.apple.com/article.html?artnum=302672

  • Dreamweaver Template Editable Region Old Problem

    Hello,
    Please, I need urgent help regarding the Adobe Dreamweaver
    CS3 program for Mac OS X. It is, unfortunately, driving me crazy,
    because I have now a problem that is not letting me edit any
    editable region in the child pages I create and apply the template
    to that page. I have tried to restart the computer, restart
    Dreamweaver and even reinstalled Dreamweaver and made my Template
    from scratch and nothing worked. The problem keeps there and
    doesn't let me edit any editable region.
    Here is what happens: I have created a Editable Region called
    "Page Content". Also, another 2 editable regions called "Section
    Navigation" and "Sub Navigation". These editable regions are just
    there to make my job easier. In the Page Content part, I put the
    content I want to add to that page, like text and a heading. For
    the Navigations, I simply change the class of one list item to
    "current", so that my CSS rule can be applied to that list item and
    change the font, so that the users can tell in what page they are
    now, you get it?
    So, what happens? Everytime I try to make changes to the
    editable region Dreamweaver prompts this message:
    "You have made changes in the code in a region that is not
    marked as an Editable Region... You will lose all of your changes
    in the next update of your template. Do you want to retain all of
    the changes?"
    But IT IS A EDITABLE Region, so that is why I dont get it.
    And it gets even worse, because after I lose all of my changes and
    hours of work are wasted.
    I hope you guys, experts in Dreamweaver can make my life a
    lot easier by helping me solve this issue,
    Please help.
    Best regards,
    Thank you for reading this and for the help in advance,
    GB

    And, by the way, such messages are usually triggered by
    improper code usages
    on the page - that's why we need to see your code.
    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
    ==================
    "dreamweaver_pro" <[email protected]> wrote
    in message
    news:[email protected]...
    > Hello,
    >
    > Please, I need urgent help regarding the Adobe
    Dreamweaver CS3 program for
    > Mac
    > OS X. It is, unfortunately, driving me crazy, because I
    have now a problem
    > that
    > is not letting me edit any editable region in the child
    pages I create and
    > apply the template to that page. I have tried to restart
    the computer,
    > restart
    > Dreamweaver and even reinstalled Dreamweaver and made my
    Template from
    > scratch
    > and nothing worked. The problem keeps there and doesn't
    let me edit any
    > editable region.
    >
    > Here is what happens: I have created a Editable Region
    called "Page
    > Content".
    > Also, another 2 editable regions called "Section
    Navigation" and "Sub
    > Navigation". These editable regions are just there to
    make my job easier.
    > In
    > the Page Content part, I put the content I want to add
    to that page, like
    > text
    > and a heading. For the Navigations, I simply change the
    class of one list
    > item
    > to "current", so that my CSS rule can be applied to that
    list item and
    > change
    > the font, so that the users can tell in what page they
    are now, you get
    > it?
    >
    > So, what happens? Everytime I try to make changes to the
    editable region
    > Dreamweaver prompts this message:
    >
    > "You have made changes in the code in a region that is
    not marked as an
    > Editable Region... You will lose all of your changes in
    the next update of
    > your
    > template. Do you want to retain all of the changes?"
    >
    > But IT IS A EDITABLE Region, so that is why I dont get
    it. And it gets
    > even
    > worst, because after I lose all of my changes and hours
    of work are
    > wasted.
    >
    > I hope you guys, experts in Dreamweaver can make my life
    a lot easier by
    > helping me solve this issue,
    > Please help.
    > Best regards,
    >
    > Thank you for reading this and for the help in advance,
    >
    > GB
    >

  • Redraw problems in iTunes 7

    Just ugraded to iTunes 7.0.0, and I'm having window redraw problems. Whenever I play a video or go to one of the new fancy album art views (the latter of which usually won't display at all), it ends up causing a semi-random rectangular portion of the iTunes window to not redraw. So if I go back to the song list, it'll still be displaying the previous screen's information, though it still functions correctly as far as playing songs is concerned. If I drag the window down so that area is off-screen, then back again (or minimize and restore), it redraws the correct current screen. But then as soon as I scroll or anything, the visual bit gets stuck in that section again. (At least the program itself isn't freezing.)
    I do have a fairly old video card. I have a four-year-old dual-867 G4 (MDD). I thought I had the cheapest video card available at the time, which I thought was an ATI, but my System Profiler claims I have an nVIDIA 32MB GeForce4 MX (AGP). It's driving two 1600x1200 displays.
    I really like all the new features of iTunes 7, and the higher-quality video from the store. And I'm not really mad since I can still make everything work. But I'd have to agree with others here that Apple didn't do thorough enough testing this time around.
    Ironically, everything I've tried so far worked fine on my Windows box at work... but it is brand new (3GHz dual core, just got them last week)... and only driving a single 1280x1024 display.
    Anybody else find any fixes? I hope Apple has an update soon that fixes this.

    It only partially fixed the problem for me. Prior to doing it, I was okay if I started up in old-style list mode and stayed there. If I switch to another mode, updates would just immediately die and I couldn't really do anything.
    After the fix, I can now switch between the modes and things continue to work. I can also use the album view just fine. However, the cover view is still broken. It at least draws the covers now (instead of just a white box or an un-updated portion of the library list, which is what I got before), but the scroll controls in the covers area are just white boxes.
    I'm on a G4/450 (Sawtooth) upgraded to a G4/1.4. I have two monitors running at 1600x1200, one on a 16 MB ATI Rage 128 Pro and the other on a 16 MB ATI Rage 128. My iTunes window is roughly 1600x960 pixels in size.
    I saw that someone posted the minimum VRAM requirement for iTunes 7 as 16 MB. Where did they find this? All I saw on the download page when I checked yesterday was that it required some G3 variant - nothing about VRAM. And, I don't think many (an?) G3-era machines had 16 MB VRAM, so making that requirement explicit would seem important.
    PB G4 12 1.33; PM G4/450->1.4   Mac OS X (10.4.7)  

  • Design View Redraw problem

    As I edit in the design view of my file and scroll down the
    file to work on the content Dreamweaver CS3 fails to redraw the
    screen - for instance when I bold a word. When I scroll all the way
    to the top and back down the redraw occurs. This issue duplicates
    in DW8. Switching from Code to Design View does not redraw. I have
    tried numerous ideas to fix this and nothing helps. File is XHTML
    Transitional.
    Any help out there? This is KILLING me.
    - Phil

    Hi Will,
    Your monitor size does not matter, unless it's very low resolution, big issue is the drivers they use and something like this is typical of driver problems. My son is gamer and he finds problems like this all the time, even between different versions of the the updated drivers.
    If you don't want to update those drivers CR can not add code to work around a buggy video driver. You can always un-install them if they break something else.
    You don't need the CD/DVD to do a repair install, go to Control Panel, Add/Remove Programs and select Crystal. It should give you an option to repair.
    Thank you
    Don

Maybe you are looking for