How can avoid the  problem of Parameter Prompting when I submitting ?

I am developing web application in visual studio 2008 in csharp.How can avoid the issue or problem of  Parameter Prompting when I send parameters programaticaly or dyanmicaly?  I am sending the values from .net web form to crystal report but it is still asking for parameters. so when i submit second time that is when the reports is being genereated. How can i solve this problem. Please help. The code Iam using is below.
   1. using System; 
   2. using System.Collections; 
   3. using System.Configuration; 
   4. using System.Data; 
   5. using System.Linq; 
   6. using System.Web; 
   7. using System.Web.Security; 
   8. using System.Web.UI; 
   9. using System.Web.UI.HtmlControls; 
  10. using System.Web.UI.WebControls; 
  11. using System.Web.UI.WebControls.WebParts; 
  12. using System.Xml.Linq; 
  13. using System.Data.OleDb; 
  14. using System.Data.OracleClient; 
  15. using CrystalDecisions.Shared; 
  16. using CrystalDecisions.CrystalReports.Engine; 
  17. using CrystalDecisions.Web; 
  18.  
  19.  
  20. public partial class OracleReport : System.Web.UI.Page 
  21. { 
  22.     CrystalReportViewer crViewer = new CrystalReportViewer(); 
  23.     //CrystalReportSource crsource = new CrystalReportSource(); 
  24.     int nItemId; 
  25.  
  26.     protected void Page_Load(object sender, EventArgs e) 
  27.     { 
  28.         //Database Connection 
  29.         ConnectionInfo ConnInfo = new ConnectionInfo(); 
  30.         { 
  31.             ConnInfo.ServerName = "127.0.0.1"; 
  32.             ConnInfo.DatabaseName = "Xcodf"; 
  33.             ConnInfo.UserID = "HR777"; 
  34.             ConnInfo.Password = "zghshshs"; 
  35.         } 
  36.         // For Each  Logon  parameters 
  37.         foreach (TableLogOnInfo cnInfo in this.CrystalReportViewer1.LogOnInfo) 
  38.         { 
  39.             cnInfo.ConnectionInfo = ConnInfo; 
  40.  
  41.         } 
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.         //Declaring varibles 
  49.          nItemId = int.Parse(Request.QueryString.Get("ItemId")); 
  50.         //string strStartDate = Request.QueryString.Get("StartDate"); 
  51.         //int nItemId = 20; 
  52.         string strStartDate = "23-JUL-2010"; 
  53.  
  54.         // object declration 
  55.         CrystalDecisions.CrystalReports.Engine.Database crDatabase; 
  56.         CrystalDecisions.CrystalReports.Engine.Table crTable; 
  57.  
  58.  
  59.         TableLogOnInfo dbConn = new TableLogOnInfo(); 
  60.  
  61.         // new report document object 
  62.         ReportDocument oRpt = new ReportDocument(); 
  63.  
  64.         // loading the ItemReport in report document 
  65.         oRpt.Load("C:
Inetpub
wwwroot
cryreport
CrystalReport1.rpt"); 
  66.  
  67.         // getting the database, the table and the LogOnInfo object which holds login onformation 
  68.         crDatabase = oRpt.Database; 
  69.  
  70.         // getting the table in an object array of one item 
  71.         object[] arrTables = new object[1]; 
  72.         crDatabase.Tables.CopyTo(arrTables, 0); 
  73.  
  74.         // assigning the first item of array to crTable by downcasting the object to Table 
  75.         crTable = (CrystalDecisions.CrystalReports.Engine.Table)arrTables[0]; 
  76.  
  77.         dbConn = crTable.LogOnInfo; 
  78.  
  79.         // setting values 
  80.         dbConn.ConnectionInfo.DatabaseName = "Xcodf"; 
  81.         dbConn.ConnectionInfo.ServerName = "127.0.0.1"; 
  82.         dbConn.ConnectionInfo.UserID = "HR777"; 
  83.         dbConn.ConnectionInfo.Password = "zghshshs"; 
  84.  
  85.         // applying login info to the table object 
  86.         crTable.ApplyLogOnInfo(dbConn); 
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.         crViewer.RefreshReport(); 
  94.          
  95.                 // defining report source 
  96.         crViewer.ReportSource = oRpt; 
  97.         //CrystalReportSource1.Report = oRpt; 
  98.          
  99.         // so uptill now we have created everything 
100.         // what remains is to pass parameters to our report, so it 
101.         // shows only selected records. so calling a method to set 
102.         // those parameters. 
103.      setReportParameters();  
104.     } 
105.  
106.     private void setReportParameters() 
107.     { 
108.       
109.         // all the parameter fields will be added to this collection 
110.         ParameterFields paramFields = new ParameterFields(); 
111.          //ParameterFieldDefinitions ParaLocationContainer = new ParameterFieldDefinitions(); 
112.        //ParameterFieldDefinition ParaLocation = new ParameterFieldDefinition(); 
113.         
114.         // the parameter fields to be sent to the report 
115.         ParameterField pfItemId = new ParameterField(); 
116.         //ParameterField pfStartDate = new ParameterField(); 
117.         //ParameterField pfEndDate = new ParameterField(); 
118.  
119.         // setting the name of parameter fields with wich they will be recieved in report 
120.        
121.         pfItemId.ParameterFieldName = "RegionID"; 
122.  
123.         //pfStartDate.ParameterFieldName = "StartDate"; 
124.         //pfEndDate.ParameterFieldName = "EndDate"; 
125.  
126.         // the above declared parameter fields accept values as discrete objects 
127.         // so declaring discrete objects 
128.         ParameterDiscreteValue dcItemId = new ParameterDiscreteValue(); 
129.         //ParameterDiscreteValue dcStartDate = new ParameterDiscreteValue(); 
130.         //ParameterDiscreteValue dcEndDate = new ParameterDiscreteValue(); 
131.  
132.         // setting the values of discrete objects 
133.          
134.  
135.           dcItemId.Value = nItemId; 
136.          
137.         //dcStartDate.Value = DateTime.Parse(strStartDate); 
138.         //dcEndDate.Value = DateTime.Parse(strEndDate); 
139.          
140.         // now adding these discrete values to parameters 
141.           //paramField.HasCurrentValue = true; 
142.  
143.        
144.  
145.           //pfItemId.CurrentValues.Clear(); 
146.          int valueIDD = int.Parse(Request.QueryString.Get("ItemId").ToString()); 
147.           pfItemId.Name = valueIDD.ToString();  
148.            
149.         pfItemId.CurrentValues.Add(dcItemId); 
150.         //ParaLocation.ApplyCurrentValues; 
151.         pfItemId.HasCurrentValue = true; 
152.         
153.         //pfStartDate.CurrentValues.Add(dcStartDate); 
154.         //pfEndDate.CurrentValues.Add(dcEndDate); 
155.  
156.         // now adding all these parameter fields to the parameter collection 
157.         paramFields.Add(pfItemId); 
158.          
159.         //paramFields.Add(pfStartDate); 
160.         //paramFields.Add(pfEndDate); 
161.         ///////////////////// 
162.         //Formula from Crystal 
163.        //crViewer.SelectionFormula = "{COUNTRIES.REGION_ID} = " + int.Parse(Request.QueryString.Get("ItemId")) + ""; 
164.         crViewer.RefreshReport(); 
165.         // finally add the parameter collection to the crystal report viewer 
166.         crViewer.ParameterFieldInfo = paramFields; 
167.         
168.          
169.      
170.     } 
171. }

Keep your post to under 1200 characters, else you loose the formatting. (you can do two posts if need be).
Re. parameters. First, make sure yo have SP 1 for CR 10.5:
https://smpdl.sap-ag.de/~sapidp/012002523100009351512008E/crbasic2008sp1.exe
Next, see the following:
[Crystal Reports for Visual Studio 2005 Walkthroughs|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2081b4d9-6864-2b10-f49d-918baefc7a23]
CR Dev help file:
http://msdn2.microsoft.com/en-us/library/bb126227.aspx
Samples:
https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
Ludek
Follow us on Twitter http://twitter.com/SAPCRNetSup

Similar Messages

  • I got my iPhone disabled mistakenly by six trials of entering pass code. However now I remembered  my passcode so how can fix the problem without losing my contents.

    I got my iPhone disabled mistakenly by six trials of entering pass code. However now I remembered  my passcode so how can fix the problem without losing my contents.

    If your phone is now disabled, you've already lost all data on the phone...that's the whole point of the passcode, to protect the data on the phone. Your only choice now is to force the phone into recovery mode & restore it, as described here:
    http://support.apple.com/kb/ht1212
    This will remove the passcode, but also erase all data on the phone unless you have a backup to restore from.

  • How can find the location of my iPad when location services is off?

    How can find the location of my iPad when location services is off?

    If you're wanting to know if you can locate your iPad though iCloud, without Find my device enabled and without power, you won't be able to locate it.

  • How can give the user defined parameter in alv report

    Hi experts
      I have created one alv report for Sale Order statement.In this alv report have different input parameters
      My problem is in this alv i have two input field Sales Orgaization and Plant.When I set this parameter value in user details it snot affected in my alv report.But it is affected in the standard alv report.How can
    i rectify this
    Regards
    Manoj

    hi
    i think don't use set parameter value,  use there SUBMIT & RETURN statement and write in USER_COMMAND function.
    FORM USER_COMMAND  USING P_UCOMM    LIKE SY-UCOMM
                             P_SELFIELD TYPE SLIS_SELFIELD.
      SUBMIT program name AND RETURN
      WITH <selection-screen field> IN <selection-screen field>
      WITH WERKS IN WERKS .
    ENDFORM .
    Regards,
    Abhi

  • How can resolve the problem in jdeveloper903 oc4j starting:JspTagLib listener error

    when i start oc4j in jdeveloper903,it prompt "JspTagLib listener error:null".
    Then ,after depoly the jsp application with jsptaglib,i found the jsp page can not run.but,the jsp application
    can run in develop environment.
    how can i resolve the problem,Help.
    Thanks.

    I think you might have better luck asking your question in the JDeveloper forum at:
    http://forums.oracle.com/forums/forum.jsp?id=315684
    later -- Jeff

  • How can solve the problem in email " SMTP Relay "Message rejected" ", how can solve the problem in email " SMTP Relay "Message rejected" "

    Dear sirs,
    how to solve the mail problem which occurs while I am abroad; bearing in mind that I use HOTSPOT and sometime it's sending emails sometime getting the below messages " SMTP Relay "Message rejected"

    The outgoing mail server is rejecting mail from your network address. Typically that happens when your mail service provider is also your ISP, and you connect to it from another network. The SMTP server will allow connections without a password from anywhere, but it will only relay mail from within the ISP's network. It could also be that your account on the server has expired or been suspended.
    If you need to send mail from outside your ISP's network, use an independent mail service provider. I don't have a specific recommendation.

  • How to avoid the page to move up when I click the button on the Tableview?

    Hi, EP fellows.
    I currently have 3 tableViews and 1 header form set in one jsp page (I know, it may not be a good design to put three tableView in one jsp page.....but for the sake of avoiding client side eventing between each tableViews..I combined them into one jsp page). I set the Load/Navigation value to be URL. 
    Here is the problem. Everytimes I click on the Navigation button (Up/Down) to navigate the tableView data to another page, the whole page will move up and away from the table that I navigating.
    I know it is bacause the page get refreshed, and go to the first item of the page. In this case, how do I avaoid the page to move up and away form the tableView? As it is really look bad when user click on the button, they have to scroll back to the tableView they click.
    Thanks for advices.
    Kent

    As far as i remember,this javascript function pops user a dialog to save a file:
    javascript: document.execCommand('SaveAs','1',null);
    But i m not sure will it pop up for pdf, just try to google javascript to save a pdf file.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to avoid the printer device option screen when calling smartform?

    Dear gurus
    i have create a smartform and i have called it from my program.
    i dont want to show the printer device options how can i achieve that ?
    below is the code for calling my smartform.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname                 = 'ZSNAK_VF03_PRINTING'
       IMPORTING
        fm_name                  = smart_form_function_nm
       EXCEPTIONS
         no_form                  = 1
         no_function_module       = 2
         OTHERS                   = 3
      CALL FUNCTION smart_form_function_nm
        EXPORTING
          itab1              = itab1
          temp4              = temp4
          temp3              = temp3
          ref_doc_no         = ref_doc_no
          po_no              = po_no
          printno            = printno
        TABLES
          itab_tab           = itab_tab
        EXCEPTIONS
          formatting_error   = 1
          internal_error     = 2
          send_error         = 3
          user_canceled      = 4
          OTHERS             = 5.
    Regards
    Saad Nisar.

    Hi,
    check this link
    smartforms  -   print option
    Regards and Best wishes.

  • Imac crashes daily, how can diagnose the problem

    My imac is crashing (Black screen) once to maybe 3 times daily. I think it's a kernel panic, but I'm not sure.
    I'm not sure if this is the information needed. It's from the Console/System Diagnostic reports/Kernel_2013-10-07-085723-imac-3.panic. Can anyone translate this for me? If this is not the right information, where would I find the right information. Thanks
    Mon Oct  7 08:57:23 2013
    panic(cpu 0 caller 0x5df48c97): NVRM[0/1:0:0]: Read Error 0x0000336c: CFG 0x060910de 0x20100406 0xe2000000, BAR0 0xe2000000 0x5ea5c000 0x092480a2, D0, P3/4
    Backtrace (CPU 0), Frame : Return Address (4 potential args on stack)
    0x5c7f3728 : 0x21b837 (0x5dd7fc 0x5c7f375c 0x223ce1 0x0)
    0x5c7f3778 : 0x5df48c97 (0x5e15e22c 0x5e1ce840 0x5e16cf88 0x0)
    0x5c7f3818 : 0x5e749a7d (0x8be7804 0x7411004 0x336c 0x5df38774)
    0x5c7f3858 : 0x5e72293b (0x7411004 0x336c 0x9f74804 0x0)
    0x5c7f38c8 : 0x5e72f273 (0x7411004 0x9da4004 0xa 0x5c7f391c)
    0x5c7f39e8 : 0x5e0cebe3 (0x7411004 0x9da4004 0x5c7f3af0 0x5c7f3af0)
    0x5c7f3b28 : 0x5e0cf58d (0x7411004 0x9db1c04 0x0 0x0)
    0x5c7f3bb8 : 0x5e76c1b7 (0x7411004 0x9db1c04 0xd 0x2)
    0x5c7f3cc8 : 0x5e7711e7 (0x7411004 0x9ced004 0x0 0x0)
    0x5c7f3df8 : 0x5e082258 (0x7411004 0x749d004 0x0 0x0)
    0x5c7f3e38 : 0x5df51e2b (0x7411004 0x749d004 0x0 0x0)
    0x5c7f3ed8 : 0x553ec7 (0x0 0x9e4cf00 0x1 0x2275c6)
    0x5c7f3f28 : 0x552ea6 (0x9e4cf00 0x0 0x0 0x0)
    0x5c7f3f88 : 0x552eea (0x8c85280 0x8c85280 0x84cb3bf0 0x7fff)
    0x5c7f3fc8 : 0x2a179c (0x8c85280 0x0 0x10 0x994fc24)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.nvidia.nv50hal(6.3.6)@0x5e647000->0x5ea5bfff
                dependency: com.apple.NVDAResman(6.3.6)@0x5dee2000
             com.apple.NVDAResman(6.3.6)@0x5dee2000->0x5e1cffff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x55a02000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x5ce34000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x55668000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 81510992370745
    unloaded kexts:
    (none)
    loaded kexts:
    org.virtualbox.kext.VBoxNetAdp          4.1.18
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.pctools.iantivirus.kfs          1.0.1
    com.makemkv.kext.daspi          1
    com.airgrab.driver.AirGrabFirewallModule          3.0
    com.Logitech.Control Center.HID Driver          3.3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2
    com.roxio.BluRaySupport          1.1.6
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.driver.AppleBluetoothMultitouch          54.3 - last loaded 337546357843
    com.apple.filesystems.msdosfs          1.6.3
    com.apple.filesystems.udf          2.1.1
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.InternalModemSupport          2.6.2
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleIntelYonahProfile          14
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.GeForce          6.3.6
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AirPortBrcm43xx          423.91.27
    com.apple.driver.AppleIntelNehalemProfile          11
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.StorageLynx          2.6.1
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.driver.LSI_FW_500          2.6.1
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit          2.6.1
    com.apple.driver.initioFWBridge          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.driver.PioneerSuperDrive          2.6.1
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.driver.AppleFileSystemDriver          2.0
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          6
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0

    Thanks for the reply. I do have more reports. Here are 4. They are oldest first.
    The Crash Reports did not always come up after restarting. I'm not sure why.
    Thanks for the help.
    Sept 12
    Interval Since Last Panic Report:  28485426 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    7C83D2C1-7F6C-4719-B712-D7C377C8A24D
    Thu Sep 12 13:11:11 2013
    panic(cpu 1 caller 0x5e03ac97): NVRM[0/1:0:0]: Read Error 0x00070000: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xe2000000 0x5eb4e000 0x092480a2, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5da71c88 : 0x21b837 (0x5dd7fc 0x5da71cbc 0x223ce1 0x0)
    0x5da71cd8 : 0x5e03ac97 (0x5e25022c 0x5e2c0840 0x5e25ef88 0x0)
    0x5da71d78 : 0x5e83ba7d (0x8a75c04 0x73d5004 0x70000 0x5e032fa0)
    0x5da71db8 : 0x5e74ce03 (0x73d5004 0x70000 0x5da71dd4 0x0)
    0x5da71e08 : 0x5e8296ab (0x73d5004 0x9eff004 0x1 0x1)
    0x5da71ed8 : 0x5e8314c0 (0x73d5004 0xb027004 0x0 0x1)
    0x5da71fe8 : 0x5e1c0ca2 (0x73d5004 0xb027004 0x5da7203c 0x5da720f0)
    0x5da72128 : 0x5e1c158d (0x73d5004 0x7b3fc04 0x0 0x0)
    0x5da721b8 : 0x5e85dff7 (0x73d5004 0x7b3fc04 0xd 0x2)
    0x5da722c8 : 0x5e8631e7 (0x73d5004 0x7bc3804 0x0 0x0)
    0x5da723f8 : 0x5e174258 (0x73d5004 0x78dc004 0x0 0x0)
    0x5da72438 : 0x5e043e2b (0x73d5004 0x78dc004 0x0 0x0)
    0x5da724d8 : 0x5e04050a (0x0 0x9 0x0 0x0)
    0x5da72688 : 0x5e042467 (0x0 0x600d600d 0x7029 0x5da726b8)
    0x5da72758 : 0x5d922e99 (0xc1d00051 0xbeef0003 0x87f3a00 0x87f3a00)
    0x5da727a8 : 0x5d922fce (0x46dcb000 0x87f3a00 0x2301e000 0x0)
    0x5da727d8 : 0x5d8fa484 (0x46dcb000 0x87f3a00 0x2301e000 0x0)
    0x5da727f8 : 0x5d91beb2 (0x46dcb000 0x722e800 0x5da72828 0x55f3f4)
    0x5da72838 : 0x5d91bccd (0x46dcb000 0x722e800 0x5da72868 0x506769)
    0x5da72868 : 0x5d91bc45 (0x46dcb000 0x7e01980 0x722e800 0x0)
    0x5da72898 : 0x5d91bfa7 (0x46dcb000 0x7e01980 0x7f68800 0x0)
    0x5da728b8 : 0x5d93ebce (0x7e01980 0x7f68800 0x626 0x139bb800)
    0x5da728e8 : 0x5d93d1a1 (0x47181000 0x47181788 0x1 0x2209aa)
    0x5da72908 : 0x5d90488f (0x47181000 0x47181788 0xa6d41c0 0x507617)
    0x5da72938 : 0x5d93ec64 (0x47181000 0x5da72a7c 0x5da72968 0x47181000)
    0x5da72978 : 0x5d908c93 (0x47181000 0x5da72a7c 0x5da72a7c 0x5da729e0)
    0x5da72ab8 : 0x5d9425d8 (0x47181000 0x1 0x5da72bcc 0x5da72bc8)
    0x5da72b68 : 0x5d904fe1 (0x47181000 0x1 0x5da72bcc 0x5da72bc8)
    0x5da72be8 : 0x56da06 (0x47181000 0x0 0x5da72e3c 0x5da72c74)
    0x5da72c38 : 0x56e2a5 (0x5d993720 0x47181000 0x9259788 0x1)
    0x5da72c88 : 0x56eb59 (0x47181000 0x10 0x5da72cd0 0x0)
    0x5da72da8 : 0x286638 (0x47181000 0x10 0x9259788 0x1)
    0x5da73e58 : 0x21dbe5 (0x9259760 0x98215a0 0x12c778 0x38993)
    0x5da73e98 : 0x210a86 (0x9259700 0x0 0x7f8b8c0 0x9096f10)
    0x5da73ef8 : 0x216f84 (0x9259700 0x0 0x0 0x0)
    0x5da73f78 : 0x295c57 (0x9ad6368 0x0 0x0 0x0)
    0x5da73fc8 : 0x2a256d (0x9ad6364 0x2 0x10 0x9ad6364)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.GeForce(6.3.6)@0x5d8f9000->0x5d9affff
                dependency: com.apple.NVDAResman(6.3.6)@0x5dfd4000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x55643000
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x559ca000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5cddc000
             com.apple.nvidia.nv50hal(6.3.6)@0x5e739000->0x5eb4dfff
                dependency: com.apple.NVDAResman(6.3.6)@0x5dfd4000
             com.apple.NVDAResman(6.3.6)@0x5dfd4000->0x5e2c1fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x559ca000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x55643000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5cddc000
    BSD process name corresponding to current thread: Safari
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 248930691666315
    unloaded kexts:
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2 (addr 0x5c70f000, size 0x16384) - last unloaded 238309029785429
    loaded kexts:
    org.virtualbox.kext.VBoxNetAdp          4.1.18 - last loaded 193895133420921
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.pctools.iantivirus.kfs          1.0.1
    com.kensington.trackballworks.driver          1.0.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.makemkv.kext.daspi          1
    com.airgrab.driver.AirGrabFirewallModule          3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.filesystems.udf          2.1.1
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.driver.AudioAUUC          1.57
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.GeForce          6.3.6
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          6
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: iMac8,1, BootROM IM81.00C1.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.30f1
    Graphics: NVIDIA GeForce 8800 GS, NVIDIA GeForce 8800 GS, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: Ethernet, Ethernet, en0
    Network Service: USB Ethernet (en2), Ethernet, en2
    Serial ATA Device: ST3500418ASQ, 465.76 GB
    Parallel ATA Device: PIONEER DVD-RW  DVR-K06A, 3.7 GB
    USB Device: USB 2.0 Hub [MTT], 0x1a40  (TERMINUS TECHNOLOGY INC.), 0x0201, 0xfa200000 / 2
    USB Device: USB to Serial-ATA bridge, 0x1bcf  (Sunplus Innovation Technology Inc.), 0x0c31, 0xfa240000 / 3
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd400000 / 3
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd100000 / 2
    USB Device: Ext HDD 1021, 0x1058  (Western Digital Technologies, Inc.), 0x1021, 0xfd130000 / 7
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd110000 / 6
    USB Device: EPSON WorkForce 845 Series, 0x04b8  (Seiko Epson Corp.), 0x0892, 0xfd120000 / 5
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd140000 / 4
    USB Device: Kensington Expert Mouse, 0x047d  (Kensington), 0x1020, 0xfd144000 / 11
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd143000 / 10
    USB Device: GoFlex Desk, 0x0bc2  (Seagate LLC), 0x50a7, 0xfd142000 / 9
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfd141000 / 8
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfd141200 / 12
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1a100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x820f, 0x1a110000 / 5
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000 / 2
    FireWire Device: d2 Quadra v3C, LaCie, Up to 800 Mb/sec
    FireWire Device: My Passport 071D, WD, Up to 800 Mb/sec
    Oct 8
    Interval Since Last Panic Report:  2148285 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    7C83D2C1-7F6C-4719-B712-D7C377C8A24D
    Tue Oct  8 21:18:25 2013
    panic(cpu 1 caller 0x5dacdc97): NVRM[0/1:0:0]: Read Error 0x00002500: CFG 0x060910de 0x00100406 0xe2000000, BAR0 0xe2000000 0x5e5e1000 0x092480a2, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5bd73768 : 0x21b837 (0x5dd7fc 0x5bd7379c 0x223ce1 0x0)
    0x5bd737b8 : 0x5dacdc97 (0x5dce322c 0x5dd53840 0x5dcf1f88 0x0)
    0x5bd73858 : 0x5e2cea7d (0x955e804 0x79d2004 0x2500 0x79d2004)
    0x5bd73898 : 0x5e2bfd5e (0x79d2004 0x2500 0x0 0x0)
    0x5bd73918 : 0x5e2b6132 (0x79d2004 0x9606804 0x41 0x5bd73950)
    0x5bd73a38 : 0x5dbd3b4d (0x79d2004 0x9606804 0x712200c 0x200)
    0x5bd73a78 : 0x5dc52cee (0x79d2004 0x9606804 0xc57a0c8 0xc57a004)
    0x5bd73b28 : 0x5dc542df (0x79d2004 0x9605404 0x0 0x0)
    0x5bd73bb8 : 0x5e2f11b7 (0x79d2004 0x9605404 0xd 0x2)
    0x5bd73cc8 : 0x5e2f61e7 (0x79d2004 0x94f2404 0x0 0x0)
    0x5bd73df8 : 0x5dc07258 (0x79d2004 0x7943004 0x0 0x0)
    0x5bd73e38 : 0x5dad6e2b (0x79d2004 0x7943004 0x0 0x0)
    0x5bd73ed8 : 0x553ec7 (0x0 0x973e180 0x1 0x2a0577)
    0x5bd73f28 : 0x552ea6 (0x973e180 0x0 0x0 0xffffffff)
    0x5bd73f88 : 0x552eea (0x8aa6a80 0x8e65000 0x5bd73fc8 0x4d45e9)
    0x5bd73fc8 : 0x2a179c (0x8aa6a80 0x0 0x10 0x8e1c704)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.nvidia.nv50hal(6.3.6)@0x5e1cc000->0x5e5e0fff
                dependency: com.apple.NVDAResman(6.3.6)@0x5da67000
             com.apple.NVDAResman(6.3.6)@0x5da67000->0x5dd54fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x55a02000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x5ccf9000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5d5e2000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 130159889729611
    unloaded kexts:
    (none)
    loaded kexts:
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    org.virtualbox.kext.VBoxNetAdp          4.1.18
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.pctools.iantivirus.kfs          1.0.1
    com.makemkv.kext.daspi          1
    com.Logitech.Control Center.HID Driver          3.3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2
    com.roxio.BluRaySupport          1.1.6
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.driver.IOBluetoothBNEPDriver          2.4.5f3 - last loaded 1918336405847
    com.apple.driver.AppleUSBCDC          4.0.5
    com.apple.filesystems.udf          2.1.1
    com.apple.filesystems.msdosfs          1.6.3
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.InternalModemSupport          2.6.2
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleIntelYonahProfile          14
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleIntelNehalemProfile          11
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AirPortBrcm43xx          423.91.27
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.GeForce          6.3.6
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.StorageLynx          2.6.1
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.driver.LSI_FW_500          2.6.1
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit          2.6.1
    com.apple.driver.initioFWBridge          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.driver.PioneerSuperDrive          2.6.1
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.driver.AppleFileSystemDriver          2.0
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          6
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: iMac8,1, BootROM IM81.00C1.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.30f1
    Graphics: NVIDIA GeForce 8800 GS, NVIDIA GeForce 8800 GS, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: USB Ethernet (en2), Ethernet, en2
    Serial ATA Device: ST3500418ASQ, 465.76 GB
    Parallel ATA Device: PIONEER DVD-RW  DVR-K06A, 3.7 GB
    USB Device: USB 2.0 Hub [MTT], 0x1a40  (TERMINUS TECHNOLOGY INC.), 0x0201, 0xfa200000 / 2
    USB Device: Android Phone, 0x0bb4  (HTC Corporation), 0x0ff9, 0xfa230000 / 4
    USB Device: USB to Serial-ATA bridge, 0x1bcf  (Sunplus Innovation Technology Inc.), 0x0c31, 0xfa240000 / 3
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd400000 / 3
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd100000 / 2
    USB Device: Ext HDD 1021, 0x1058  (Western Digital Technologies, Inc.), 0x1021, 0xfd130000 / 7
    USB Device: EPSON WorkForce 845 Series, 0x04b8  (Seiko Epson Corp.), 0x0892, 0xfd120000 / 6
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd140000 / 5
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd143000 / 10
    USB Device: GoFlex Desk, 0x0bc2  (Seagate LLC), 0x50a7, 0xfd142000 / 9
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfd141000 / 8
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfd141200 / 11
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd110000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1a100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x820f, 0x1a110000 / 3
    FireWire Device: d2 Quadra v3C, LaCie, Up to 800 Mb/sec
    FireWire Device: My Passport 071D, WD, Up to 800 Mb/sec
    Oct 10
    Interval Since Last Panic Report:  2233951 sec
    Panics Since Last Report:          3
    Anonymous UUID:                    7C83D2C1-7F6C-4719-B712-D7C377C8A24D
    Thu Oct 10 11:40:56 2013
    panic(cpu 1 caller 0x5dff0c97): NVRM[0/1:0:0]: Read Error 0x00002500: CFG 0x060910de 0x00100406 0xe2000000, BAR0 0xe2000000 0x5eb04000 0x092480a2, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5c84b688 : 0x21b837 (0x5dd7fc 0x5c84b6bc 0x223ce1 0x0)
    0x5c84b6d8 : 0x5dff0c97 (0x5e20622c 0x5e276840 0x5e214f88 0x0)
    0x5c84b778 : 0x5e7f1a7d (0x9758804 0x7411004 0x2500 0x7411004)
    0x5c84b7b8 : 0x5e7e2d5e (0x7411004 0x2500 0x0 0x0)
    0x5c84b838 : 0x5e7d9132 (0x7411004 0x978a804 0x41 0x5c84b870)
    0x5c84b958 : 0x5e0f6b4d (0x7411004 0x978a804 0xabaa00c 0x200)
    0x5c84b998 : 0x5e175a6e (0x7411004 0x978a804 0xb7dcf2c 0xb7dcf04)
    0x5c84ba48 : 0x5e1772df (0x7411004 0x9795c04 0x0 0x0)
    0x5c84bad8 : 0x5e7d7f19 (0x7411004 0x9795c04 0x6 0x2)
    0x5c84bb58 : 0x5e7e1f8e (0x7411004 0x978a804 0x1000 0x5c84bc6c)
    0x5c84bcc8 : 0x5e81933e (0x7411004 0x978a804 0x0 0x0)
    0x5c84bdf8 : 0x5e12a258 (0x7411004 0x774b004 0x0 0x0)
    0x5c84be38 : 0x5dff9e2b (0x7411004 0x774b004 0x0 0x0)
    0x5c84bed8 : 0x553ec7 (0x0 0x9902e80 0x1 0x83e4000)
    0x5c84bf28 : 0x552ea6 (0x9902e80 0x0 0x0 0x4ecc7284)
    0x5c84bf88 : 0x552eea (0x8b6f6c0 0x704c100 0x5c84bfc8 0x4d45e9)
    0x5c84bfc8 : 0x2a179c (0x8b6f6c0 0x0 0x10 0x79066c4)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.nvidia.nv50hal(6.3.6)@0x5e6ef000->0x5eb03fff
                dependency: com.apple.NVDAResman(6.3.6)@0x5df8a000
             com.apple.NVDAResman(6.3.6)@0x5df8a000->0x5e277fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x55a02000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x5ce45000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5cccf000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 275304880408
    unloaded kexts:
    (none)
    loaded kexts:
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    org.virtualbox.kext.VBoxNetAdp          4.1.18
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.kensington.trackballworks.driver          1.0.0
    com.pctools.iantivirus.kfs          1.0.1
    com.kensington.mouseworks.driver.KMWUSBHIDMouse          3.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.makemkv.kext.daspi          1
    com.Logitech.Control Center.HID Driver          3.3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2
    com.roxio.BluRaySupport          1.1.6
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.filesystems.udf          2.1.1 - last loaded 58033495234
    com.apple.filesystems.msdosfs          1.6.3
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.InternalModemSupport          2.6.2
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleIntelYonahProfile          14
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.GeForce          6.3.6
    com.apple.driver.AppleIntelNehalemProfile          11
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.driver.AirPortBrcm43xx          423.91.27
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.StorageLynx          2.6.1
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.driver.LSI_FW_500          2.6.1
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit          2.6.1
    com.apple.driver.initioFWBridge          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.driver.PioneerSuperDrive          2.6.1
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.driver.AppleFileSystemDriver          2.0
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple

  • How can solve the problem? I don't want to modify my db

    An unhandled exception of type 'System.Web.Services.Protocols.SoapHeaderException' occurred in system.web.services.dll
    Additional information: Exception [TOPLINK-4002] (OracleAS TopLink - 10g (9.0.4) (Build 031126)): oracle.toplink.exceptions.DatabaseException
    Exception Description: java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Cannot insert explicit value for identity column in table 'Students' when IDENTITY_INSERT is set to OFF.
    Internal Exception: java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Cannot insert explicit value for identity column in table 'Students' when IDENTITY_INSERT is set to OFF.
    Error Code: 544 at oracle.toplink.exceptions.TopLinkException.<init>(TopLinkException.java:48)

    Descriptors corresponding to tables with identity should use sequencing. The project should use Native sequencing.
    More more please see http://download.oracle.com/docs/cd/B10464_04/web.904/b10313/mapping.htm#1149251

  • How to resolve the problem in jdeveloper903 oc4j starting:JspTagLib listener error

    I just download a jdeveloper903,i hava a problem:
    when i start the oc4j alone,it prompt "JspTagLib listener error:null". Then,After depoly the jsp application with JspTag to oc4j,I found the jsp page can not run,but,the jsp application can run in the
    develope environment.
    how can resolve the problem,help!!Thanks.

    I think you might have better luck asking your question in the JDeveloper forum at:
    http://forums.oracle.com/forums/forum.jsp?id=315684
    later -- Jeff

  • How to avoid the screen of selection output device

    Hi all,
    Who can tell me how to avoid the screen selection output device when running a smartform.
    Best regard.

    Hi,
          data: wa_SSFCTRLOP  type SSFCTRLOP.
           wa_SSFCTRLOP-DEVICE = 'PRINTER'.
           wa_SSFCTRLOP-NO_DIALOG =  'X'.
           wa_SSFCTRLOP-PREVIEW = 'X'.
        in the function module
       call function '....
       exporting
       CONTROL_PARAMETERS = wa_ssfctrlop
    regards,
    Santosh Thorat

  • My iPod 5th generation has no sound only head phone has a sound.How to fix the problem?i already tried reset settings and power on/off button.

    I have  a problem of  5th generation of iPod .It has headphone sound but not out sound I mean without headphone there is no soung.I  how can Solve the problem?

    I have the same problem too. I tried turning it off, and it still didn't work. If you keep your headphones in a lot, I believe that is the problem. I am no tech expert, but when you put in your headphones, it triggers something and that something might be stuck. When I turn upp my vokume when my headphones are not in, it says "headphones". Pretty weird.

  • TS4291 I can't send mail from my iPad apps, I just get the error message, 'The recipient- was rejected by the server because it does not allow relaying.' Does anyone know what this means and how to fix the problem.

    I can't send mail from my iPad apps, I just get the error message, 'The recipient… was rejected by the server because it does not allow relaying.' Does anyone know what this means and how to fix the problem.

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    Using a POP account with multiple devices
    http://support.apple.com/kb/ht3228
    iOS: Adding an email account
    http://support.apple.com/kb/HT4810
    iOS: Setting up an Outlook.com, Hotmail, Live, or MSN email account
    http://support.apple.com/kb/ht1694
    Server does not allow relaying email error, fix
    http://appletoolbox.com/2012/01/server-does-not-allow-relaying-email-error-fix/
    Why Does My iPad Say "Cannot Connect to Server"?
    http://www.ehow.co.uk/info_8693415_ipad-say-cannot-connect-server.html
    How to Sync Contacts with Your iPad Using iTunes
    http://www.dummies.com/how-to/content/how-to-sync-contacts-with-your-ipad-using- itunes.html
    iOS: 'Mailbox Locked', account is in use on another device, or prompt to re-enter POP3 password
    http://support.apple.com/kb/ts2621
    eMail Groups - You can use a third party app that many users recommend.
    MailShot -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    Group Email  -  https://itunes.apple.com/us/app/group-email!-mail-client-attachments/id380690305 ?mt=8
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Configuration problems with IMAP e-mail on iOS with a non-standard SSL port.
    http://colinrobbins.me/2013/02/09/configuration-problems-with-imap-e-mail-on-ios -with-a-non-standard-ssl-port/
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
     Cheers, Tom

  • I am unable to hear anything on my iphone 4 nor can the person i call hear anything when i speak - I think that my ear piece and mike have both got magnetised how do fix the problem

    I am unable to hear anything on my iphone 4 nor can the person i call hear anything when i speak -
    I think that my ear piece and mike have both got magnetised how do fix the problem
    Please help

    I have the same problem!! It lead to many other problems with my phone
    I just arranged a repair with apple. Yes its inconvenient to be without a phone for a while but if your phone is in warranty its good to get it looked at professionally!

Maybe you are looking for

  • Wifi and internet sharing glicth

    Hi folks, it seems I found a bug on Lion 10.7.3 regarding the internet sharing and the wifi. I activated the internet sharing through the wifi, everytihng worked properly, and put the computer in sleep mode. When I got back to it awaking, the interne

  • Can I use Home Sharing for this...

    I have 3 iphones (2 x 6's and 1 x 5), and an ipad, all of which I use one iTunes account. iTunes and Mac software all up to date Is it possible to use Home Sharing to sync them all exactly the same or is the a better/smarter way to do this. I have tr

  • How to make a Website in Muse with a Login Forum

    I need to build a website for a client in Muse which has access to a Login Forum, so that users can login to a secure site and upload messages and images/video. I have never done this before, but I'm quite experienced in other aspects of Web Design a

  • DVD burning options in FINDER

    Hello, can you tell me how to turn off verify when burning DVDs with Finder? Thanks much!

  • T7700 help with setting up with tv and game consoles

    HI i wanted to set up my T7700 suround sound with my tv and two game consoles i know that i can connect it to one console and use an adapter to get actual sound sound. What I wanted to is if i could connect it to mulitiple consoles and the tv at once