DAQmxCfgSa​mpClkTimin​g NICARD 6031 E PCI and Visual C++ 6.0

To the attention of the support department or someone else wellcome! -):
I am using an NICARD 6031 E PCI. I am also using Visual C++ 6.0.
I declared a variable for an external ANALOG SAMPLE CLOCK. I am supplying
this CLOCK signal to the input PIN /Dev1/PFI7
//, m_sSampClk(_T("ai/SampleClock"))
I am not using this variable now and this is why is commented. Instead, I
just call /Dev1/PFI7 below in the routine.
I am using the following routine to SAMPLE input values based on the
external CLOCK signal entering the /Dev1/PFI7 PIN
nErrorCode = DAQmxCfgSampClkTiming (m_hAnalogTask, //task handle
"/Dev1/PFI7", //Sample Clock from ATMEGA88 (AI SAMP CLK)
50000, //Sampling rate (float64) points per second
DAQmx_Val_Rising, //Acquire samples on rising edges of the
Sample Clock.
DAQmx_Val_FiniteSamps, //Finite mode for buffered hardware
timing acquisition
128); //128 samples per channel
if(nErrorCode!=0) //error encountered
DAQmxGetErrorString(nErrorCode, szErrorMsg, 1024);
AfxMessageBox(szErrorMsg);
Can you please let me know if my routine is correct and I do not need to
declare a variable for the SAMPLE CLOCK because I call it on the routine
directly? I searched examples on your website but I only find LABVIEW and
not Visual C++ examples.
Regards,
Javier Contreras.
Solved!
Go to Solution.

Hi Brad
First of all , thanks very much for your help, it is very much appreciatedI reply below your comments for clarity.
Hi Javier,
To debug a system
with multiple possible points of failure, it really helps to break it
down into smaller, easily verifiable pieces.
For example:
Connect
a known good signal. If you don't know if your position detector works
correctly, then connect something else in its place for now, like a
battery or a function generator. Once you have verified that you can
correctly measure a battery or a signal from a function generator, then
connect your position detector and figure out how to get results that
you expect from it
Ok. I could connect a power supply with a resistance and then I would be injecting a current to the system. In that way I would see on the screen the expected current I am injecting. 
Verify that the signal is connected
correctly using the device test panels in MAX. (Or the DAQ Assistant in
MAX, which allows external clocks and other settings that the device
test panel does not. To get there, right-click "Data Neighborhood",
select "Create New...", select "DAQmx Task", etc.)
Thanks. I already checked whether the connections are properly done in Measurement and Automation Explorer. Never used the DAQ Assistant in Measurement and Automation Explorer but I will try it too. However the connections are correct. Differential with CH0 (PINs 3 and 4 on the 100 pin connector) and CH1 ((PINs 5 and 6 on the 100 pin connector), which is the declared in my code as m_sChannels(_T("Dev1/ai0,Dev1/ai1")). I need differential.
Write your
DAQmx code separately from your UI code. Acquire the data and display
it in a simple, easily verifiable manner (hence OutputDebugString or printf or the debugger). Make sure you get the results you expect.
In the past and now I am using the same UI code to display properly other values from very similar circuits and other circuits, so I believe my UI is working properly for sure.
Write your UI code separately from your DAQmx code. Feed it fake data and make sure it gets displayed correctly.
Again, I am using exactly the same base UI code for other setups and it works fine. 
Once all of the pieces work in isolation, put them together and see if they work together.
I am pretty sure that my UI code works perfectly from other setups.
Looking at your NIWrapper.cpp, here are some specific things you should check:
You
are setting the min/max expected values to -2 and 0. Are those correct?
If you always read -2 or you always read 0, then you should try a wider
range, like -10 and 10. If you're expecting 0-1.8 V, then 0 to 2 would
be better.
Yes, may be I should change it to 0 to 2. However, to be on the safe side just in case my signal polarity is changed, can I use -2 to 2?
You are setting the terminal configuration to
DAQmx_Val_Diff. Make sure you have your signals connected to ACH0/ACH8
and ACH1/ACH9 and that the signals are within +/-10 V of AIGND.
s(Yes the signals are connected properly as I checked in Measurement and Automation Explorer. I declared them as m_sChannels(_T("Dev1/ai0,Dev1/ai1")). Signals within +-10V of AIGND. AIGND is connected to the GND of my circuit as it should. What happened to the UNICODE, etc conversion ISSUE we talked last time? Do I need conversion, etc as you said? I do not have a clue on this conversion issue even after reading your link! -) 
DAQmx
ignores external sample clocks that happen before the task is started.
If you need to send a serial command to start your external device (I
don't know, I didn't read your whole program), it would be better to
start the DAQmx task, send the serial command, and then read from the
DAQmx task, so that you don't miss any external sample clocks.
Yes, this is another issue I was working on. I was trying to send a char, 'r' over the RS232 to synchronise as I did in another code in the past which worked fine.
However, I did not seem to make the MAX232 component do what I wanted. I am using the MAX232a from MAXIM and I attach the datasheet in this email. From my UI code, I first send a char 'r' to an ATMEGA128 microcontroller, and if the ATMEGA128 sees the char 'r' then it starts the sending of data from another component and sends the external CLOCK to the NICARD AIsample pin.
However, the char 'r' from my UI code did not seem to arrive to the ATMEGA128 since it did not start the data acquisition or the clock. I already used this char 'r' approach in the past with the ATMEGA128 too and it worked fine with another type of SMD MAX232. Would it be fine if I measured the voltage values of the MAX232 pins while transmitting the char and then LET you know these values for you to check if the MAX232 works fine?
I also tried another approach to synchronise which is to set from the UI code one pin from the NICARD to HIGH, and then ATMEGA checks if this pin was HIGH and if it was then it transmitted. However, this PIN seemed to stay HIGH and the approach did not work. Of course I would like to synchronise but I have not managed, so I have the ATMEGA128 code sending inside a FOR loop on every iteration.
And the NICARD of course will be receiving sets of 129 CLOCKs on every iteration but spaced with a GAP of 10ms. I wish I could synchronise but it is not working. Can you check the values of the voltages of the MAX232a if I send you the values myself while it is transmitting char 'r'? Just for you to check of course.
You're passing -1 as the timeout for DAQmxWaitUntilTaskDone(). This
will cause DAQmx to wait forever if you don't get enough external
sample clocks, hanging your program.
Yes, I am passing -1. But I am providing enough CLOCK samples (129). I have the CLOCK waveform on a photo I made of the oscilloscope. This hanging of the program was the case, when the ATMEGA128 did not send anything because the PIN remained in the one state HIGH or LOW without changing everytime as it should, in order to inform the ATMEGA128 that it could send data.
I attach the MAX232 component datasheet.
Thanks and best regards.
Javier.
Attachments:
MAX220-MAX249.pdf ‏397 KB

Similar Messages

  • PCIE, PCI, and the quad-core

    I have recenty bought the new Quad-Core, a machine that I am very happy with. However, there is one aspect about it that I am not completely clear about. I understand that the PCIe and PCI cards are not interchangeable. Does the quad-core not have a standard PCI slot? In other words, for any video capture cards or other upgrades, I can only use PCIe, correct?

    Well, I'm glad it is cutting edge, but the costs definitely hurt. I'm looking at $589 for a video capture card and monitoring system. PCI is as little as $300. Oh well!
    Thanks for your input, I appreciate it!
    Quad-Core dual 2.5ghz, 4gb/500gb, FCP5, Boris CC, Powerbook G4 (2)   Mac OS X (10.4.3)   AG-DVX100A (2), mBox, Sony 23" HD LCD,

  • Does Pavilion G6-2342DX have Bluetooth, PCIe and Thunderbolt?

    Hello,
    Does Pavilion G6-2342DX have Bluetooth, PCIe and Thunderbolt?
    And can somebody replace the optical drive of this laptop with another accessory?
    HP Pavilion G6-2343DX

    Hi:
    Below is the link to the product specs for the HP Pavilion g6-2342dx Notebook PC.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03736754&tmp_task=prodinfoCategory&cc=us&dlc=en...
    It does not come with built in bluetooth or bluetooth would be listed along with the 1x1 802.11b/g/n WLAN specification.
    You can:
    1. Replace the wireless card with a supported combination wireless/bluetooth card listed in chapter 3 of the service manual for your model.
    2. Purchase an external USB Bluetooth adapter.

  • Hyperlinks do not work when exporting to PDF (Crystal and Visual Cut)

    I have a question about Crystal Reports XI Release 2 and Visual Cut 11. I create reports in Crystal and export them using Visual Cut. Some reports contain hyperlinks to files on a network drive. However, the links only work while in Crystal. The PDF files that are printed through Visual Cut display the links, but they are not clickable. How can this issue be fixed?
    In case it helps, the links also work when I export reports from Crystal to HTML, Word, and Excel, but not when I export to Acrobat. I believe it is a problem with tagging/accessibilityfeatures. So is there a setting/formula in Crystal or Visual Cut that would allow the exported PDF files to be accessible?

    While Crystal exports to pdf indeed lose hyperlink functionality (both in Crystal as well as in Visual CUT), Visual CUT allows you to use Crystal formulas (acting as hidden Tags) to create hyperlinks in the resulting pdf file. Another option supported by Visual CUT it to automatically detect file references in the pdf text and turn them into hyperlinks.  Contact MilletSoftware for more detail.
    Edited by: Ido Millet on Oct 27, 2010 5:11 PM

  • I am trying to integrate simulink model (.mdl) file with SIT of Labview for RCP and HIL purpose. I am using Labview 8.6, Simulink 6.6 with RTW 6.6 and RTW embedded coder 4.6 ,Visual C Express 2008 and Visual C++ Express 2008.

    I am trying to integrate simulink model (.mdl) file with SIT of Labview for RCP and HIL purpose. I am using Labview 8.6, Simulink 6.6 with RTW 6.6 and RTW embedded coder 4.6 ,Visual C Express 2008 and Visual C++ Express 2008. I have selected system target file as nidll.tlc,make command as make_rtw and template nidll_vs.tmf. When I try to generate .dll file I get the following error.
    Attachments:
    SITProblem.JPG ‏101 KB

    Hi,
    No . I could not solve the issue. Presently we are using microautobox (from Dspace)for doing the RCP.
    Himadri 

  • Voicemail notifications and visual voicemail stopped working

    On September 17th (a few days ago) my phone stopped giving me voicemail notifications and visual voicemail. I have tried restarting my phone, resetting, resetting "all settings" and even calling 611 (I was put on hold for 15 minutes and just gave up thats AT&T service for you).
    The all other notifications like recent calls and mail work just fine. I can retrieve my messages by calling my own phone number. How do I get my voicemail notifications and visual voicemail to work again?
    Thank you for your help.

    I found a solution. http://discussions.apple.com/message.jspa?messageID=10213066#10213066
    "Keveon - to fix your visual voicemail after doing tthe 3.1 update. go to Settings > General > Profile > then remove the BENM.at Call your phone, leave a voicemail and it will work!!!!!! Hope this helps"

  • Lenovo Yoga with Windows 8 Pro, Office 2013 and Visual Studio

    For you developer types, I just wanted to post a message and let you know my experience with Lenovo Ideapad Yoga 13 as a development machine. I bought Lenovo Ideapad Yoga 13 from Bestbuy for $999.99. As expected, it came with a crap ton of bloatware installed by Lenovo.
    Here is a summary of what I did to it (I take no responsilibity for accuracy of below information. You are on your own if you decide to follow them. I am just putting this down from my memory so that I can look it up in the future if I ever need to do this again).
    INITIAL CLEANUP
    Installed Lenovo hotfix for partition cleanup/merging: http://support.lenovo.com/en_US/downloads/detail.page?DocID=DS033035
    Installed Lenovo Touchpad driver fix.
    CAUTION: I take no responsibility for below steps. I am writing them from memory and if you decide to follow them and end up making your machine unusable, you are on your own as Lenovo might not honor your warranty.
    BACK UP ENTIRE DISK (requires an empty USB flash drive for booting and another external USB drive for backup)
    Copied Drivers from D_Backup folder to the external USB hard drive (plugged into USB 3.0 port).
    Installed Paragon Backup & Recovery 2012 Free: http://www.paragon-software.com/home/br-free/
    Created Paragon Backup & Recovery boot USB flash drive with default Linux recovery environment option (flash drive plugged into USB 2.0 port).
    Shutdown Lenovo Yoga.
    Plugged in the Paragon Backup & Recovery boot USB flash drive (USB 2.0 port). 
    Pressed the one key recovery button (next to power button). Went to BIOS.
    In the BIOS, enabled Legacay mode and made Legacy high priority and saved the changes.
    The machine booted into Paragon Backup & Recovery mode. From there, made a backup of entire disk to the external USB hard drive.
    Shut down the machine, pressed the one key recovery button (next to power button). Went to BIOS. Turned off Legacy mode and switched back to UEFI boot mode and saved the changes and restarted the machine.
    Logged into the machine and verified that everything was good and checked the external USB drive to verify that the backup image was present.
    MAKE WINDOWS 8 PRO BOOT USB FLASH DRIVE (requires a second empty USB flash drive and a second computer with Windows 7. This USB Flash Drive has to be between 4GB to 32GB as Windows won't format 64GB flash drives to FAT32 mode)
    (Note: I installed Windows 8 Pro in UEFI mode. See http://pcsupport.about.com/od/windows-8/a/install-windows-8-usb.htm)
    You need a licensed ISO image of Windows 8 Professional Full version (not the upgrade version) from your MSDN or Technet subscription or create an ISO from the Windows 8 Pro full version DVD.
    Download Windows 7 USB/DVD Download Tool on the computer with windows 7.
    Plug in the second empty USB flash drive (has to be at least 4GB but less than 32GB) into the computer with Windows 7.
    Using Windows 7 USB/DVD Download Tool and the ISO file, create the Windows 8 Pro bootable USB Flash drive.
    Create a new folder on your computer disk, for example, C:\WIN8USB.
    Copy all the files from your USB flash drive to the newly created folder (created in the previous step).
    Right click on the USB drive icon in Computer window and select “Format…” from the context menu. Make sure you select “FAT32 (Default)” in “File system” drop down menu. Click “Start” and wait till the drive gets formatted. This step is needed because NTFS is not readable by BIOS in UEFI boot mode. During formatting, MBR is preserved so the thumbdrive is still bootable.
    Copy all the files from the folder you created earlier (C:\WIN8USB, for example) to the formatted drive. Your Windows 8 installation USB drive is ready to install in UEFI mode.
    WIPE THE DISK PARTITIONS
    Shut down the machine, pressed the one key recovery button (next to power button). Went to BIOS, enabled Legacay mode and made Legacy high priority and saved the changes.
    Booted into Paragon Backup & Recovery boot USB flash drive again. This time, I deleted all partitions on the primary disk (Disk 0). CAUTION: This WILL wipe your hard disk and will make your machine unusable!!! 
    Shut down the machine, pressed the one key recovery button (next to power button). Went to BIOS. Turned off Legacy mode and switched back to UEFI boot mode and saved the changes and shut down the machine.
    At this point, the disk is wiped clean. All factory installed software and recovery partitions are gone!!!
    INSTALL WINDOWS 8 PRO
    Plug in the USB Flash Drive with Windows 8 Pro install files.
    Windows 8 Installer would show the unallocated disk space. I can't remember the exact details but either I had to click on Delete or New to delete and then create a new GPT partition. The entire partition was about 119GB.
    From that point, follow the Windows 8 Pro installation steps.
    After booting up into Windows 8 Pro, plug the external USB drive that had the drivers folder backed up from D_backups.
    Install all the drivers from this folder (I was able to install everything except for one Intel fast boot one because of missing partition but my Yoga still boots up just as fast).
    Go to device manager to check and everything should be good now.
    Run Windows Update.
    You should now have about 101GB free on C: drive!!
    INSTALL VISUAL STUDIO, SQL SERVER and OFFICE 2013 ON LENOVO YOGA 13
    I installed the following in that order:
    Microsoft SQL Server 2008 R2 Developer edition (I installed all components, everything!). Then I installed latest service pack.
    Microsoft Visual Studio 2010 (I installed all components, everything!). Then I installed latest service pack.
    Microsoft SQL Server 2012 Developer edition(I installed all components, everything!). Then I installed latest service pack.
    Microsoft Visual Studio 2012(I installed all components, everything!)
    I ran Windows update and also installed Nov 2012 updates of SQL Server Data tools.
    I then installed Office 2013 Pro Plus.
    MAKE LENOVO YOGA 13 MORE SECURE
    Go to Control Panel and enable Windows Defender (it is included by default in Windows 8 and is anti-virus and anti-malware solution)
    Enable full hard-disk encryption using BitLocker feature of Windows 8 Pro. Since Lenovo Ideapad Yoga 13 doesn't have hardware TPM, you have to enable password based option. For this, follow the steps here: http://rics.partners.org/show_article.php?id=274. 
    Basically, you go to GPEDIT.MSC and Open Computer Configuration => Administrative Templates => Windows Components => BitLocker Drive Encryption => Operating System Drives. From the right pane double-click "Require additional authentication at startup. Select Enabled radio button and check the box for "Allow BitLocker without a compatible TPM...". Click OK and close the policy editor. Then Right-click your C drive in the Computer folder, click Turn on BitLocker. Then select Enter a password instead of USB option. Then provide a strong password (make sure to write it down and put it in a SAFE place, if you lose the password, no one can boot into your hard disk). Then select Save to a file and save it to the External Drive. Select "Encrypt entire drive...", click Next. When this is done, you will get a pop-up on the lower-right a prompt to restart the computer. Restart your PC. Enter the encryption password created earlier. If you are successful in getting into Windows, you're all set.
    I also hooked up to Skydrive and used BoxCryptor to encrypt my files in cloud.
    The available free disk space should now be about 54GB.
    I verified that Lenovo Yoga 13 works like a champ with no slowdown with Visual Studio 2010, Visual Studio 2012 and SQL Server Management Studio open simultaneously and Bitlocker enabled!
    The keyboard right SHIFT key is small but other than that, it can work as a great portable development machine and Microsoft Reader is great for reading PDF eBooks.
    So if you are a Developer on Microsoft platform, go right ahead. Lenovo IdeaPad Yoga 13 is great for running Visual Studio 2010 and Visual Studio 2012 (1600x900 resolution is totally usable) while on the move. Since I have only had this machine for a few days, I can't tell much about the long term reliability.
    Solved!
    Go to Solution.

    Thank you for posting this. I am in this exact situation. I purchased a yoga 13, and installed Visual Studio Express 2012 for Windows Phone. As it turns out, the Windows Phone Emulator ONLY works in a Windows 8 Pro environment. Since the Yoga doesn't have a disc drive, I shared my W7 computer's cd drive, then put in Windows 8 Pro, so that it could install onto the Yoga. Well, after the installation was done, I tried running my program again and ran into the same issue. It prompted me that my environment must be Windows 8 Pro! I thought that Windows 8 Pro already installed but, what confuses me is that I see no indication that Windows 8 Pro installed. When I go to the System Window, it reads: "Windows 8". Should it read Windows 8 Pro?
    Ultimately, I'd like to know, are you able to execute the Windows Phone Emulator? I'm not sure as to whether the Yoga has the hardware capability (needs to be SLAT enabled or something like that?), I HOPE it is able to, and judging by your post, it seems like it but I'd love to know your perspective on my approach.
    Please let me know if this makes sense, as I'm new to this kind of thing but really want to start development for Windows Phone.

  • How to install BIDS for SQL Server 2008 R2 and Visual Studio 2008(SSRS,SSIS)

    Hi,
    I want to install SQL Server 2008 R2 and Visual Studio to use SSRS tool, where to download these application. And my System Configuration is Window 8.1,64 Bit.
    Please share step by step information to download and installation. Kindly Reply soon. 
    Thank you
    Pravesh Kumar

    Hi Pravesh Kumar,
    As Visakh16 suggestted that you can download sql 2008 r2 standard and developer editon.
    If you have a subscription associated with your Microsoft account, you can download sql 2008 r2 standard and developer editon from below link, but these two editions are not for free:
    https://msdn.microsoft.com/subscriptions/securedownloads/
    Microsoft also provide the evaluation edition for free use of 180 days. This software is for evaluation and testing purposes. The evaluation is available in ISO format. Web, Standard, Enterprise and Datacenter editions are available via the same download:
    http://www.microsoft.com/en-us/download/details.aspx?id=11093
    More details information about the feature supported by different editions in the article below:
    Features Supported by the Editions of SQL Server 2008 R2
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Release management with Azure and Visual Studio Online (Cloud TFS)

    What strategy would you use to manage the releasing of versioned software to Azure cloud services (web and worker roles)? We are not looking for continuous integration. We are using Visual Studio 2013 and Visual Studio Online (Cloud TFS).
    At one point, we were releasing straight from Visual Studio using the Azure Cloud Project Publish tool. This is really bad practice in my opinion as you can never be sure what you are really releasing. Additionally, there is no automated control on the labeling
    or branching of code, or the running of unit tests and code analysis checks.
    Next, we employed Release builds on Visual Studio Online. Before deployment, one would edit the appropriate Build Definition (whether it be for Test or Production by and filling in the code label (under the "Get Version" build property) that is to
    be released. This would then get the appropriate code (by the label specified), build it, and release it to whatever cloud service is specified in the targeted Cloud Project profile (this is using the AzureContinuousDeployment.11.xaml template).
    There is still a degree of manual intervention involved. Also, the fact that a version of code is built every time before it is released is not ideal (as far as I understand it would be better if it was packaged once).
    Microsoft Release Management tools
    look ideal for the job, but are not supported with Visual Studio Online.
    Is there a better way of handling our releases?

    /waves hand.. These are not the tools you seek. You are looking for continuous integration.
    Although CI has the word continuous in there, it does not mean "all the time, every checkin". It can easily refer only to those bits you want to release - -and the way to tell the system which bits you want released is to merge them to a Releases
    branch.
    If you do this, not only do you get all the joy of controlled CI, but you guarantee what you release is exactly what is controlled in your SCM - under the Releases branch, preferably tagged or otherwise noted as a particular release. That means you can also
    rollback to a previous release by simply reverting to a previous release in your SCM!
    Of course you don't have to let it happen automatically, you can set it up to build 'continually' and then remove the check on the SCM to see if any changes have been committed. You can replace this with the manual build button.

  • Hi, I would like to know if is it possible to install windows on mac pro , because I need to have some application like SQL server and visual studio, and they could not be install on mac

    hi, I would like to know if is it possible to install windows on macbook pro , because I need to have some application like SQL server and visual studio, and they could not be install on mac

    Windows on a Mac

  • HT201593 The newest version of iTunes deletes all of my iPod Touch 5th gen audible and visual media when I delete or add music or video to my library and add it to my device manually. Why?

    The newest version of iTunes deletes all of my iPod Touch 5th gen audible and visual media when I delete or add music or video to my library and add it to my device manually. Why? I guess the question speaks for itself. I have the latest version of iTunes and iOS 8.2 on my iPod Touch.

    If it's any consolation i've just had a similar thing happen. Went to add a playlist and it wiped 35 gig of music off my iPod touch 64g in a nanosecond. I've got the latest iTunes and osx but do not back up because i keep different styles of music (and loads of it) in separate libraries and devices which i don't want mixed together. All my stuff is burned from cd so it's not lost for good and i've got a hard drive with the "lost" mp3 music on it but even so it will take literally weeks to prune the tracks for my iPod to be the same again. Why do they make it so difficult to manage your music on these things. I have massive amounts of music on my computer so autofill is a disastrous unusable gimmick to me. The whole thing seems to be aimed at 9 year old kids with about 6 mp3's on their phone rather than serious music lovers (for example accessing EQ is a joke let alone the lack of a manual option). I'm a dj and use apple for that reason but to be honest i'm beginning to wonder why. I'm absolutely livid. The weird thing is that my mac still shows the titles of the missing tunes in the 'on my device' window but as my macbook storage display shows no increase i'm pretty sure it's all gone. Nightmare. I have no confidence in this device anymore and could barely use the previous osx 8.2 anyway. Why they have to change it every ten minutes is beyond me. As the old saying goes 'if it ain't broke, don't fix it' but this format just gets more broken every time they update. An absolute disgrace. Why not just drag and drop or delete. No wonder the iPod is said to be a dying device, it's for music, it is not a phone. Not fit for purpose anymore. I can't be bothered to read a massive 'how to use' article every update. Good technology should be easier and more intuitive with each new version. I suppose i'll have to phone apple at my expense to find out what's going on, or maybe that's the whole idea. Very very very not happy.

  • Written and visual Instructions to disassemble OfficeJet K60

    Hi,
    I have an old HP Officejet K60 All in one that was only used a few times and then was put into storage. I recently brought it back out and tried to use it, but while trying to align cartridge the print head would move to the left then move back to the right next to the service station and would stall there for a couple of seconds while making this noise (sounds like it was trying to move, but could not) and then the print head would move to the left side and then back to the right (but not into the service station) then it stops there with a waring light blinking and beeps 3 times ("beep-beep-beep", "beep-beep-beep", "beep-beep-beep") and on the LCD screen it says "Clear Carriage Jam". I check and there was no paper jam in there.
    I had a better look into my printer and saw a piece of something obstructing the print carriage from entering the service station. I touched it and it fell over and so I pick it out and it looks like a part that the printer cartridge stands on when in the service station. Took a better look inside with a flash light and it looks like the service station assembly area fell apart. There are parts broken and a spring that is not assemble but just laying around.
    Would someone be nice enough to tell me where I might get written and visual instruction to open and replace that part of the service station?  And does anyone know how much it might cost to have a printer technicion replace the part in the service station?  ball park cost if possible.  If I am unable to replace the part is it worth the cost of having a technician fix it or should I just buy a new printer?  and I just bought new ink! gosh darn it!  Thanks for any assistance. 

    Hi Johnfromglenver,
    There are no Mac drivers for the HP Officejet K60 printer. Therefore it is not compatible with the Mac operating systems. Please call our technical support at 800-474-6836. If you live outside the US/Canada Region please click the link below to get the support number for your region. http://www.hp.com/cgi-bin/hpsupport/index.pl. There may be other solutions that could work for you.
    I hope this information helps.
    Advance 23
    I work on behalf of HP

  • Performance of Weblogic 4.03 and Visual Age 2.0

    Hello,
    I am experiencing severe performance problems when running Weblogic 4.03 and
    Visual Age 2.0. The server runs extremely slowly in this environment,
    however, the 3.13 version did not suffer from this. Has anyone else noticed
    this? Is there anything I can do about it?
    -Andrew

    Andrew Sammons wrote:
    I am experiencing severe performance problems when running Weblogic
    4.03 and Visual Age 2.0. The server runs extremely slowly in this
    environment, however, the 3.13 version did not suffer from this.
    Has anyone else noticed this? Is there anything I can do about it?You can set the following undocumented property in weblogic.properties:
    weblogic.system.gc.intervalSecs=5
    There's some kind of bad interaction between Visual Age and WebLogic's
    garbage collection control. Basically, there's a garbage collection
    task that by default runs once a second, and in the Visual Age VM,
    something it's doing takes more than a second.
    The problem only seems to exist in WebLogic 4.0.3. It doesn't happen in
    4.5.x. Also, according to one report I've had, you may need to set the
    property value to more than 5 on slower machines.
    Note that this property is unsupported, and is not guaranteed to even
    exist in any other version of WebLogic.
         -- Jim
    Jim Edwards-Hewitt http://weblogic.beasys.com [email protected]

  • Using facelets and Visual web jsf frameworks together

    I am developing a new jsf application and I wanted to make the page navigation simpler like making the content pages independently using woodstock components and including them in the main template page.
    I have downloaded Facelets support plugin for netbeans and installed it. I have created a new project using the wizard and i specified the two (facelets and visual web jsf) as frameworks for use. But I failed to leverage my application with facelets because I don't know how to use woodstock components with facelets.
    I am new to jsf and i want the woodstock visual components. Can't I use facelets then?
    Plz help.

    I managed to find a workaround. Thought i should share it with those who are faced with a similar issue.
    I found that a bug report had been placed in the past with Apache Dev. However, they had said that they would not modify their logic because the servlet container spec requires it (even though isapi_redirector is only a connector and not a container). They said that there is no way for the isapi_redirector to differentiate between /foo/WEB-INF when foo is a context and when foo is just a sub-directory of the ROOT web application. So, the general consensus was to err on the side of safety and risk blocking a few requests that are valid.
    However, this causes a serious issue for those using NetBeans JSF Visual Web Projects. Hence, I created my own flavour of isapi_redirector by modifying the code such that this check is not performed and leaving the onus of checking on Tomcat.
    For those who are interested, the simplest way to go about this would be to force the function uri_is_web_inf (in jk_isapi_plugin.c ) to always return FALSE.

  • Where can i download the Jbuilder and Visual Cafe

    i m using window me, where can i download the Jbuilder and Visual Cafe. hope somebody can help. thanks.

    The webpage is www.visualcafe.com , but it will only show you that the product is no longer supported. Used to be a nice product :-(

Maybe you are looking for

  • How to download output from a PL/SQL Procedure

    Hi all I have set up a PL/SQL procedure that sets up the mime type etc. to download the output but IE keeps telling me it can't get the file. I think that it's something to do with the browser wanting to just GET the file and getting extra stuff beca

  • SOAP Sender to RFC Scenario WSDL File

    Hi, I am working on SOAP -> PI -> RFC Scenario. I generated WSDL from sender agreement and gave to the client that can consumed by the third party system. But client is not ready to consume the WSDL. He provided WSDL and asking me to use that. Could

  • I restored my iPod and now all my music isn't syncing

    I restored my iPod because it had a button on the screen that wouldn't go away. Before I restored it, I backed it up on iTunes. Then I hit restore from backup and all my apps got put back on my iPod but only about 100 out of 400 songs were synced ont

  • B570 wont boot recovery key and f11 wont work.

    Hello everyone I'm new here, I've had my B570 for over a year now with no problems what so ever, until last night my computer completely  froze and I was forced to power it down using the power button. I powered it back up and an error came on. It' s

  • Illustrator CC random problems with tools?

    Brush tool will only sometimes allow me to change the stroke size to smaller than 1 pt. Erasure tool acts like a brush tool instead. Color turns to grayscale randomly, when I am using eyedropper or live paint bucket. Love this program but it's gettin