Help me squash IE bug!

I used the 2 column fixed, left sidebar, header DW layout to
build a page, putting a Spry vertical menu in the SB. The total
page width is defined as 1000 pixels.
With padding and margin set to 0 for the sidebar, the menu
hugs the left margin of my design in everything except IE. In that,
it's about 20px to the right of the left margin.
I tried adding a new Spry menu to a new DW page, based on
same layout, and still got the same result.
One tip I saw somewhere and tried: adding "display: inline;"
-- but no joy.
Any suggestions? Thanks.

"powerdogvt" <[email protected]> wrote in
message
news:g438bl$bbl$[email protected]..
>I used the 2 column fixed, left sidebar, header DW layout
to build a page,
> putting a Spry vertical menu in the SB. The total page
width is defined as
> 1000
> pixels.
>
> With padding and margin set to 0 for the sidebar, the
menu hugs the left
> margin of my design in everything except IE. In that,
it's about 20px to
> the
> right of the left margin.
>
> I tried adding a new Spry menu to a new DW page, based
on same layout, and
> still got the same result.
>
> One tip I saw somewhere and tried: adding "display:
inline;" -- but no
> joy.
>
> Any suggestions? Thanks.
we'd need to see the page - URL?

Similar Messages

  • Help me squash this bug please

    Post Author: eseidel
    CA Forum: General
    Hi, Im using VS2005 CR.  After playing around with my program for a while I think I have discovered a bug. I just don't know if it's me or Crystal? When I run the program and set the parameters and then generate the report I get missing parameter values error. However, after closing the report form and resubmitting report from parameter selection dialog form it works...sometimes. And if it doesn't I close the report form, and just keep trying to resubmit it. Every now and then it works. But...as soon as you hit refresh the report crashes again and I get the missing parameter values error, so I close the report form and keep retrying and it will eventually work again.   Any ideas?  Is this actually a bug or something Im doing wrong?
    Eric
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Imports SupplierReports.ConnectionTools
    Imports System.Data
    Imports System.Data.Common
    Imports System.Data.OleDb
    Imports System.Configuration
    Imports System.DateTime
    Public Class frmReport
    Private _Parameters As New System.Collections.Specialized.StringDictionary
    Private rptCard As ReportCard
    Dim dsOcc As DataSet
    Dim dsFailOcc As DataSet
    Dim dtFailureOccurrence As DataTable
    Dim dlg As dlgReportOptions
    Public rptSupplier As String
    Public rptSupplierName As String
    Public rptKi As Integer
    Public rptKiThisGoal As Integer
    Public rptKiForecast As Integer
    Public rptKiNextGoal As Integer
    Public rptBegDate As Date
    Public rptEndDate As Date
    Public rptPreparedBy As String
    Public rptApprovedBy As String
    Dim myConnectionInfo As ConnectionInfo
    Public Sub LoadReport(ByVal supName As String, ByVal supplier As String, ByVal reportKi As Integer, _
    ByVal begDate As Date, ByVal endDate As Date, _
    ByVal kiGoal As Integer, ByVal kiForecast As Integer, ByVal kiNextGoal As Integer, _
    ByVal preparedBy As String, ByVal approvedBy As String)
    rptSupplierName = supName
    rptSupplier = supplier
    rptKi = reportKi
    rptBegDate = begDate
    rptEndDate = endDate
    rptKiThisGoal = kiGoal
    rptKiForecast = kiForecast
    rptKiNextGoal = kiNextGoal
    rptPreparedBy = preparedBy
    rptApprovedBy = approvedBy
    Try
    Me.Cursor = Cursors.WaitCursor
    ConfigureCrystalReports()
    Catch ex As Exception
    MsgBox("Error loading data for report. Please contact IT Dept.", MsgBoxStyle.Critical, "Error")
    Finally
    Me.Cursor = Cursors.Arrow
    End Try
    End Sub
    Private Sub frmReport_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    myConnectionInfo = New ConnectionInfo
    End Sub
    Public Property Parameters() As System.Collections.Specialized.StringDictionary
    Get
    Return (_Parameters)
    End Get
    Set(ByVal Value As System.Collections.Specialized.StringDictionary)
    If (Value Is Nothing Or _Parameters Is Nothing) Then
    Exit Property
    End If
    For Each entry As DictionaryEntry In Value
    _Parameters.Add(entry.Key, entry.Value)
    Next
    End Set
    End Property
    Public Function ApplyParams()
    Me.SuspendLayout()
    Dim rpt As CrystalDecisions.CrystalReports.Engine.ReportDocument = _
    crv.ReportSource
    If (rpt Is Nothing OrElse _Parameters Is Nothing) Then Return False
    Dim crParameterFieldDefinitions As ParameterFieldDefinitions = _
    rpt.DataDefinition.ParameterFields
    If (crParameterFieldDefinitions Is Nothing) Then Return False
    For Each crParameterFieldDefinition As ParameterFieldDefinition In crParameterFieldDefinitions
    If ((Not crParameterFieldDefinition.IsLinked) And _
    _Parameters.ContainsKey(crParameterFieldDefinition.Name)) Then
    Dim crParameterValues As ParameterValues = _
    crParameterFieldDefinition.CurrentValues
    If Not (crParameterValues Is Nothing) Then
    Dim crParameterDiscreteValue As New ParameterDiscreteValue
    crParameterDiscreteValue.Value = _
    _Parameters.Item(crParameterFieldDefinition.Name)
    crParameterValues.Add(crParameterDiscreteValue)
    'Console.WriteLine(crParameterFieldDefinition.ReportName & ": " & crParameterFieldDefinition.Name & ": " & crParameterDiscreteValue.Value)
    crParameterFieldDefinition.ApplyCurrentValues(crParameterValues)
    End If
    End If
    Next
    crv.ReportSource = rpt
    Me.ResumeLayout()
    Return Nothing
    End Function
    Private Sub ConfigureCrystalReports()
    Dim pFields As New ParameterFields()
    Dim pField As New ParameterField()
    Dim disVal As New ParameterDiscreteValue()
    myConnectionInfo.ServerName = "MSDAORA"
    myConnectionInfo.DatabaseName = "GLPROD"
    myConnectionInfo.UserID = "COST_HIST"
    myConnectionInfo.Password = "COST"
    'setup db connection for report
    'Bind report
    rptCard = New ReportCard
    LoadDataSource()
    'rptCard.PrintOptions.PaperSize = PaperSize.Paper11x17
    'rptCard.PrintOptions.PaperOrientation = PaperOrientation.Landscape
    rptCard.SetDataSource(dsOcc)
    crv.ReportSource = rptCard
    'Load parameters for report
    SetParameters()
    SetDBLogonForReport(myConnectionInfo)
    crv.RefreshReport()
    End Sub
    Private Sub SetParameters()
    Parameters("kiPerformance") = rptKi
    Parameters("PreparedBy") = rptPreparedBy
    Parameters("SupplierName") = rptSupplierName
    Parameters("Supplier") = rptSupplier
    Parameters("ApprovedBy") = rptApprovedBy
    Parameters("kiPerformanceGoal") = rptKiThisGoal
    Parameters("kiForecastGoal") = rptKiForecast
    Parameters("kiNextGoal") = rptKiNextGoal
    Parameters("kiBegRange") = CDate(rptBegDate.ToString("d"))
    Parameters("kiEndRange") = CDate(rptEndDate.ToString("d"))
    End Sub
    Private Sub LoadDataSource()
    Dim conn As String = GetConnString()
    Dim sqlMainRpt As String = "SELECT RANK, INDEXPOINTS,OCCDATE, BASICFAILURECODE, LATEINDEXPOINTS, CAR FROM COST_HIST.QA_OCC " & _
    "WHERE SUPPLIER='" & rptSupplier & "' and occdate between TO_DATE('" & rptBegDate.ToString("d") & "','MM/dd/yyyy') and TO_DATE('" & rptEndDate.ToString("d") & "','MM/dd/yyyy')"
    Dim rptAdapter As OleDb.OleDbDataAdapter = _
    New OleDbDataAdapter(sqlMainRpt, conn)
    dsOcc = New DataSet()
    rptAdapter.Fill(dsOcc, "QA_OCC")
    End Sub
    Private Sub SetDBLogonForReport(ByVal conn As ConnectionInfo)
    Dim tableLogOnInfos As TableLogOnInfos = crv.LogOnInfo
    For Each myTableLogOnInfo As TableLogOnInfo In tableLogOnInfos
    myTableLogOnInfo.ConnectionInfo = conn
    Next
    End Sub
    Private Sub crv_Error(ByVal source As Object, ByVal e As CrystalDecisions.Windows.Forms.ExceptionEventArgs) Handles crv.Error
    'MsgBox("An error occured while loading the report. Please contact the IT Dept.", MsgBoxStyle.Exclamation, "Error")
    MsgBox(e.Exception.Message)
    e.Handled = True
    End Sub
    Private Sub crv_ReportRefresh(ByVal source As Object, ByVal e As CrystalDecisions.Windows.Forms.ViewerEventArgs) Handles crv.ReportRefresh
    ApplyParams()
    End Sub
    End Class

    Post Author: eseidel
    CA Forum: General
    Hi, Im using VS2005 CR.  After playing around with my program for a while I think I have discovered a bug. I just don't know if it's me or Crystal? When I run the program and set the parameters and then generate the report I get missing parameter values error. However, after closing the report form and resubmitting report from parameter selection dialog form it works...sometimes. And if it doesn't I close the report form, and just keep trying to resubmit it. Every now and then it works. But...as soon as you hit refresh the report crashes again and I get the missing parameter values error, so I close the report form and keep retrying and it will eventually work again.   Any ideas?  Is this actually a bug or something Im doing wrong?
    Eric
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Imports SupplierReports.ConnectionTools
    Imports System.Data
    Imports System.Data.Common
    Imports System.Data.OleDb
    Imports System.Configuration
    Imports System.DateTime
    Public Class frmReport
    Private _Parameters As New System.Collections.Specialized.StringDictionary
    Private rptCard As ReportCard
    Dim dsOcc As DataSet
    Dim dsFailOcc As DataSet
    Dim dtFailureOccurrence As DataTable
    Dim dlg As dlgReportOptions
    Public rptSupplier As String
    Public rptSupplierName As String
    Public rptKi As Integer
    Public rptKiThisGoal As Integer
    Public rptKiForecast As Integer
    Public rptKiNextGoal As Integer
    Public rptBegDate As Date
    Public rptEndDate As Date
    Public rptPreparedBy As String
    Public rptApprovedBy As String
    Dim myConnectionInfo As ConnectionInfo
    Public Sub LoadReport(ByVal supName As String, ByVal supplier As String, ByVal reportKi As Integer, _
    ByVal begDate As Date, ByVal endDate As Date, _
    ByVal kiGoal As Integer, ByVal kiForecast As Integer, ByVal kiNextGoal As Integer, _
    ByVal preparedBy As String, ByVal approvedBy As String)
    rptSupplierName = supName
    rptSupplier = supplier
    rptKi = reportKi
    rptBegDate = begDate
    rptEndDate = endDate
    rptKiThisGoal = kiGoal
    rptKiForecast = kiForecast
    rptKiNextGoal = kiNextGoal
    rptPreparedBy = preparedBy
    rptApprovedBy = approvedBy
    Try
    Me.Cursor = Cursors.WaitCursor
    ConfigureCrystalReports()
    Catch ex As Exception
    MsgBox("Error loading data for report. Please contact IT Dept.", MsgBoxStyle.Critical, "Error")
    Finally
    Me.Cursor = Cursors.Arrow
    End Try
    End Sub
    Private Sub frmReport_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    myConnectionInfo = New ConnectionInfo
    End Sub
    Public Property Parameters() As System.Collections.Specialized.StringDictionary
    Get
    Return (_Parameters)
    End Get
    Set(ByVal Value As System.Collections.Specialized.StringDictionary)
    If (Value Is Nothing Or _Parameters Is Nothing) Then
    Exit Property
    End If
    For Each entry As DictionaryEntry In Value
    _Parameters.Add(entry.Key, entry.Value)
    Next
    End Set
    End Property
    Public Function ApplyParams()
    Me.SuspendLayout()
    Dim rpt As CrystalDecisions.CrystalReports.Engine.ReportDocument = _
    crv.ReportSource
    If (rpt Is Nothing OrElse _Parameters Is Nothing) Then Return False
    Dim crParameterFieldDefinitions As ParameterFieldDefinitions = _
    rpt.DataDefinition.ParameterFields
    If (crParameterFieldDefinitions Is Nothing) Then Return False
    For Each crParameterFieldDefinition As ParameterFieldDefinition In crParameterFieldDefinitions
    If ((Not crParameterFieldDefinition.IsLinked) And _
    _Parameters.ContainsKey(crParameterFieldDefinition.Name)) Then
    Dim crParameterValues As ParameterValues = _
    crParameterFieldDefinition.CurrentValues
    If Not (crParameterValues Is Nothing) Then
    Dim crParameterDiscreteValue As New ParameterDiscreteValue
    crParameterDiscreteValue.Value = _
    _Parameters.Item(crParameterFieldDefinition.Name)
    crParameterValues.Add(crParameterDiscreteValue)
    'Console.WriteLine(crParameterFieldDefinition.ReportName & ": " & crParameterFieldDefinition.Name & ": " & crParameterDiscreteValue.Value)
    crParameterFieldDefinition.ApplyCurrentValues(crParameterValues)
    End If
    End If
    Next
    crv.ReportSource = rpt
    Me.ResumeLayout()
    Return Nothing
    End Function
    Private Sub ConfigureCrystalReports()
    Dim pFields As New ParameterFields()
    Dim pField As New ParameterField()
    Dim disVal As New ParameterDiscreteValue()
    myConnectionInfo.ServerName = "MSDAORA"
    myConnectionInfo.DatabaseName = "GLPROD"
    myConnectionInfo.UserID = "COST_HIST"
    myConnectionInfo.Password = "COST"
    'setup db connection for report
    'Bind report
    rptCard = New ReportCard
    LoadDataSource()
    'rptCard.PrintOptions.PaperSize = PaperSize.Paper11x17
    'rptCard.PrintOptions.PaperOrientation = PaperOrientation.Landscape
    rptCard.SetDataSource(dsOcc)
    crv.ReportSource = rptCard
    'Load parameters for report
    SetParameters()
    SetDBLogonForReport(myConnectionInfo)
    crv.RefreshReport()
    End Sub
    Private Sub SetParameters()
    Parameters("kiPerformance") = rptKi
    Parameters("PreparedBy") = rptPreparedBy
    Parameters("SupplierName") = rptSupplierName
    Parameters("Supplier") = rptSupplier
    Parameters("ApprovedBy") = rptApprovedBy
    Parameters("kiPerformanceGoal") = rptKiThisGoal
    Parameters("kiForecastGoal") = rptKiForecast
    Parameters("kiNextGoal") = rptKiNextGoal
    Parameters("kiBegRange") = CDate(rptBegDate.ToString("d"))
    Parameters("kiEndRange") = CDate(rptEndDate.ToString("d"))
    End Sub
    Private Sub LoadDataSource()
    Dim conn As String = GetConnString()
    Dim sqlMainRpt As String = "SELECT RANK, INDEXPOINTS,OCCDATE, BASICFAILURECODE, LATEINDEXPOINTS, CAR FROM COST_HIST.QA_OCC " & _
    "WHERE SUPPLIER='" & rptSupplier & "' and occdate between TO_DATE('" & rptBegDate.ToString("d") & "','MM/dd/yyyy') and TO_DATE('" & rptEndDate.ToString("d") & "','MM/dd/yyyy')"
    Dim rptAdapter As OleDb.OleDbDataAdapter = _
    New OleDbDataAdapter(sqlMainRpt, conn)
    dsOcc = New DataSet()
    rptAdapter.Fill(dsOcc, "QA_OCC")
    End Sub
    Private Sub SetDBLogonForReport(ByVal conn As ConnectionInfo)
    Dim tableLogOnInfos As TableLogOnInfos = crv.LogOnInfo
    For Each myTableLogOnInfo As TableLogOnInfo In tableLogOnInfos
    myTableLogOnInfo.ConnectionInfo = conn
    Next
    End Sub
    Private Sub crv_Error(ByVal source As Object, ByVal e As CrystalDecisions.Windows.Forms.ExceptionEventArgs) Handles crv.Error
    'MsgBox("An error occured while loading the report. Please contact the IT Dept.", MsgBoxStyle.Exclamation, "Error")
    MsgBox(e.Exception.Message)
    e.Handled = True
    End Sub
    Private Sub crv_ReportRefresh(ByVal source As Object, ByVal e As CrystalDecisions.Windows.Forms.ViewerEventArgs) Handles crv.ReportRefresh
    ApplyParams()
    End Sub
    End Class

  • My ipad just won't let me enter my apple password on FaceTime or iMessage, it works fine on my iPhone, I have tried numerous things but nothing works, can anybody help please, will a bug fix sort this out when they finally make one

    My ipad just won't let me sign in with my apple password on FaceTime or iMessage since updating to ios7 it says check my network connection, even though my iPhone works fine with the same password, can anybody help please, I have tried numerous things but nothing  works.  Will I have to wait for a bug fix to sort this? I hear they are working on one a the minute, I hate ios7

    Try a Restart.
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider. Press and hold the Sleep/Wake button until the Apple logo appears.
    Resetting your settings
    You can also try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your device settings again.... All of the settings in the settings app will have to be re-entered. You won't lose any data, but it takes time to enter all of the settings again.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears. Apple recommends this only if you are unable to restart it.
    Or if this doesn't work and nobody else on the blog doesn't have a better idea you can contact Apple.
    Here is a link to their contacts with most of the information below.
    http://www.apple.com/contact/

  • Need help on fixing this bug

    Hello!
    I have my cod which needs some bug fixing. This is a drag and drop application where the user will drap the correct answer on corresponding targets. My problem here is, when one target is already occupied by an object i can still drop another object there, which shouldn't. can you please help me fix this?
    thanks in advance!
    Sincerely.
    Milo
    Here's my code:
    var startX: Number;
    var startY: Number;
    var correct: Number = 0;
    var attempt: Number = 0;
    var currentlyDragged:MovieClip;
    // collection of objects stored in array
    // so that you can reference them programmatically
    var objects:Array = [at1, in1, in2, in3, in4, in5, in6, in7, in8, on1, on2];
    activateObjects();
    // assigns listeners and other functionality to the objects in objects array
    function activateObjects():void {
         for each(var mc:MovieClip in objects) {
              mc.addEventListener(MouseEvent.MOUSE_DOWN, pickObject);
              mc.buttonMode = true;
              // assign drop targets based on names
              switch(String(mc.name).substring(0, 2)) {
                   case "at":
                        mc.dropTargets = [targetAT1];
                   break;
                   case "in":
                        mc.dropTargets = [targetIN1, targetIN2, targetIN3, targetIN4, targetIN5, targetIN6, targetIN7, targetIN8];
                   break;
                   case "on":
                        mc.dropTargets = [targetON1, targetON2];
                   break;
    function pickObject(e:MouseEvent):void {
         currentlyDragged = MovieClip(e.currentTarget);
         currentlyDragged.startDrag();
         startX = currentlyDragged.x;
         startY = currentlyDragged.y;
         stage.addEventListener(MouseEvent.MOUSE_UP, dropObject);
    function dropObject(e:MouseEvent):void {
         stage.removeEventListener(MouseEvent.MOUSE_UP, dropObject);
         stopDrag();
         var droppedOn:MovieClip;
         if (currentlyDragged.dropTarget) {
              // loop through targets belonging to the currently dragged clip
              for each(var mc:MovieClip in currentlyDragged.dropTargets) {
                   if (currentlyDragged.hitTestObject(mc)) {
                        // get the target
                        droppedOn = mc;
                        currentlyDragged.removeEventListener(MouseEvent.MOUSE_DOWN, pickObject);
                        currentlyDragged.buttonMode = false;
                        currentlyDragged.x = droppedOn.x;
                        currentlyDragged.y = droppedOn.y;
                        correct++;
                        correctCounter.text = String(correct);
                        // stop loop - it is not necessary to continue
                        break;
         attempt++;
         attemptCounter.text = String(attempt);
         // return to the initial position if there is no hit
         if (!droppedOn) {
            currentlyDragged.x = startX;
            currentlyDragged.y = startY;
         if (correct == objects.length) {
              var congrats:CongratsMC = new CongratsMC();
              // place i in the middle of the screen
              congrats.x = (stage.stageWidth - congrats.width) * .5;
              congrats.y = (stage.stageHeight - congrats.height) * .5;
              addChild(congrats);

    Try the code below.
    Also, use int instead of Number whenever possible - it is smaller and faster.
    import flash.display.MovieClip;
    import flash.display.Sprite;
    var startX:Number;
    var startY:Number;
    var correct:int = 0;
    var attempt:int = 0;
    var currentlyDragged:MovieClip;
    // collection of objects stored in array
    // so that you can reference them programmatically
    var objects:Array = [at1, in1, in2, in3, in4, in5, in6, in7, in8, on1, on2];
    var congrats = new CongratsMC();
    congrats.addEventListener("close", closeCongrats);
    activateObjects();
    // assigns listeners and other functionality to the objects in objects array
    function activateObjects():void {
         for each(var mc:MovieClip in objects) {
              mc.addEventListener(MouseEvent.MOUSE_DOWN, pickObject);
              mc.buttonMode = true;
              // assign drop targets based on names
              switch(String(mc.name).substring(0, 2)) {
                   case "at":
                        mc.dropTargets = [targetAT1];
                   break;
                   case "in":
                        mc.dropTargets = [targetIN1, targetIN2, targetIN3, targetIN4, targetIN5, targetIN6, targetIN7, targetIN8];
                   break;
                   case "on":
                        mc.dropTargets = [targetON1, targetON2];
                   break;
    function pickObject(e:MouseEvent):void {
         currentlyDragged = MovieClip(e.currentTarget);
         currentlyDragged.startDrag();
         startX = currentlyDragged.x;
         startY = currentlyDragged.y;
         stage.addEventListener(MouseEvent.MOUSE_UP, dropObject);
    function dropObject(e:MouseEvent):void {
         stage.removeEventListener(MouseEvent.MOUSE_UP, dropObject);
         stopDrag();
         var droppedOn:MovieClip;
         correctCounter.text = String(correct);
         if (currentlyDragged.dropTarget) {
              // loop through targets belonging to the currently dragged clip
              for each(var mc:MovieClip in currentlyDragged.dropTargets) {
                   if (currentlyDragged.hitTestObject(mc)&& mc.notUsed) {
                        // get the target
                        droppedOn = mc;
                        mc.notUsed = false;
                        currentlyDragged.removeEventListener(MouseEvent.MOUSE_DOWN, pickObject);
                        currentlyDragged.buttonMode = false;
                        currentlyDragged.x = droppedOn.x;
                        currentlyDragged.y = droppedOn.y;
                        correct++;
                        correctCounter.text = String(correct);
                        removeTarget(droppedOn);
                        // stop loop - it is not necessary to continue
                        break;
         attempt++;
         attemptCounter.text = String(attempt);
         // return to the initial position if there is no hit
         if (!droppedOn) {
            currentlyDragged.x = startX;
            currentlyDragged.y = startY;
         if (correct == objects.length) {
              // place i in the middle of the screen
              congrats.x = (stage.stageWidth - congrats.width) * .5;
              congrats.y = (stage.stageHeight - congrats.height) * .5;
              addChild(congrats);
    function removeTarget(target:Sprite):void {
         var i:int = 0;
         for each(var mc:MovieClip in objects) {
              for (i = 0; i < mc.dropTargets.length; i++) {
                   if (mc.dropTargets[i] == target) {
                        mc.dropTargets.splice(i, 1);
    function closeCongrats(e:Event):void {
         removeChild(congrats);

  • Please help i have a bug ML 10.8.1,

    i have a MBP mid 2012 15,4 but in the screen you can see the information window stay 13 zoll display.
    what can i do or is this a bug smc reset ?
    <S/N Image Edited By Host>

    Not sure I understand how Migration Assistant is doing anything. I thought MA was for connecting your computer to another computer or volume and transferring files. I'm just not sure how you're using it. Like I said earlier, everything you do on your Mac overwrites more of what data may have been recoverable if there even was any. Not to kick you when you're down but this is exactly he kind of a situation where a time machine or other back up would have saved you a lot of heartache. I'm sorry but I don't think I can be of any help :-(

  • HELP ! A FATAL BUG ! ! ! What`s wrong with the SATA port ? ? ?

    My MacBook (MD103) got a serious bug here, PLEASE HELP ME !
    I changed my main drive to a Crucial 256GB SSD and memory to Micron 16GB, and I also removed the optical drive. The optical drive has been replaced by the original Toshiba HDD. Then, the question has came out! The OS hourly report Errors and restart. Finally, the HDD icon will disappear from Finder and the drive will be changed into a read-only disk (Under the Windows OS installed by BOOTCAMP). Then, I have to format the drive.
    BUT the question still happen AGAIN AND AGAIN! Though, I changed the Toshiba Drive by a WesternDigital one (Model. LPVT 500G), which is the most energy-efficient notebook HDD, BUT the question take place AGAIN when I listening an iTunes music ! ! !  (The music tone was reapted again and adain, and the OSX was shut down in a sudden, without any operation)
    I searched some information and did some attempt. The OS can work well when I change the second drive by a old 250GB HDD, but I really can`t use such a slow and small drive for work, and I have to pray for my data every time when I press the power button. So, please help me! Improve the SATA port power management or someting else, THE BUG CAN BE SOLVED BY YOU, THE GREATEST ENGINEERS.
    Please let me know the progress, THANK YOU ! ! !

    Firstly, Thanks!
    I've checked it and if the question didn`t occur, the disk can work well. The I/O speed can reach 113MB/s. And someone said it causes by SATA port power supply.

  • All Photoshop versions - Multiple Help Window Pop Up bug

    I've seen this question appear every few years and be dismissed, so I know I'm not the only one getting this bug, and it's not completely debilitating but it sure is irritating and I can't see why it's never been fixed.
    What happens is when you're on the color picking window, when you're selecting a color sometimes it will create a cascade of non-stop Help windows until the browser crashes or throws up warning messages.
    This behavior has happened to me through every iteration of Photoshop I've used since back in 1997 or so. I currently use CS6 and it happens every once in a while.
    I don't know why it doesn't come up more in discussion because every artist I know who uses photoshop regularly will encounter this problem. Most probably just learn to ignore the problem. But still it is curious that it STILL is a problem in the current photoshop.

    Hi Chris (and in passing : thank you for your dedication and presence in the support threads over the years)
    I read in your last post that there is now a fix being deployed for CC and newer regarding the legacy "multiple help pages" bug. Is there something being done for earlier versions ? I am running Photoshop CS 5.1 and just ran into this bug again. If that is of any help, in my particular case it was triggered by the image resizing dialog. Here are a few more details about this occurrence :
    - The image resizing dialog was initially brought up through a keyboard shortcut (in my case, ctrl-alt-i, with the ctrl and alt keys from the right-hand side of the keyboard)
    - The multiple help tabs showed up in Chrome before I even started to type in my desired image size. I believe that the bug got triggered when I first clicked inside one of the input fields.
    - The image being resized was a smart object from a parent document. The .psb of the smart object was being displayed in full-screen mode with floating elements (second mode in the f-cycle)
    - I am running a x64 system with 24gigs of RAM, hence I doubt that RAM usage is the issue here. Operating system is Win7pro x64, service pack 1.
    I hope this helps, and I am looking forward to a bug fix being deployed for earlier versions, since not every user is on CC. From what I have observed this bug is indeed spread across multiple versions of the program, and well known by power users relying heavily on keyboard shortcuts and fast workflows.
    Thanks !

  • Please help me fix the bug relate to x$kzsro

    Dear everybody
    I'm new to oracle. I'm using Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 in window vista.
    recently, i try to run this code :
    select u.name, o.obj#, o.name,
    decode(o.type#, 2, 'TABLE', 4, 'VIEW')
    from sys.user$ u, sys.obj$ o
    where o.owner# = u.user#
    and o.linkname is null
    and o.type# in (2, 4)
    and (o.owner# = uid
    or
    obj# in (select obj#
    from sys.objauth$
    where grantee# in (select kzsrorol from x$kzsro)
    or grantee#=uid
    and encounter error :
    Error starting at line 1 in command:
    select u.name, o.obj#, o.name,
    decode(o.type#, 2, 'TABLE', 4, 'VIEW')
    from sys.user$ u, sys.obj$ o
    where o.owner# = u.user#
    and o.linkname is null
    and o.type# in (2, 4)
    and (o.owner# = uid
    or
    obj# in (select obj#
    from sys.objauth$
    where grantee# in (select kzsrorol from x$kzsro)
    or grantee#=uid
    Error at Command Line:11 Column:56
    Error report:
    SQL Error: ORA-00942: table or view does not exist
    00942. 00000 - "table or view does not exist"
    *Cause:
    *Action:
    this error relate to table or view x$kzsro in oracle 10.2
    i can't fix this bug.so please help me.
    thanks

    x$kzsro is a fixed table. You can select from fixed tables only if you are connected as sysdba. You can't grant select on a fixed table to a user:
    SQL> grant select on sys.x$kzsro to scott;
    grant select on sys.x$kzsro to scott
    ERROR at line 1:
    ORA-02030: can only select from fixed tables/views
    SQL> What you could do is as k your DBA to:
    SQL> create view v$kzsro as select * from x$kzsro;
    View created.
    SQL> grant select on v$kzsro to scott
      2  /
    Grant succeeded.
    SQL> connect scott
    Enter password: *****
    Connected.
    SQL> select * from sys.x$kzsro;
    select * from sys.x$kzsro
    ERROR at line 1:
    ORA-00942: table or view does not exist
    SQL> select * from sys.v$kzsro;
    ADDR           INDX    INST_ID   KZSROROL
    00000000          0          1          1
    00000008          1          1         54
    00000010          2          1          2
    00000018          3          1          3
    00000020          4          1          4
    00000028          5          1          6
    00000030          6          1         20
    00000038          7          1          7
    00000040          8          1          8
    00000048          9          1          9
    00000050         10          1         10
    ADDR           INDX    INST_ID   KZSROROL
    00000058         11          1         13
    00000060         12          1         18
    00000068         13          1         26
    00000070         14          1         32
    00000078         15          1         33
    00000080         16          1         40
    00000088         17          1         42
    00000090         18          1         48
    00000098         19          1         80
    000000A0         20          1         82
    21 rows selected.
    SQL> SY.
    P.S. If you are new to oracle starting with sys owned tables and fixed tables isn't the best choice.

  • Help... Bug in the Date and Time ?!

    Hello... I have BB Z10 that I bought it a year ago, and very satisfied for my decision to change my Torch into Z10 so far. Recently I have upgrade its OS to the latest one, and I'm quite happy to see myany improvement in it. But after a while, i just realize something strange with my Z10, which I don't know is it really a bug or not? I'm just a loyal user of BB and have no capability in Dev sectors.
    The problem is :
    Everytime I shutdown my BlackBerry, It's clock always change. why it happens? is it really abug?
    First of all, in Date and Time setting, I set my Z10 timezone to my home time zone. And I *set off* the Auto Update Time Zone since i have to work many times to places with different time zone of my home city... and I still want my Z10 to show my Home City Time Zone rather to the place where I stayed for temporary.
    Secondly, sometimes I must Shutdown my Z10, according the rules where I worked. So It's no option at all for setting it to Airplane mode.
    Thirdly, sometimes I always shut my Mobile Service, and change it to Wifi Connection where available. I do it so I can spare my battery life, since in my workplace, sometimes there's no electricity at all, and many times i forgot to bring my charge when i go to town with electricity.
    So... again, everytime i turn on my Z10, the date is always change... and i couldn't recall, is it the time before i'm upgrading my latest OS.
    So, if this is a bug, i hope RIM dev can fix this in the next OS Update. Some other my phone (sucha as Nokia, Samsung, Android, and even my Company Satphone) doesn't have this problem.
    If this is not a bug, what can I do so my Date and Time is not change?
    FYI, as I said before, I CAN NOT set on Auto Update Time Zone, since I LIKE my Z10 to stay in my home zone so it's easier for me to see what time in my home. I've already have to set Date and Time Automatically Bar to *On Position* 9even I don't know for sure what is used for), but when I restarted why Z10, the Date and Time was changing again. Meanfile my Time Zone still the same, to my Home Time Zone. So what exatcly the Set Date and Time Automatically option really use for? My Date and Time still always changing everytime I "turn it on" or "restart" my Z10, regardless that automatic option set on or off.
    Any idea? Thanks for the help
    I sent it from my BBzTen.

    If you back everything up, you can restore everything after the wipe. You will not lose data. After restoring all you have to do is enter your password for your accounts.
    However, if you do that it's possible, not for sure, but it's possible you will restore the problem. If you restore only media and application data you will have to re-add your accounts, reset all your notifications etc. Any apps you had will have to be redownloaded from BBWorld but it's quite quick and easy to do. The wipe will leave the OS in tact so you won't have to do anything with that.
    1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
    2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

  • Help with Possible Mask Bug in CF8

    When letting a user edit their PRICE field at my website, I
    populate the field with the VALUE attribute (as seen below) using a
    MASK:
    <CFINPUT TYPE="TEXT" NAME="price" VALUE="#price#" SIZE="7"
    MAXLENGTH="7" MASK="9999999">Enter your price
    <B>without</B> decimals, cents, or dollar signs.
    Examples: 45, 1, 17900.
    However, when pulling the number from the database, CF8 will
    add trailing zeros to the number!!!!
    For example: if #price# equals 25, the value populated in the
    field is 2500000!!!
    Is this a bug? When I reamove the mask, it works fine. It's
    not doing this on my CF 4.5 (installed on my own server). I am
    using a paid providers' CF8.
    If it is a bug, how would I fix this and how do you report a
    bug? This is the 2nd one I found using CF8 (the other was
    Validate="integer" actually allows "$" as an integer ...also "$$$"
    and "$454$3$$3$", etc.)
    -Tony

    tony17112acst wrote:
    > Is this a bug? It's not doing this on my CF 4.5
    (installed on my own server).
    hmm... the 'mask' attribute was introduced in CFMX7...
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com

  • [HELP] Advanced Video FX bug?

    Hi guys. Hope someone can help me. I have he creative Webcam Live! with latest drivers installed.Now i've downloaded the "Advanced Video FX" software.But when i clink on it, i cant select my webcam. Actually, it shows NO webcams to select.Can anybody help me?:smileyindifferent: I thank u all!Hugs!

    I have some problem!!!
    CTVideoFX.exe, (0xc0000005)
    Message Edited by Anor on 12-26-2006 02:22 PM

  • Help with Image & Blog Bugs

    Hello all -
    Been putting together a site for the past few weeks, and we thought we had it all down pat until we went live. The links on the blog page come up with 404 errors, and (even worse) it seems that my Windows friends get image problems on the home page (the page loads fine for Mac folks). Anyone have any solutions? The blog works fine when we publish to the desktop. Thanks for the help!
    Site:
    www.vantiki.com
    Powermac Dual 2 G5 loaded   Mac OS X (10.4.5)  

    You know, it's really sad that your wonderful site has problems being viewed by Windows. They are TRULY missing something. Have you tried Firefox on Windows to see if it looks any better (I don't have access to my Windows machine right now)?
    Just checked out one of your blog pages. iWeb is sending you to
    http://www.vantiki.com/VanTiki/studionotes/795F2D5F-4102-428D-A4F3-6241687AD593. html
    when your page is actually here
    http://www.vantiki.com/VanTiki/studionotes/795F2D5F-4102-428D-%234DADCD.html
    The first one is what it SHOULD be, I don't know why it's converting it to the second one... could be a server related issue regarding character sets that I don't quite understand yet but I'm learning!

  • Help solving this mask bug, its been there for 2 years

    https://bugs.adobe.com/jira/browse/SDK-20416
    I'm not sure if it is a bug or what. I got no respnse from flex team.
    I attached swf file and source code so you can easily see what is going on.
    I listed a workaround but this bug is getting more and more messy in my project so I'm here trying to ask for a real solution
    Thanks in advance

    Thanks for raising this. We will take a look.
    You should vote on bugs that are of interest to you. A bug stays in the community status if it has less that 2 votes.
    -Gaurav
    http://www.gauravj.com/blog

  • Help! Dreamweaver CS6 bug makes code disappear!

    I manage a dozen or so very stable websites in DW. Yesterday when I went to edit one, all the text was gone! I was able to workaround by pasting fresh text in Design mode from the web page. Today it's happening with another site. Both these sites have templates with editable regions.  It's not happening in all of my sites, nor on every page of the affected ones.
    Here's an example.
    The web page:
    The file:
    It's so bizarre! Any ideas?

    #1 If you're using a Mac with Mavericks, disable your system's "Dictation & Speech Recognition" features.
    #2  Validate code and fix reported errors.
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    #3 When DW starts acting weird for no other reason, the first thing to try is Deleting Corrupted Cache in DW
    http://forums.adobe.com/thread/494811
    #4  If that doesn't help, try Restore Preferences
    http://helpx.adobe.com/dreamweaver/kb/restore-preferences-dreamweaver-cs4-cs5.html
    Nancy O.

  • The Border Of A JInternalFrame.. can anyone help me solve the bug?

    Hi all,
    I have many internal frames in my desktoppane and i want to set the border to color.blue of one of them at a time. I want to test if it is blue, if yes, then set the internal frame back to its original border, if it is not blue, then set to blue.. but there seems to be some error to do with metal borders..?? i am extremely confused.. can anyone help me.. sorry, but i am new to java
    so i did..
    in one of my classes...
    JInternalFrame intFrame = new JInternalFrame;
    inframe.setBorder(BorderFactory.createLineBorder(Color.blue));
    then in main class i did..
    public void SelectedInternalFrame(JInternalFrame intFrame)
         this.selectedFrame = intFrame;
         if(this.selectedFrame !=null)
              Color c = ((LineBorder)this.selectedFrame.getBorder ()).getLineColor();
              if (c == Color.blue)
                   ///set back to the original border.. i dont know how to get it               
    thank u i advance
              this.selectedFrame.setBorder(BorderFactory.createLineBorder(Color.blue,3));
                   }

    Hello Victoria, see IF in the next link the "Reset the connection settings in Yahoo Messenger" help you.
    https://help.yahoo.com/kb/reset-connection-settings-resolve-sign-in-issues-sln1670.html?impressions=true
    thank you

Maybe you are looking for

  • Queries related to maintaining multiple iphoto libraries

    hi, I recently came across iphoto buddy, which allows you to manage more than one iphoto library. Great tool. However I have a few queries regarding it: 1. Is there a way to view consolidated version of 'faces' or 'places'? i.e. I now have to switch

  • Fuzzy / blurry fonts

    New to MAC from PC but... All the fonts are blurry / fuzzy on my mini. Tested with 2 different monitors connected via Mini-DVI to DVI Adapter. After few hours of using it I have headache. I did searched for a solution but no luck. I need to see indiv

  • Why do we apply patches

    Dear all, I am very new to Oracle database, so question arise and I post them. I need to know that why do we apply patches and what is DBA's advice regarding applying patches. Thanks to all ben

  • Image uploading and saving to database

    hi ,            I am developing application for summer placement . i want to upload image with candidate's details and save it to database. How to do this? I hv got tutorials for uploading image but want to know how to save it to database table along

  • Is there any bapi to upload c/s value for a material  in MRP3 view.

    Hello Expert Is there any bapi available to change material and upload the characteristic values in its MRP3 view? I want to change material and assign values for characteristic, I got one bapi /SAPMP/BAPI_MATERIAL_SAVEDATA which change material.. bu