RefreshGraph General Protection Fault

Hello

I note 2 strange behaviour with graphs that occur when I draw a bitmap on a chart, then a rectangle.

1 / I want to change the size of the rectangle by removing everything and then redraw all. I set the ATTR_REFRESH_GRAPH attribute to 0, so I delete them all with the VAL_DELAYED_DRAW attribute, I draw everything and then call RefreshGraph ().

The problem is that even with the ATTR_REFRESH_GRAPH attribute to 0 as the graph flashes when I change the size of the rectangle and redraw all.

2 / when I draw the bitmap with PlotBitmap and do a RefreshGraph before you adjust the image with SetCtrlBitmap, I get a General Protection Fault.

Enclosed is a small project that illustrates these behaviors.

Thank you

Seems that you have found a new bug in the chart control. The bug occurs when you change the opacity of a plot to bitmap without him have attributed a bitmap.

The usual scenario is a bitmap image to assign to the plot at the time the plot is created, passing the bitmap file to the PlotBitmap function. But it is also possible to create the plot without a bitmap and to assign later a handle, that is what you are doing, quite correctly. The bug occurs when you change the opacity of this trace bitmap without him have attributed the bitmap handle, via the SetCtrlBitmap function.

I created a bug report for this (534492). Until it's resolved, you should avoid this situation by adjusting opacity in tandem with the handle of a bitmap. Something like this:

GetCtrlVal (panelHandle, PANEL_TEST_ERROR, & ErrorOn);
If (ErrorOn == 0)

{
SetCtrlBitmap (panelHandle, PANEL_GRAPH, ImgPlotHandle, PG_RwyImgID);
SetPlotAttribute (panelHandle, PANEL_GRAPH, ImgPlotHandle, ATTR_PLOT_OPACITY, 125);

}

As for the problem of flashing, this is due to a limitation of the ATTR_REFRESH_GRAPH attribute. This attribute disables only the updates for the tracing of functions. It does not neutralize the updates for the SetCtrlBitmap function. This is whence the flashing. The only way I can think to work around this limitation is to always draw the file and avoid using the SetCtrlBitmap altogether. Something like this:

DeleteGraphPlot (panelHandle, PANEL_GRAPH,-1, VAL_DELAYED_DRAW);

SetCtrlAttribute (panelHandle, PANEL_GRAPH, ATTR_REFRESH_GRAPH, 0);
GetCtrlVal (panelHandle, PANEL_TEST_ERROR, & ErrorOn);
If (ErrorOn == 0)
{
ImgPlotHandle = PlotBitmap (panelHandle, PANEL_GRAPH,
0.0, 0.0,
0.0, 0.0, DirAndFile);
SetPlotAttribute (panelHandle, PANEL_GRAPH, ImgPlotHandle, ATTR_PLOT_OPACITY, 125);
}
GetCtrlVal (panelHandle, PANEL_RECT_LENGTH, & RectLength);
PlotRectangle (panelHandle, PANEL_GRAPH, 10.0, 20.0, RectLength-10,)
40.0, VAL_RED, VAL_RED);

SetCtrlAttribute (panelHandle, PANEL_GRAPH, ATTR_REFRESH_GRAPH, 1);

Note a few other changes I made: I got rid of the call to RefreshGraph because it is not necessary. Instead, I simply turn ATTR_REFRESH_GRAPH when I finished tracing (turning on results in an implicit update). It is more intuitive to use the attribute in this way, so that you don't have to keep off it without ever again. Also, I moved it under the DeleteGraphPlot, as this attribute does not affect what happens during erasure, which is determined only by the last parameter that you pass to the Remove feature.

Tags: NI Software

Similar Questions

  • General protection fault with tabs and toolbars to the output of the application

    Hello

    It seems that if you have a tab control

    .. .and that tab has a tab with a child Panel control

    .. .and this child Panel has a sign callback function

    .. .and this same child Panel also has a toolbar

    .. .and you do not throw the toolbar when the application closes

    .. .and you do not throw the child Panel when the application closes

    .. .and you do not throw the Panel with the tab control when the application closes

    .. .the application will crash with a general protection fault after the return of the main function.

    Certainly, I consider really cela a bug so as much as there were several things wrong with the code I was working with in order to hit it (and once I set the application everything is fine), but it still took me a little time to track down, so I hope this post can someone put some time in the future.

    I have attached a small sample application that illustrates this problem on my PC in the case where an engineer OR wants to take a peek.  I'm under CVI 2012 SP1 on Windows 7 64 bit.  Thank you.

    I see that I was a little involuted in my previous answer. At Telegraph and hopefully more clear:

    • As indicated in aid, after the chaining of the callback function to the Panel, Panel callbackData should not be modified
    • (solution 1) If you just install a reminder rather than chaining one new this problem is not present
    • I suspect that the instrument of the toolbar handles callbackData parameter Panel. If this is true, you can:
    • Install the toolbar to a panel that does not have a chained reminder (solution 1), or
    • Install the toolbar BEFORE chaining (solution 2) recall: as you can see in the code for ChainPanelCallback, the instrument takes care of callbackData existing and manage correctly in all situations, including the Panel throwing
  • I get a general protection fault in the discussions.

    I use 3 secure thread queues for sending data over the k-line have 1 main function and 2 other sons thread that performs the work to update GUI and receives the data from the COM port.

    Where is the risk of general protection fault? Please reply!

    The map file is generated in the CVIBUILDxxx directory in your project folder. The error text is GPF indicates a module in your program or an external library?

    Have you tried to run in a single thread, for ECU communication only?

  • memcpy causes a "general protection fault".

    with CVI 9.0.1, attached sample code causes a general protection fault on the second main on my computer function memcpy, when compiled in debug mode. When compiling in release mode, no problem... I don't know if it crashes on other computers. This code compiled and ran well with gcc, visual studio and digital mars.

    You still have the error if you remove the table of sDanfossFactoryParams const qualifier?

    JR

  • Download "" general protection fault in module KRNL386. "." EXE' loading money questions v2.0

    Original title: GPF in module KRNL386. EXE

    Trying to load money v2.0a of GSP on my old Office XP sp2 and I'm getting a pop up with a «general protection fault in module KRNL386.» EXE to 0001:84CF. Any ideas?

    Hello

     
    Thank you for keeping us posted about the State of the question.
     
    Have you tried method 1 as there may be other software that can prevent it.
     
    I suggest that you check the software in compatibility mode
    How to determine if hardware or software is compatible with Windows XP
    Hope this information helps.
  • General Protection Fault encountered when reading the ARINC429 data

    My program is configured to read data using a Ballard ARINC Board and write the data to a log file.

    It works well if no data is received, but the arrival first of valid data, the program meets "General Protection Fault... "and stops at the entrance to the function below:

    void MakeLogMsg (char * msg, LogFilePtr lfp)

    The string pointer and 'lfp' 'msg' were valid at the time.

    PS: The program ran fine until I added the loging funtion.

    Problem solved!

    The string is terminated by a character zero. Just my program will enter a loop dead if valid data arrive.

    In any case, thank you for your attention, Roberto.

  • Report of panic * panic (calling cpu 1...): kernel trap to... game 13 = General protection

    Hello

    This is my first post so...

    Nice to you all and thank you for supporting!

    whenever I turn on the Imac, show first the message 'no' (see image), then crashes at startup. And only after 3 or 4 starts, the part of the Imac.

    And there is always an error report, the error in the log below.

    I already did:

    -Reinstallation of operating system (clean)

    -reset of Vram

    No idea what I should do

    Need help

    Thanks to United Nations

    Max

    Model: iMac11, 2, IM112.0057.B03 of BootROM, 2 processors, Intel Core i3 3.06 GHz, 12 GB, MSC 1.64f5

    Graphics card: ATI Radeon HD 4670, ATI Radeon HD 4670, PCIe, 256 MB

    Panic report *.

    panic (cpu 1 0xffffff8005dd155a appellant): Kernel trap at 0xffffff8005d4d27c, type 13 = General protection, records:

    CR0: 0 X 0000000080010033, CR2: 0X00007F9A2F5FF000 CR3: 0X00000003070F400A CR4: 0X00000000000226E0

    RAX: 0XFF38FF801E7E18B8, RBX: 0XFFFFFF8014243800 RCX: 0XFFFFFF802049A960 RDX: 0 X 0000000000000000

    RER: 0XFFFFFF917FB63B90, RBP: 0XFFFFFF917FB63D00, IHR: 0 X 0000000000000000, RDI: 0 X 0000000000000001

    R8: 0 X 0000000000000003, R9: 0 X 0000000000000000 R10: 0XFFFFFF801E811000 R11: 0X0000000000007FD6

    A12: 0 X 0000000000000000 R13: 0XFFFFFF8014243800, R14: 0XE20E11016BA5003A R15: 0XFFFFFF917FB63E68

    RFL: 0 X 0000000000010246, RIP: 0XFFFFFF8005D4D27C, CS: 0000000000000008, SS 0 X: 0 X 0000000000000000

    Lack of CR2: 0x00007f9a2f5ff000, error code: 0 x 0000000000000000, CPU error: 0 x 1, PL: 0

    Backtrace (CPU 1), frame: return address

    0xffffff8155d45df0: 0xffffff8005cde792

    0xffffff8155d45e70: 0xffffff8005dd155a

    0xffffff8155d46050: 0xffffff8005def233

    0xffffff8155d46070: 0xffffff8005d4d27c

    0xffffff917fb63d00: 0xffffff8005d518eb

    0xffffff917fb63f20: 0xffffff8005dd1b4f

    0xffffff917fb63fb0: 0xffffff8005def145

    The process corresponding to the current thread BSD name: SophosScanD

    Mac OS version:

    15 C 50

    Kernel version:

    15.2.0 Darwin kernel version: Fri Nov 13 19:56:56 PST 2015; root:XNU-3248.20.55~2/RELEASE_X86_64

    Kernel UUID: 17EA3101-D2E4-31BF-BDA9-931F51049F93

    Slide kernel: 0x0000000005a00000

    Text of core base: 0xffffff8005c00000

    Text __HIB base: 0xffffff8005b00000

    Name of system model: iMac11, 2 (Mac-F2238AC8)

    Availability of the system in nanoseconds: 86932187118

    last load kext to 83598588321: com.apple.driver.AppleBluetoothHIDKeyboard 181 (addr 0xffffff7f87ee6000, size 16384)

    kexts responsible:

    com Sophos.kext.SAV 9.4.50

    com Sophos.nke.SWI 9.4.50

    com.apple.driver.AppleBluetoothMultitouch 90.3

    com.apple.driver.AudioAUUC 1.70

    com.apple.driver.AGPM 110.20.21

    com.apple.driver.AppleTyMCEDriver 1.0.2d2

    com Apple.filesystems.autofs 3.0

    com.apple.iokit.IOBluetoothSerialManager 4.4.3f4

    com.apple.driver.AppleOSXWatchdog 1

    com.apple.driver.AppleMikeyHIDDriver 124

    com.apple.driver.AppleMikeyDriver 272.51.3

    com.apple.driver.AppleHWSensor 1.9.5d0

    com.apple.driver.AppleHDAHardwareConfigDriver 272.51.3

    com.apple.driver.AppleHDA 272.51.3

    com.apple.driver.AppleUpstreamUserClient 3.6.1

    com.apple.kext.AMDFramebuffer 1.4.0

    com Apple.Driver.pmtelemetry 1

    com.apple.iokit.IOUserEthernet 1.0.1

    com.apple.ATIRadeonX2000 10.0.0

    com.apple.Dont_Steal_Mac_OS_X 7.0.0

    com.apple.driver.AppleLPC 3.1

    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.4.3f4

    com.apple.driver.AppleMuxControl 3.12.6

    com.apple.kext.AMD4600Controller 1.4.0

    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0

    com.apple.driver.AppleHV 1

    com.apple.driver.AppleIntelSlowAdaptiveClocking 4.0.0

    com.apple.driver.AppleFIVRDriver 4.1.0

    com.apple.driver.AppleBacklight 170.8.3

    com.apple.driver.AppleMCCSControl 1.2.13

    com.apple.iokit.IOBluetoothUSBDFU 4.4.3f4

    com.apple.driver.AppleUSBStorageCoexistentDriver 3.7.1

    com.apple.driver.AppleIRController 327,5

    com.apple.driver.AppleUSBCardReader 3.7.1

    com.apple.driver.CoreStorageFsck 517.20.1

    com.apple.driver.AppleFileSystemDriver 3.0.1

    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1

    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0

    com.apple.BootCache 38

    com.apple.iokit.SCSITaskUserClient 3.7.7

    2.8.5 com.apple.iokit.IOAHCIBlockStorage

    com.apple.driver.AppleFWOHCI 5.5.2

    com.apple.iokit.AppleBCM5701Ethernet 10.1.12

    com.apple.driver.AirPort.Atheros40 700.74.5

    com.apple.driver.AppleAHCIPort 3.1.8

    com.apple.driver.usb.AppleUSBEHCIPCI 1.0.1

    com.apple.driver.usb.AppleUSBUHCIPCI 1.0.1

    com.apple.driver.AppleRTC 2.0

    com.apple.driver.AppleACPIButtons 4.0

    com.apple.driver.AppleHPET 1.8

    com.apple.driver.AppleSMBIOS 2.1

    com.apple.driver.AppleACPIEC 4.0

    com.apple.driver.AppleAPIC 1.7

    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0

    com Apple.NKE.applicationfirewall 163

    com Apple.Security.Quarantine 3

    com.apple.security.TMSafetyNet 8

    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0

    com.apple.driver.AppleBluetoothHIDKeyboard 181

    com.apple.driver.AppleHIDKeyboard 181

    com.apple.driver.IOBluetoothHIDDriver 4.4.3f4

    com.apple.driver.AppleMultitouchDriver 304.10

    com.apple.driver.AppleHIDTransport 5

    com Apple.kext.Triggers 1.0

    com.apple.iokit.IOSerialFamily 11

    com.apple.driver.DspFuncLib 272.51.3

    com.apple.kext.OSvKernDSPLib 525

    com.apple.iokit.IOSurface 108.0.1

    com.apple.driver.CoreCaptureResponder 1

    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.4.3f4

    com.apple.iokit.IOBluetoothFamily 4.4.3f4

    com.apple.driver.AppleGraphicsControl 3.12.6

    com.apple.kext.AMDSupport 1.4.0

    com.apple.AppleGraphicsDeviceControl 3.12.6

    com.apple.iokit.IOFireWireIP 2.2.6

    com.apple.driver.AppleHDAController 272.51.3

    com.apple.iokit.IOHDAFamily 272.51.3

    com.apple.iokit.IOAudioFamily 204.3

    com.apple.vecLib.kext 1.2.0

    com.apple.driver.AppleSMBusPCI 1.0.14d1

    com.apple.driver.IOPlatformPluginLegacy 1.0.0

    com.apple.driver.IOPlatformPluginFamily 6.0.0d7

    com.apple.iokit.IOSlowAdaptiveClockingFamily 1.0.0

    com.apple.driver.AppleBacklightExpert 1.1.0

    com.apple.iokit.IONDRVSupport 2.4.1

    com.apple.driver.AppleSMC 3.1.9

    com.apple.driver.AppleSMBusController 1.0.14d1

    com.apple.iokit.IOGraphicsFamily 2.4.1

    com.apple.driver.usb.IOUSBHostHIDDevice 1.0.1

    com.apple.iokit.IOUSBMassStorageClass 4.0.2

    com.apple.iokit.IOUSBHIDDriver 900.4.1

    com.apple.iokit.IOSCSIBlockCommandsDevice 3.7.7

    com.apple.iokit.IOUSBMassStorageDriver 1.0.0

    com.apple.driver.usb.AppleUSBHostCompositeDevice 1.0.1

    com.apple.driver.CoreStorage 517.20.1

    com.apple.driver.usb.AppleUSBHub 1.0.1

    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.7.7

    com.apple.iokit.IOBDStorageFamily 1.8

    com.apple.iokit.IODVDStorageFamily 1.8

    com.apple.iokit.IOCDStorageFamily 1.8

    com.apple.driver.AppleXsanScheme 3

    com.apple.iokit.IOAHCISerialATAPI 2.6.2

    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.7

    com.apple.driver.AppleUSBMergeNub 900.4.1

    4.5.8 com.apple.iokit.IOFireWireFamily

    com.apple.iokit.IOEthernetAVBController 1.0.3b3

    com.apple.driver.mDNSOffloadUserClient 1.0.1b8

    com.apple.iokit.IO80211Family 1110.26

    com.apple.iokit.IONetworkingFamily 3.2

    com Apple.Driver.corecapture 1.0.4

    com.apple.iokit.IOUSBFamily 900.4.1

    com.apple.iokit.IOAHCIFamily 2.8.1

    com.apple.driver.usb.AppleUSBUHCI 1.0.1

    com.apple.driver.usb.AppleUSBEHCI 1.0.1

    com.apple.iokit.IOUSBHostFamily 1.0.1

    com.apple.driver.AppleUSBHostMergeProperties 1.0.1

    com.apple.driver.AppleEFINVRAM 2.0

    com.apple.driver.AppleEFIRuntime 2.0

    com.apple.iokit.IOHIDFamily 2.0.0

    com.apple.iokit.IOSMBusFamily 1.1

    com Apple.Security.sandbox 300.0

    com.apple.kext.AppleMatch 1.0.0d1

    com.apple.driver.AppleKeyStore 2

    com.apple.driver.AppleMobileFileIntegrity 1.0.5

    com.apple.driver.AppleCredentialManager 1.0

    com.apple.driver.DiskImages 417.1

    com.apple.iokit.IOStorageFamily 2.1

    com.apple.iokit.IOReportFamily 31

    com.apple.driver.AppleFDEKeyStore 28.30

    com.apple.driver.AppleACPIPlatform 4.0

    com.apple.iokit.IOPCIFamily 2.9

    com.apple.iokit.IOACPIFamily 1.4

    com.apple.kec.Libm 1

    com Apple.KEC.pthread 1

    com Apple.KEC.corecrypto 1.0

    Model: iMac11, 2, IM112.0057.B03 of BootROM, 2 processors, Intel Core i3 3.06 GHz, 12 GB, MSC 1.64f5

    Graphics card: ATI Radeon HD 4670, ATI Radeon HD 4670, PCIe, 256 MB

    Uninstall Sophos developers and test instructions.

  • Address of the 0x10001b12 function caused a protection fault

    Nice day!

    I have a problem. After you have installed the driver for printer HP LaserJet CP5225, users with OS Windows7 64-bit Enterprise had an error function address 0x10001b12 caused a protection fault (exception code 0xc0000005). This error every 5 minutes, this seriosly interfere with work processes.

    I need your expert help. Thank you!

    Problem was a bad printer driver. I changed works it to HP Universal printing PCL 5 (version 5.2) and everything fine!

  • When you try to print to get address of 0x9ab41f function message caused a protection fault. (code 0xc0000005 exception)

    Original title: address of the 0x9ab41f function caused a protection fault.

    When I try to select preferences for my Canon MG6150 when you print a word document, the screen freezes after posting a panel with:

    Address of the 0x9ab41f function caused a protection fault. (code 0xc0000005 exception). The application property sheet pages may not work properly.

    I have to reboot to unlock the computer.

    Tried reloading the software canon and windows 7, but still no joy have the same failure anyone can help me fix this please?

    Hello

     

    Welcome to the Microsoft community!

    When you try to print a word document, you get the message as the address of the function 0x9ab41f caused a protection fault. (code 0xc0000005 exception). The application property sheet pages may not work properly.

    To help you better, we need more information.

    Is the issue limited to word document or it occurs with other documents as well?

    To work with the question, I would say that you are running the printer troubleshooter.

    Visit the site:

    Open the printer Troubleshooter

    http://Windows.Microsoft.com/en-in/Windows7/open-the-printer-Troubleshooter

    You can also consult the site:

    Why can I not print?

    http://Windows.Microsoft.com/en-us/Windows7/why-cant-I-print

    I hope this helps. If you need assistance or if you have problems of Windows in the future, let us know and we would be happy to help you.

  • Unable to print error: ' 0xf4896fda caused a protection fault (code 0xc0000005 exception).

    Original title:

    Printing error on HP OfficeJet Pro 8500

    I'm on Windows7 64 bit and that you have installed the solution Center HP for the operating system of law.  Digitization of works fine but when trying to print on HP OfficeJet Pro 8500, an error message says "0xf4896fda caused a protection fault (code 0xc0000005 exception).  What should I do?

    Hello
    1. If it works much earlier?
    2. You did changes to the computer before the show?
    3. You are not able to print files or specific files?
    4. How the printer is connected to the computer?
    5. How you want to print? With the help of what program?
    6. The problem occurs with printing online or offline?
    Method 1:
    You can run the fixit from the following link and check if it works:
    Diagnose and automatically fix problems printing and printer
    Method 2:
    Printer in Windows problems
     
    Method 3:
    You can also consult the following link:
    Why can I not print?
     
    I hope this helps!
  • USB Thumb Drive (UHYBS-064GH) format/write protection fault

    Hello

    Hoping for help.

    Bought a 64 b USB Thumb Drive (UHYBS-064GH), a private seller, but the point is brand new in packaging.

    When I tried to copy files through him, he maxed out at comments 45Gig and seems to have caused a clerical error. I was able to remove the majority of the cases, however on 5gig of them would not remove (in that they seem to have removed, until you updated).

    To counter this, I tried to "quick format", the drive (using Windows XP SP3), but the disc is write protected and I am unable to remove it.

    Spoke to a friend who told me that I should try a low-level format, which tried & it seemed to work, however when I insert the USB system indicates that the drive is not formatted & I would like to format. When you click Yes, I get the error 'write protected '.

    Was the question of the google machine & even tried to change registry settings, but also failed.

    So I hope someone out there has a solution for me (which does not include a big hammer & some anger management)...?

    Would it be possible that this USB drive is defective?
    In my opinion, you should contact the merchant and must replace it with another.

  • Why Firefox hang when I open the printing preferences to print Web pages on my Dell 720 inkjet, after that Windows XP gives me the warning on a protection fault 0 x 0000005?

    I can copy text from websites and paste it into MS Word, where I can print fine in B & W or color. I can print from wordpad, too. And I had no problems printing in Internet Explorer. I'm just cannot open the printing preferences window when you use Firefox 7.0.1 and I don't have any add-ons like "Print Print Preview Update" (Acrobat, Silverlight, Office, and a few others). Firefox crashes when I try to open the printing preferences, but I am still able to print, only in the default settings. I use a Dell 720 inkjet connected to an IBM Thinkpad R51e with reinstalled Windows XP Home Edition 2002 SP3, processor Intel Pentium M 1.73 GHz 1.87 GB RAM (added). I installed the printer driver before connecting the printer, and I use Avira antiviral software. This laptop has had problems in the past, but I don't want to give up on this. Please ask if you need more information.

    I completely removed Firefox 7.0.1 and replaced by 5.0.1 and now I can open the printing preferences. Follow these instructions:

    Create a system first, restore point if you want.

    Then, click on start, Control Panel, programs and features. Uninstall Mozilla Firefox.

    Reach...

    If 32 bits...
    C:\Program Files

    If 64-bit...
    C:\Program Files (x 86)

    And delete the Mozilla Firefox folder.

    This should give you a fresh start. Then install the old version. Just bookmarks can be imported from Internet Explorer or registered before switching versions

  • FATAL RUN - TIME ERROR: Unknown Source Position, thread 0x000019A8, the program id caused a failure of 'General Protection' to 0x685415E4

    I use sqltoolkit 2.0 & window 7 OS, when I am downloading the data from database.   Then, I get this error.

    Features gels can be treated by the generation of the map file and checking the address error with those found in the mapping file. See this discussion for an example.

  • Lack of 'General Protection' to 001 B: 0040269 A


    Hi, ASIC,.

    Thank you very much to clarify the steps that I can now reproduce the GPF, you see. In fact, you don't have to be in Classic view to see this behavior that occurs with the vision of integrated as well.  In any case, for your reference, the ID of the bug is #99057.

    Please report this to us and I'll see if we can fix this problem in our version of upcoming maintenance for you.

    Best regards

  • address of the 0xf9ad6fda function caused a protection fault

    Hello

    Using Server 2008 R2 and have had printers installed for about 5-6 weeks now with no problems until today.
    This problem occurs on all our 8000 HP officejet printers and it does not occur on the 8100 or different models of printers.

    Nathan

    Server problems are better demand on Technet

    http://social.technet.Microsoft.com/forums/en-us/categories/

Maybe you are looking for

  • Cannot save pages or images

    HelloI've recently updated my Firefox to version 19.0.2 on my Mac under OS X 10.6.8.Now, I can't save images or pages on my hard drive, when it worked fine using Firefox 16. Please help me with that! Thank youChaitanya

  • Help on installing Win 98 please - CD not recognized

    Hello. Recently, I reformatted my toshiba portege 3480CT so that I can get everything on it, start fresh and put on a new copy of windows 98 / THIS. However, once I reformatted it, he also erased it which now does not let it recognize a CD driver, I

  • How do I remove photos from my iPad but leave them in iCloud

    I bought a new iPad with less storage than my current. I have a lot of pictures that are currently on my iPad and also stored in iCloud. Can I remove photos from my iPad, but leave them in iCloud?

  • I forgot my windows password. How can I restore it?

    I entered a password for my administrator account before I left my home so that no one would be able to enter my computer while I was there, when I got home I couldn't is no longer on my account.

  • Windows Vista SP1 installs, not anything else

    None of the suggestions work threads. I reinstalled same full operating system from the original cd. I had already replaced the hard drive as the old man a bad wwnt. Just curious, if maybe the old hd had a license or something attaching it to the pro