Help with BT6500 showing "no number"

I purchased a pair of BT6500 about 4 months ago and it has been brilliant for screening out nuisance calls, witheld calls and international calls etc but for the last 2 days whenever anyone rings the screen says "no number" instead of showing who's calling. I definitly have caller ID on my phone and  it has always worked fine. This has got so annoying and I have answered a couple of numbers which I know should be blocked but they are now getting through. Nothing has changed on the settings, no one has been messing around with the phones, I am now finding this increasinly frustrating. Can anyone shed any light on this please. I would be really greatful. Thanks

Hi Flowerfairy,
Welcome and thanks for posting!
Have you had a look at the user guide for that model of handset?  My advice would be to check it out and you can also contact product support if the problem persists.  Their number is on there too.
All the best,
Robbie
BTCare Community Mod
If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

Similar Messages

  • Help with Alert.show()

    I need help with Alert.show(). My goal is to display a message box when a button is pressed.
    My program header:
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/mx"
    actionBarVisible="true" fontWeight="normal" overlayControls="false"
    tabBarVisible="true" textAlign="right" title="tipCalc">
    //// start of script section:
    <fx:Script>
            <![CDATA[
            import mx.controls.Alert;
            import mx.events.CloseEvent;
    // show a message box when button pressed
    protected function about_clickHandler(event:MouseEvent):void
                Alert.show( "This is a message!", "Dialog Title" );    }
    This results in the errors below:
    Access of undefined property Alert.
    Definition mx.controls:Alert could not be found.  

    Well, me and my three days of Flash Builder are lost in the woods. I have no idea how to do what you suggest. The code Google's showing me seems to call for scrapping my working functional program and starting from scratch. For a message box.
    Can I add a message box to my existing code?
    Here's the header...
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/mx"
    actionBarVisible="true" fontWeight="normal" overlayControls="false"
    tabBarVisible="true" textAlign="right" title="tipCalc">
    And here's theclickHandler that should call the popup.
        protected function about_clickHandler(event:MouseEvent):void
                    //  Call a message box.

  • Need help with gallery showing .jpg AND .swf

    Hi all,
    I have an image gallery that loads images and swf-files from an XML-file. The .jpg's load and display just fine, but the .swf files won't show. The data is loaded though. Any help is greatly appreciated!
    Thanks so much in advance,
    Dirk
    My XML file looks like this:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <slideshow>
    <image src="photo1.jpg" time="1" title="test" desc="test" artist="sabre" link="" target="_self" />
    <image src="photo2.jpg" time="3" title="test2" desc="test2desc" artist="sabre" link="" target="_self" />
    <image src="flash1.swf" time="2" title="test3" desc="test3desc" artist="sabre" link="" target="_self" />
    </slideshow>
    And the AS3:
    // import tweener
    import caurina.transitions.Tweener;
    // delay between slides
    const TIMER_DELAY:int = 5000;
    // fade time between slides
    const FADE_TIME:Number = 1;
    // flag for knowing if slideshow is playing
    var bolPlaying:Boolean = true;
    // reference to the current slider container
    var currentContainer:Sprite;
    // index of the current slide
    var intCurrentSlide:int = -1;
    // total slides
    var intSlideCount:int;
    // timer for switching slides
    var slideTimer:Timer;
    // slides holder
    var sprContainer1:Sprite;
    var sprContainer2:Sprite;
    // slides loader
    var slideLoader:Loader;
    // current slide link
    var strLink:String = "";
    // current slide link target
    var strTarget:String = "";
    // url to slideshow xml
    var strXMLPath:String = "xml.xml";
    // slideshow xml loader
    var xmlLoader:URLLoader;
    // slideshow xml
    var xmlSlideshow:XML;
    function initSlideshow():void {
    // hide buttons, labels and link
    mcInfo.visible = false;
    btnLink.visible = false;
    var request:URLRequest = new URLRequest (strXMLPath);
    request.method = URLRequestMethod.POST;
    var variables:URLVariables = new URLVariables();
    variables.memberID = root.loaderInfo.parameters.memberID;
    request.data = variables;
    var loader:URLLoader = new URLLoader (request);
    loader.addEventListener(Event.COMPLETE, onXMLLoadComplete);
    loader.dataFormat = URLLoaderDataFormat.VARIABLES;
    loader.load(request);
    // create new timer with delay from constant
    slideTimer = new Timer(TIMER_DELAY);
    // add event listener for timer event
    slideTimer.addEventListener(TimerEvent.TIMER, nextSlide);
    // create 2 container sprite which will hold the slides and
    // add them to the masked movieclip
    sprContainer1 = new Sprite();
    sprContainer2 = new Sprite();
    mcSlideHolder.addChild(sprContainer1);
    mcSlideHolder.addChild(sprContainer2);
    // keep a reference of the container which is currently
    // in the front
    currentContainer = sprContainer2;
    // add event listeners for buttons
    btnLink.addEventListener(MouseEvent.CLICK, goToWebsite);
    btnLink.addEventListener(MouseEvent.ROLL_OVER, showDescription);
    btnLink.addEventListener(MouseEvent.ROLL_OUT, hideDescription);
    mcInfo.btnPlay.addEventListener(MouseEvent.CLICK, togglePause);
    mcInfo.btnPause.addEventListener(MouseEvent.CLICK, togglePause);
    mcInfo.btnNext.addEventListener(MouseEvent.CLICK, nextSlide);
    mcInfo.btnPrevious.addEventListener(MouseEvent.CLICK, previousSlide);
    // hide play button
    mcInfo.btnPlay.visible = false;
    function onXMLLoadComplete(e:Event):void {
    // show buttons, labels and link
    mcInfo.visible = true;
    btnLink.visible = true;
    // create new xml with the received data
    xmlSlideshow = new XML(e.target.data);
    var  unesc_xmlSlideshow:XML = new XML(unescape(xmlSlideshow));
    // get total slide count
    intSlideCount = unesc_xmlSlideshow..image.length();
    // switch the first slide without a delay
    switchSlide(0);
    function fadeSlideIn(e:Event):void {
    var  unesc_xmlSlideshow:XML = new XML(unescape(xmlSlideshow));
    // add loaded slide from slide loader to the
    // current container
    addSlideContent();
    // clear preloader text
    mcInfo.lbl_loading.text = "";
    // check if the slideshow is currently playing
    // if so, show time to the next slide. If not, show
    // a status message
    if(bolPlaying) {
      mcInfo.lbl_loading.text = "Next slide in " + unesc_xmlSlideshow..image[intCurrentSlide].@time + " sec.";
    } else {
      mcInfo.lbl_loading.text = "Slideshow paused";
    // fade the current container in and start the slide timer
    // when the tween is finished
    Tweener.addTween(currentContainer, {alpha:1, time:FADE_TIME, onComplete:onSlideFadeIn});
    function onSlideFadeIn():void {
    // check, if the slideshow is currently playing
    // if so, start the timer again
    if(bolPlaying && !slideTimer.running)
      slideTimer.start();
    function togglePause(e:MouseEvent):void {
    var  unesc_xmlSlideshow:XML = new XML(unescape(xmlSlideshow));
    // check if the slideshow is currently playing
    if(bolPlaying) {
      // show play button
      mcInfo.btnPlay.visible = true;
      mcInfo.btnPause.visible = false;
      // set playing flag to false
      bolPlaying = false;
      // set status message
      mcInfo.lbl_loading.text = "Slideshow paused";
      // stop the timer
      slideTimer.stop();
    } else {
      // show pause button
      mcInfo.btnPlay.visible = false;
      mcInfo.btnPause.visible = true;
      // set playing flag to true
      bolPlaying = true;
      // show time to next slide
      mcInfo.lbl_loading.text = "Next slide in " + unesc_xmlSlideshow..image[intCurrentSlide].@time + " sec.";
      // reset and start timer
      slideTimer.reset();
      slideTimer.start();
    function switchSlide(intSlide:int):void {
    // check if the last slide is still fading in
    if(!Tweener.isTweening(currentContainer)) {
      // check, if the timer is running (needed for the
      // very first switch of the slide)
      if(slideTimer.running)
       slideTimer.stop();
      // change slide index
      intCurrentSlide = intSlide;
      // check which container is currently in the front and
      // assign currentContainer to the one that's in the back with
      // the old slide
      if(currentContainer == sprContainer2)
       currentContainer = sprContainer1;
      else
       currentContainer = sprContainer2;
      // hide the old slide
      currentContainer.alpha = 0;
      // bring the old slide to the front
      mcSlideHolder.swapChildren(sprContainer2, sprContainer1);
      // delete loaded content
      clearLoader();
      // create a new loader for the slide
      slideLoader = new Loader();
      // add event listener when slide is loaded
      slideLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, fadeSlideIn);
      // add event listener for the progress
      slideLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, showProgress);
      var  unesc_xmlSlideshow:XML = new XML(unescape(xmlSlideshow));
      // load the next slide, seems to f*ck up here...
      slideLoader.load(new URLRequest(unesc_xmlSlideshow..image[intCurrentSlide].@src));
      // show description of the next slide
      mcInfo.lbl_description.text = unesc_xmlSlideshow..image[intCurrentSlide].@title;
      // show artist's name of the next slide
      mcInfo.lbl_artist.text = unesc_xmlSlideshow..image[intCurrentSlide].@artist;
      // set link and link target variable of the slide
      strLink           = unesc_xmlSlideshow..image[intCurrentSlide].@link;
      strTarget          = unesc_xmlSlideshow..image[intCurrentSlide].@target;
      mcInfo.mcDescription.lbl_description.htmlText = unesc_xmlSlideshow..image[intCurrentSlide].@desc;
      // show current slide and total slides
      //mcInfo.lbl_count.text = (intCurrentSlide + 1) + " / " + intSlideCount + " Slides";
      mcInfo.lbl_count.text = " Slide " + (intCurrentSlide + 1) + " / " + intSlideCount;
    function showProgress(e:ProgressEvent):void {
    // show percentage of the bytes loaded from the current slide
    mcInfo.lbl_loading.text = "Loading..." + Math.ceil(e.bytesLoaded * 100 / e.bytesTotal) + "%";
    function goToWebsite(e:MouseEvent):void {
    // check if the strLink is not empty and open the link in the
    // defined target window
    if(strLink != "" && strLink != null) {
      navigateToURL(new URLRequest(strLink), strTarget);
    function nextSlide(e:Event = null):void {
    // check, if there are any slides left, if so, increment slide
    // index
    if(intCurrentSlide + 1 < intSlideCount)
      switchSlide(intCurrentSlide + 1);
    // if not, start slideshow from beginning
    else
      switchSlide(0);
    function previousSlide(e:Event = null):void {
    // check, if there are any slides left, if so, decrement slide
    // index
    if(intCurrentSlide - 1 >= 0)
      switchSlide(intCurrentSlide - 1);
    // if not, start slideshow from the last slide
    else
      switchSlide(intSlideCount - 1);
    function showDescription(e:MouseEvent):void {
    // remove tweens
    Tweener.removeTweens(mcInfo.mcDescription);
    // fade in the description
    Tweener.addTween(mcInfo.mcDescription, {alpha:1, time:0.5, y: -1});
    function hideDescription(e:MouseEvent):void {
    // remove tweens
    Tweener.removeTweens(mcInfo.mcDescription);
    // fade out the description
    Tweener.addTween(mcInfo.mcDescription, {alpha:0, alpha:1, time:0.5, y: 30});
    function clearLoader():void {
    try {
      // get loader info object
      var li:LoaderInfo = slideLoader.contentLoaderInfo;
      // check if content is bitmap and delete it
      if(li.childAllowsParent && li.content is Bitmap){
       (li.content as Bitmap).bitmapData.dispose();
    } catch(e:*) {}
    function addSlideContent():void {
    // empty current slide and delete previous bitmap
    while(currentContainer.numChildren){Bitmap(currentContainer.getChildAt(0)).bitmapData.disp ose(); currentContainer.removeChildAt(0);}
    // create a new bitmap with the slider content, clone it and add it to the slider container
    var bitMp:Bitmap =  new Bitmap(Bitmap(slideLoader.contentLoaderInfo.content).bitmapData.clone());
    currentContainer.addChild(bitMp);
    // init slideshow
    initSlideshow();

    I'm sorry, you're right! Didn't intend to be lazy...
    This line loads the image in the loader 'slideLoader'. This seems to work fine with image files (.jpg), but .swf files are ignored. Is it possible to load both .jpg AND .swf files in a loader, or do I have to use some other method for this?
    slideLoader.load(new URLRequest(unesc_xmlSlideshow..image[intCurrentSlide].@src));
    Thanks again,
    Dirk

  • Help with phone recognizing new number

    I switched my phone number to another line on my plan and cancelled the previous line.  The CSR told me that everything worked fine, and if I powered my phone off and back on my phone would be updated with the new number.  Well I hung up with her, powered my phone off and on, and under my phone number in settings it still says the old number. So I logged in online and my phone shows its with the number I switched it to so that's correct.  I even powered it off and took the sim card out and put it back in and it stil wont recoginze the new number. Now I can't call the CSR back for help because it's the only phone I have and it says I'm roaming.  Please help! Thanks

    What kind of phone do you have?

  • Please help with slide show creation

    I purchased the bundle of photoshop and premier elements 10.  I was trying to create a slide show and was informed that photoshop elements 10 does not come with a slide show for APPLE.  now I hae been told I can creat a slide show in premier.  can anyone tell me how and where do I go to create it in preimer.
    Also I had purchased the professional version of Photoshop but when I purchased elements 10 on line and downloaded it my professional photoshop was replaced with the elements 10 vesion of photoshop.  Is there anyway I can recover my professional version.
    I was thinking of buying elements 11 but beging to fell what is the use if I can not get element 10 to work for me.
    Please help thanks
    Cham

    filmmaker863 wrote:
    ....when you drop the pic in to the time line do you use the scene setting or the standard timeline setting.  how do you change the time eact pic will show on screen.
    I'm confused by what you mean when you write "scene setting or standard timeline setting".  In version 11, I use "Expert" as my standad timeline setting.  The other is "Quick" and I have never used it.
    The time for each pic starts with a default setting that can be changed.  Then each slide can be streched or shrunk with mouse control.
    Bill

  • Need help with rounding up a number

    In my codes, there is a loop and when I cfdump the value, it
    looks like this:
    2.0,.3.0,4.0, all the way to 32.0, etc
    I need to use these number in a For Loop from="1"
    to="#ThisNumber#" but first I need to round it up so ThisNumber
    will come out as a whole number and not with the dot zero
    Is there a function in CF that can do this? Please help!

    alecken wrote:
    > In my codes, there is a loop and when I cfdump the
    value, it looks like this:
    > 2.0,.3.0,4.0, all the way to 32.0, etc
    > I need to use these number in a For Loop from="1"
    to="#ThisNumber#" but first
    > I need to round it up so ThisNumber will come out as a
    whole number and not
    > with the dot zero
    > Is there a function in CF that can do this? Please help!
    >
    A quick glance at the documentation for mathmetical functions
    turns up
    int(), floor() and ceiling() depending on how you would like
    to round
    different types of numbers.

  • New help with "slide show"

    Up until 2009 I used Final Cut Express to create "slide shows" using stills, video footage, alpha overlays, and animated transitions with a voice track and one or or more music and audio effects tracks.
    In 2009 I retired and later bought a new iMac with Final Cut Pro X and Mountain Lion. "Just for fun."
    Naturally, somebody important in my life has now asked me to produce a 5 minute show and I have less than two months to get it done using FCPX.
    It needs to be NTSC SD because of the projection equipment available and I'd like to create the stills in Photoshop, just as I did in the "old days".
    Can anybody point me toward some material that will help me make this transition to the new software, and rapidly? Unfortunately, the expectations are high.
    Please?
    Thanks.

    OK as nobobdy's answered I'll recommend my book and online training. Go here
    http://www.fcpxbook.com
    for more information.
    As you might expect I stand to profit from this message.

  • Help with Ram & a Model number.

    Hi,
    Trying to purchase some additional RAM for my daughters iMac on the stealth. I have the model number #A1174 and the basics - like it's a 20", 2.0GHZ, and that it came with 512 MB installed - can anyone tell me by looking at the model number if this is one of the new Intel Duo Core machines? I want to be sure and order the correct RAM.
    thanks!
    -todd

    For the money, right now there are tons of the 512MB modules of 667MHz SO-DIMM memory being offered on eBay by individual owners who are upgrading their Intel-based iMacs, MacBooks, MacBook Pros and minis, any of which RAM will work in your iMac. Due to the quantity being offered, one can be purchased for a fraction of the amount as new, usually no more than $35 total, including shipping. Many of them have even been removed prior to ever being used.
    There are not too many similar 1GB modules available, although some MacBook Pro owners of the new Core 2 Duo are replacing one of two of their base 1GB modules with a 2GB module (the result being 3GB of memory). Those modules will work problem free in a Core Duo.
    For quick purchase of best quality, in fact, one of the best current prices appears to be a sale price with free shipping from one of the four main memory suppliers to Apple - U.S. based Micron, whose fully owned subsidiary Crucial retails their memory to the public at crucial.com. I just checked and their # CT500622 is 132.29 plus sales tax. You get a warrranty, which isn't the case with an eBay purchase. I've bought a lot from both of the sources I've recommended, and haven't had a problem with either, so haven't yet needed a warranty.

  • Urgent help with Adobe Audition Serial Number

    I have been trying for hours to install my Adobe Audition 1.0 on my new computer (OS Win 7). Since my software purchase a number of years ago, the same serial number was accepted just fine on my two old computers (that are no longer working) but, this time, my new computer will not recognize my serial number. I have tried over and over and over again without success.
    Does anyone know why this is happening all of a sudden, and how can it be rectified?
    I need help, desperately. :-(

    You MAY be one of the people who's program is no longer supported or activated
    CS2 (and earlier) Activation Server replacement software
    http://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.htm l

  • Need help with a simple prime number output program

    ok, the teacher asked for a program to output the first 90 prime numbers and i have been able to do that so far. but now he is asking for the numbers to be printed in a grid of columns and rows. specifically 9 across and 10 down.
    im stumped. what should i do 0_o
    so far, this is my program:
    package primetest;
    public class Main {
    public static void main(String args[]){
    int num1,num2;
    int flag=0; //Checks to see if the number in question is prime or not
    for(num1=1;num1<=463;num1++)
    flag=0;
    for(num2=1;num2<num1;num2++) //Remove the num2<=num1 and let it be as shown
    if(((num1%num2)==0) & num2!=1) //Thus you can remove the third condition
    flag=1; //Flag set to indicate that the number is prime
    if(flag==0)
    System.out.println(num1);
    }

    Congratulations, your code compiles, runs, and appears to produce correct output. (I didn't check every result.) That's far more than most students manage.
    I'd recommend that you separate generating the values from printing them. Can you store primes in an array and then pass that array to another method that prints them out according to your assignment's requirements?
    The good news is that you've solved a good chunk of the problem already. You only have the printing to worry about.
    I'd improve on your class naming. Main? C'mon. How 'bout PrimeFinder or something with a bit more imagination. Names matter in programming. If you gave me this class I'd have to look at the source code to figure out what Main did, but PrimeFinder gives me a hint just from the name.
    Move that stuff out of the main() method and into one of its own. Maybe you can pass in the upper limit over which you want the method to search for primes and return an array of values.
    %

  • Help with emails showing in reverse order

    I have a friend who just got their Curve 83XX from Verizon. They are telling me that their emails are showing in reverse order. They have to scroll down to see the newest emails. I have the 8310 and have not been able to locate any options to prevent or correct this. Has anyone run across this before and if so, how can this be corrected? Thanks!

    The NEWEST JUST RECEIVED emails go to the bottom of the message folder, and the older ones are at the top?
    OR, does the user open their message folder each time and it defaults to the bottom of their message list, and they must scroll UP to the top?
    The latter is most likely. Tell them -- while IN the message folder to press the T key to go immediately to the top of the list, press B to go immediately to the bottom of the list.
    When they exit the Message folder, make sure they are / have scrolled to the top of the list, and the next time they open the messages folder it will open to the point in which it was closed.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Help with removing a variable number using "find and replace"

    Hey, I have to remove a variable number from a large number of documents.
    How would I do this using "find and replace"
    <text><![CDATA[Coloured 250]]></text>
    250 is an example of the variable number that I will need to remove so it looks like this:
    <text><![CDATA[Coloured]]></text>
    Note: the text "coloured" is subject to change also.
    Thanks

    That's a possibilitly I'll explore.  Thanks for the alternate perspective!
    (5 minutes later)
    Oh well, it was a good thought.
    Unfortunately each line of raw original text may contain from 1 to 4 lines of final text.  In other words there is no consistency in the number of backslashes (hard returns) in each line of original text, and thus, when backslashes are converted to commas, no consistency in the number of data elements in each data set. 
    Sadly PS variables will not handle finding a source text line that does not have data for 4 variables.  So I either have to go back and add enough commas on each short line to make four individual data elements for each data set... or I simply deal with the hard returns within Photoshop.
    I think I've reached the limit of automation on this process.

  • Help with setting up mobile number for imessage

    the imessage will not detect my mobile number to send and recieve imessages from that number, i have tried resetting network settings and resetting my phone but it still does not work. It only works for my email,  if anyone could help that would be great.

    You can do one of the following
    1. Alerts
    2. Create an Appointment/Task and add all the users. You can do it manually or using the Import Wizard.
    I don't see a way to create recurring tasks/appointments or automate this process.

  • Help with HD shows on iTunes

    Hi...when i download the tv shows in HD (i also get the SD version i know) but the problem is that it says the HD version cant be found (it has the ! next to it) Also on my parents iTunes account it wont sync to the apple TV, it says the "Apple TV" cant be found. but it syncs everything but the HD shows...very frustrating bc ive unplugged it, wiped it and everything
    thanks

    It's happening to everyone. iTunes downloads the HD version, then downloads the SD version, and overwrites the HD version with the SD version. Thus, the HD version is gone.
    The workaround I've found is to pause the SD download but allow the HD one to finish. Then quit iTunes and restart it, and allow the SD download to proceed, and it will save alongside the HD version instead of erasing it.
    One assumes that when Apple fixes the problem they will let you re-download the lost files.

  • Help with Billing and vanity number?

    So here's what I want to do. I want to get verizon home phone service, under my name, at my buddy's house, and have the bill sent to me. I want it at his house because in his area I can get the number I want. Then, I want to port the number to my verizon wireless account. Then, I want to port that (now cell) number over to my new sprint account (which will already have an old number by this point.
    A few questions: one—can you have home phone service but have your bills sent elsewhere? Two, if this service is for a new line, will he have to deal with technicians or anything? I just want to do get one month of service and then immediately cancel.  Will there be any issues with his first number? Basically, I'm trying to have it done, with his consent, but having no impact on his current phone service and life.
    Second, all these portings, if I do them in order, they should work out, right?
    Thank you so much.

    HenrikIbsen wrote:
     I just want to do get one month of service and then immediately cancel.  Will there be any issues with his first number? Second, all these portings, if I do them in order, they should work out, right?
    You are going to have to sign up for a contract of at least one year for most any telephone service. In addition, all of those portings will quickly become a nightmare in my opinion. Porting is not immediate and sometimes takes weeks to go through.
    Good luck though.
    ~~ "It's not a bug. It's an undocumented feature."

Maybe you are looking for

  • How to connect my apple air I pad to my printer model 5520

    Hoe-printer model 5520 unable to connect my Apple iPad air to my printer/unable to connect my samsung notebook 10.1

  • Only opening one program at a time?

    I was wondering if there is a way to restrict a program so that only one instance can be opened at a time.  I have two pieces of motion control software that control the same piece of equiptment (one is for maintenance and one is for normal operation

  • Post many parameters to a report

    Hi, I have a form that has many fields(parameters). I want to pass all these parameters to a report. I have created a pl/sql function to create the dynamic query for me in my report. return /*select 1 from dual*/ package.get_query(:P46_NTR_ID,:P46_NA

  • 10G JNDI problems

    I migrated from 9.0.3 to 9.0.4 and now have the following problem. I am using the local OC4J instance. I am attempting to get the connection to the database using the following code: try Context ctxt = new InitialContext(); DataSource ds = (DataSourc

  • Uploading Invoice with Discount in Line with DTW

    I am trying to upload some invoices with line discount with the DTW . These is an example. There is one item A00001 with 12.00 unit price and 10% discount on that item and 12 quantity. I tried to upload it but doesnt put the discount in the discount