Help on fcpx use for beginners

I'm searching someone who live in italy near vercelli who can help me start use fcpx.
if someone want to help me contact please.
even if anyone knew of the existence of tutorial courses near my city.
I hope in your help.

It all depends on what you consider a "small fee".
Not everyone would think $40 to be small.
I have got the RT tutorials and agree that they are very long and thorough.
However, this could be a drawback to a newcomer, especially one for whom English is not their first language.
The Izzy Video ones concentrate on the basic essentials to get new users started on the app quickly.

Similar Messages

  • Help to write using for all insted of cursor

    Hi,
    Can some one help to rewrite the pl/sql block using FOR ALL.
    DECLARE
      CURSOR c1
      IS
        SELECT SC.ASSESSMENT_TYPE
          || '_EXAMINER' ass,PORTFOLIO_COMMENT_ID
          --BULK COLLECT INTO l_tab
        FROM ibis.CANDIDATE_COMPONENT_REG CCR
        INNER JOIN ibis.CANDIDATE_EXAMINER_ALLOCATION CEA
        ON CCR.SPLIT_SESSION_YEAR  =CEA.YEAR
        AND CCR.SPLIT_SESSION_MONTH=CEA.MONTH
        AND CCR.ASSESSMENT_SCHOOL  =CEA.ASSESSMENT_SCHOOL
        AND CCR.PAPER_CODE         =CEA.PAPER_CODE
        AND CCR.CANDIDATE          =CEA.CANDIDATE
        INNER JOIN ibis.subject_component sc
        ON SC.YEAR            = CCR.SPLIT_SESSION_YEAR
        AND SC.MONTH          = CCR.SPLIT_SESSION_MONTH
        AND SC.PAPER_CODE     = CCR.PAPER_CODE
        AND SC.SUBJECT        = CCR.SUBJECT
        AND SC.SUBJECT_OPTION = CCR.SUBJECT_OPTION
        AND SC.LVL            = CCR.LVL
        AND SC.COMPONENT      = CCR.COMPONENT
        AND SC.LANGUAGE       = CCR.LANGUAGE
        INNER JOIN ibis.CW_CANDIDATE_PORTFOLIO CCP
        ON CCP.PAPER_CODE =cea.PAPER_CODE
        AND cea.CANDIDATE =CCP.CANDIDATE
        AND cea.year      =CCP.YEAR
        AND cea.month     =CCP.MONTH
        INNER JOIN ibis.cw_portfolio_comments cpc
        ON cpc.candidate_portfolio_id = ccp.candidate_portfolio_id
        AND cpc.examiner_code         = cea.examiner_code
        WHERE CCR.WITHDRAWN           ='N'
        AND CCP.STATUS_ID             = 'P004'
      UNION ALL
      SELECT SC.ASSESSMENT_TYPE
        || '_EXAMINER' ass, PORTFOLIO_COMMENT_ID
      FROM ibis.CANDIDATE_COMPONENT_REG CCR
      INNER JOIN ibis.CANDIDATE_EXAMINER_ALLOCATION CEA
      ON CCR.SPLIT_SESSION_YEAR  =CEA.YEAR
      AND CCR.SPLIT_SESSION_MONTH=CEA.MONTH
      AND CCR.ASSESSMENT_SCHOOL  =CEA.ASSESSMENT_SCHOOL
      AND CCR.PAPER_CODE         =CEA.PAPER_CODE
      AND CCR.CANDIDATE          =CEA.CANDIDATE
      INNER JOIN ibis.subject_component sc
      ON SC.YEAR             = CCR.SPLIT_SESSION_YEAR
      AND SC.MONTH           = CCR.SPLIT_SESSION_MONTH
      AND SC.PAPER_CODE      = CCR.PAPER_CODE
      AND SC.SUBJECT         = CCR.SUBJECT
      AND SC.SUBJECT_OPTION  = CCR.SUBJECT_OPTION
      AND SC.LVL             = CCR.LVL
      AND SC.COMPONENT       = CCR.COMPONENT
      AND SC.LANGUAGE        = CCR.LANGUAGE
      AND SC.ASSESSMENT_TYPE = 'INTERNAL'
      INNER JOIN ibis.subject_component sc1
      ON SC1.YEAR            = CCR.SPLIT_SESSION_YEAR
      AND SC1.MONTH          = CCR.SPLIT_SESSION_MONTH
      AND SC1.PAPER_CODE    != CCR.PAPER_CODE
      AND SC1.SUBJECT        = CCR.SUBJECT
      AND SC1.SUBJECT_OPTION = CCR.SUBJECT_OPTION
      AND SC1.LVL            = CCR.LVL
        --AND SC1.COMPONENT = CCR.COMPONENT
      AND SC1.LANGUAGE        = CCR.LANGUAGE
      AND SC1.ASSESSMENT_TYPE = 'EXTERNAL'
      INNER JOIN ibis.CW_CANDIDATE_PORTFOLIO CCP
      ON CCP.PAPER_CODE =SC1.PAPER_CODE
      AND cea.CANDIDATE =CCP.CANDIDATE
      AND cea.year      =CCP.YEAR
      AND cea.month     =CCP.MONTH
      INNER JOIN ibis.cw_portfolio_comments cpc
      ON cpc.candidate_portfolio_id = ccp.candidate_portfolio_id
      AND cpc.examiner_code         = cea.examiner_code
      WHERE 1                       = 1
      AND CCR.WITHDRAWN             ='N'
      AND CCP.STATUS_ID             = 'P004'
      UNION ALL
      SELECT SC.ASSESSMENT_TYPE
        || '_MODERATOR' ass ,PORTFOLIO_COMMENT_ID
      FROM cw_portfolio_comments cpc
      INNER JOIN examiner_moderator_allocation ema
      ON ema.moderator_code = cpc.examiner_code
      INNER JOIN examination_paper ep
      ON EMA.NO_LANG_CODE = EP.NO_LANG_CODE
      AND EMA.YEAR        = EP.YEAR
      AND EMA.MONTH       = EP.MONTH
      INNER JOIN
        (SELECT YEAR,
          MONTH,
          EXAMINER_CODE,
          PAPER_CODE,
          CANDIDATE
        FROM ibis.CANDIDATE_EXAMINER_ALLOCATION
        ) CEA
      ON EMA.YEAR           = CEA.YEAR
      AND EMA.MONTH         = CEA.MONTH
      AND EP.PAPER_CODE     = CEA.PAPER_CODE
      AND EMA.EXAMINER_CODE = CEA.EXAMINER_CODE
      INNER JOIN ibis.CANDIDATE_COMPONENT_REG CCR
      ON cea.YEAR                 = CCR.SPLIT_SESSION_YEAR
      AND cea.MONTH               = CCR.SPLIT_SESSION_MONTH
      AND cea.PAPER_CODE          = CCR.PAPER_CODE
      AND CEA.CANDIDATE           = CCR.CANDIDATE
      AND CCR.SAMPLED             = 'Y'
      AND CCR.DELETED_FROM_SAMPLE = 'N'
      AND CCR.WITHDRAWN           = 'N'
      INNER JOIN ibis.CW_CANDIDATE_PORTFOLIO CCP
      ON cea.PAPER_CODE              = CCP.PAPER_CODE
      AND cea.CANDIDATE              = CCP.CANDIDATE
      AND cea.YEAR                   = CCP.YEAR
      AND cea.MONTH                  = CCP.MONTH
      AND cpc.candidate_portfolio_id = ccp.candidate_portfolio_id
      INNER JOIN subject_component sc
      ON CCR.SPLIT_SESSION_YEAR   = SC.YEAR
      AND CCR.SPLIT_SESSION_MONTH = SC.MONTH
      AND CCR.SUBJECT             = SC.SUBJECT
      AND CCR.SUBJECT_OPTION      = SC.SUBJECT_OPTION
      AND CCR.LVL                 = SC.LVL
      AND CCR.LANGUAGE            = SC.LANGUAGE
      AND CCR.COMPONENT           = SC.COMPONENT;
    BEGIN
      FOR i IN c1
      LOOP
            UPDATE ibis.cw_portfolio_comments  SET EXAMINER_TYPE =i.ass
    where PORTFOLIO_COMMENT_ID=i.PORTFOLIO_COMMENT_ID;
      END LOOP;
    END;Edited by: user575115 on Nov 2, 2012 6:05 AM
    Edited by: user575115 on Nov 2, 2012 6:07 AM

    Hi,
    While running merge below error occurring.can you please advice.
    QL Error: ORA-30926: unable to get a stable set of rows in the source tables
    30926. 00000 -  "unable to get a stable set of rows in the source tables"
    *Cause:    A stable set of rows could not be got because of large dml
               activity or a non-deterministic where clause.
    *Action:   Remove any non-deterministic where clauses and reissue the dml.
    MERGE INTO ibis.cw_portfolio_comments cpc USING
    (SELECT SC.ASSESSMENT_TYPE
      || '_EXAMINER' ass,
      PORTFOLIO_COMMENT_ID
      --BULK COLLECT INTO l_tab
    FROM ibis.CANDIDATE_COMPONENT_REG CCR
    INNER JOIN ibis.CANDIDATE_EXAMINER_ALLOCATION CEA
    ON CCR.SPLIT_SESSION_YEAR  =CEA.YEAR
    AND CCR.SPLIT_SESSION_MONTH=CEA.MONTH
    AND CCR.ASSESSMENT_SCHOOL  =CEA.ASSESSMENT_SCHOOL
    AND CCR.PAPER_CODE         =CEA.PAPER_CODE
    AND CCR.CANDIDATE          =CEA.CANDIDATE
    INNER JOIN ibis.subject_component sc
    ON SC.YEAR            = CCR.SPLIT_SESSION_YEAR
    AND SC.MONTH          = CCR.SPLIT_SESSION_MONTH
    AND SC.PAPER_CODE     = CCR.PAPER_CODE
    AND SC.SUBJECT        = CCR.SUBJECT
    AND SC.SUBJECT_OPTION = CCR.SUBJECT_OPTION
    AND SC.LVL            = CCR.LVL
    AND SC.COMPONENT      = CCR.COMPONENT
    AND SC.LANGUAGE       = CCR.LANGUAGE
    INNER JOIN ibis.CW_CANDIDATE_PORTFOLIO CCP
    ON CCP.PAPER_CODE =cea.PAPER_CODE
    AND cea.CANDIDATE =CCP.CANDIDATE
    AND cea.year      =CCP.YEAR
    AND cea.month     =CCP.MONTH
    INNER JOIN ibis.cw_portfolio_comments cpc
    ON cpc.candidate_portfolio_id = ccp.candidate_portfolio_id
    AND cpc.examiner_code         = cea.examiner_code
    WHERE CCR.WITHDRAWN           ='N'
    AND CCP.STATUS_ID             = 'P004'
    UNION ALL
    SELECT SC.ASSESSMENT_TYPE
      || '_EXAMINER' ass,
      PORTFOLIO_COMMENT_ID
    FROM ibis.CANDIDATE_COMPONENT_REG CCR
    INNER JOIN ibis.CANDIDATE_EXAMINER_ALLOCATION CEA
    ON CCR.SPLIT_SESSION_YEAR  =CEA.YEAR
    AND CCR.SPLIT_SESSION_MONTH=CEA.MONTH
    AND CCR.ASSESSMENT_SCHOOL  =CEA.ASSESSMENT_SCHOOL
    AND CCR.PAPER_CODE         =CEA.PAPER_CODE
    AND CCR.CANDIDATE          =CEA.CANDIDATE
    INNER JOIN ibis.subject_component sc
    ON SC.YEAR             = CCR.SPLIT_SESSION_YEAR
    AND SC.MONTH           = CCR.SPLIT_SESSION_MONTH
    AND SC.PAPER_CODE      = CCR.PAPER_CODE
    AND SC.SUBJECT         = CCR.SUBJECT
    AND SC.SUBJECT_OPTION  = CCR.SUBJECT_OPTION
    AND SC.LVL             = CCR.LVL
    AND SC.COMPONENT       = CCR.COMPONENT
    AND SC.LANGUAGE        = CCR.LANGUAGE
    AND SC.ASSESSMENT_TYPE = 'INTERNAL'
    INNER JOIN ibis.subject_component sc1
    ON SC1.YEAR            = CCR.SPLIT_SESSION_YEAR
    AND SC1.MONTH          = CCR.SPLIT_SESSION_MONTH
    AND SC1.PAPER_CODE    != CCR.PAPER_CODE
    AND SC1.SUBJECT        = CCR.SUBJECT
    AND SC1.SUBJECT_OPTION = CCR.SUBJECT_OPTION
    AND SC1.LVL            = CCR.LVL
      --AND SC1.COMPONENT = CCR.COMPONENT
    AND SC1.LANGUAGE        = CCR.LANGUAGE
    AND SC1.ASSESSMENT_TYPE = 'EXTERNAL'
    INNER JOIN ibis.CW_CANDIDATE_PORTFOLIO CCP
    ON CCP.PAPER_CODE =SC1.PAPER_CODE
    AND cea.CANDIDATE =CCP.CANDIDATE
    AND cea.year      =CCP.YEAR
    AND cea.month     =CCP.MONTH
    INNER JOIN ibis.cw_portfolio_comments cpc
    ON cpc.candidate_portfolio_id = ccp.candidate_portfolio_id
    AND cpc.examiner_code         = cea.examiner_code
    WHERE 1                       = 1
    AND CCR.WITHDRAWN             ='N'
    AND CCP.STATUS_ID             = 'P004'
    UNION ALL
    SELECT SC.ASSESSMENT_TYPE
      || '_MODERATOR' ass,
      PORTFOLIO_COMMENT_ID
    FROM cw_portfolio_comments cpc
    INNER JOIN examiner_moderator_allocation ema
    ON ema.moderator_code = cpc.examiner_code
    INNER JOIN examination_paper ep
    ON EMA.NO_LANG_CODE = EP.NO_LANG_CODE
    AND EMA.YEAR        = EP.YEAR
    AND EMA.MONTH       = EP.MONTH
    INNER JOIN
      (SELECT YEAR,
        MONTH,
        EXAMINER_CODE,
        PAPER_CODE,
        CANDIDATE
      FROM ibis.CANDIDATE_EXAMINER_ALLOCATION
      ) CEA
    ON EMA.YEAR           = CEA.YEAR
    AND EMA.MONTH         = CEA.MONTH
    AND EP.PAPER_CODE     = CEA.PAPER_CODE
    AND EMA.EXAMINER_CODE = CEA.EXAMINER_CODE
    INNER JOIN ibis.CANDIDATE_COMPONENT_REG CCR
    ON cea.YEAR                 = CCR.SPLIT_SESSION_YEAR
    AND cea.MONTH               = CCR.SPLIT_SESSION_MONTH
    AND cea.PAPER_CODE          = CCR.PAPER_CODE
    AND CEA.CANDIDATE           = CCR.CANDIDATE
    AND CCR.SAMPLED             = 'Y'
    AND CCR.DELETED_FROM_SAMPLE = 'N'
    AND CCR.WITHDRAWN           = 'N'
    INNER JOIN ibis.CW_CANDIDATE_PORTFOLIO CCP
    ON cea.PAPER_CODE              = CCP.PAPER_CODE
    AND cea.CANDIDATE              = CCP.CANDIDATE
    AND cea.YEAR                   = CCP.YEAR
    AND cea.MONTH                  = CCP.MONTH
    AND cpc.candidate_portfolio_id = ccp.candidate_portfolio_id
    INNER JOIN subject_component sc
    ON CCR.SPLIT_SESSION_YEAR       = SC.YEAR
    AND CCR.SPLIT_SESSION_MONTH     = SC.MONTH
    AND CCR.SUBJECT                 = SC.SUBJECT
    AND CCR.SUBJECT_OPTION          = SC.SUBJECT_OPTION
    AND CCR.LVL                     = SC.LVL
    AND CCR.LANGUAGE                = SC.LANGUAGE
    AND CCR.COMPONENT               = SC.COMPONENT
    ) a ON (cpc.PORTFOLIO_COMMENT_ID=a.PORTFOLIO_COMMENT_ID)
    WHEN MATCHED THEN
      UPDATE SET cpc.EXAMINER_TYPE =a.ass;
      Edited by: user575115 on Nov 2, 2012 7:09 AM

  • Scripting Gallery - Script hopefully useful for beginners

    Don't know whether I am allowed to put this info here, if I'm not - sorry in advance.
    Just want to share some script code I was writing for myself to help manage tedious work of preparing images for publication them in (web-)gallery.
    I believe it can be useful not only because of its direct functionality but also as a base one could use as a starting point for developing his own scripts. There are some hints on modification the script and workflow description, that can help you modify and further customize the script. So, I hope some beginners may find it useful.
    What it does?
    The script (called Scripting Gallery) creates resized copies of images in specified directory and, optionally, the set of thumbnails, all according to specified parameters including size, nudge offset, logo (for "big" images) and frames (for thumbnails), preferred resampling method, export quality, Unsharp Mask filter settings, renaming options, etc. Detailed description, specification and hints on using the script can be found on Scripting Gallery site.
    The script is written in VBScript (so it works only on Windows systems) and comes in two language versions (English and Russian) and can be downloaded from its SourceForge page.
    Just give it a try and let me know whether it worked for you.
    Thank you.

    dear chiranjp,
    Thanq so much for providing ur code. It helped me to complete my app in time
    Thanq once again
    venu

  • Have any books or videos been published on using Director 12 for beginners?

    Have any books or videos been published on using Director 12 for beginners?

    As Sean mentioned, there are no Director 12 books around. Here are some links that may be helpful:
    My tutorial site: http://www.deansdirectortutorials.com/
    Video tutorials links I've found: http://www.deansdirectortutorials.com/resources/#vidtuts

  • Be grateful for your help with Photoshop Elements which I have been using for several years.

    Be grateful for your help with Photoshop Elements which I have been using for several years.  Does Elements need to have access to ‘My Pictures’ on Windows as when I remove Photos from ‘My Pictures’, Elements later, when backing up, gives a message that it is unable to ‘reconnect’ to the same picture on elements.  On other occasions when removing a photo from Elements catalogue I also get a similar message when backing up saying ‘unable to reconnect’.  1. Is there a relationship between Elements and My Pictures and is Elements dependant on    the Windows ‘My Pictures’? 2. Why does some photos in Elements in some cases cause them to multiply e.g. double; triple; quadruple; and on occasions even more?  Is there something I need to do to stop this or an easy way I can remove the multiples without spending hours doing it manually one by one?  Am I doing something wrong? My O/S is Windows XP SP2 and windows Vista on my Laptop.  I have been using Elements 5 and have just purchased Photoshop Elements 8.0. (Upgrade) and about to install it. Be grateful for any advice as I do enjoy using the program if only I can resolve this issue.  I am not a PC wiz and mainly use Elements to catalogue photos from which I compile collections and from them slide shows with music.  Any advice appreciated Sonny.t PS Have tried to post this previously but without success so hoping to see message appear and a +response

    The organizer doesn't care where you send your photos when you download them via the downloader or where they happen to be when you first bring them in if you use the Get Photos command, but once your pics are in the Organizer, you *must* move them from within organizer or it can't find them. You don't have to use My Pictures at all if you don't want to, but regardless of the folder where you put your photos, if you want them someplace else, you use organizer to do it.

  • Help! My iPod touch won't let me download any apps. A message keeps coming up saying "This Apple ID cannot be used for the iTunes store. Please enter another Apple ID" I changed my ID to see if that would work but the same message still comes up.

    Help! My iPod touch won't let me download any apps. A message keeps coming up saying "This Apple ID cannot be used for the iTunes store. Please enter another Apple ID" I changed my ID to see if that would work but the same message still comes up.

    Where are you physically located?
    What country's Store are you using?
    The two have to be the same and the payment method for your account also has to be associated (billing address, where iTunes gift card was purchased) with that country.
    Has the ID(s) worked before for purchases for this country's store?

  • I have an Ipad 2 and here is what I am trying to accomplish.  On my laptop I connect to a remote desktop connection to access a shared program we use for reporting.  How do I set up my Ipad to access this remote server?  Thanks for the help.

    I have an Ipad 2 and here is what I am trying to accomplish.  On my laptop I connect to a remote desktop connection to access a shared program we use for reporting.  How do I set up my Ipad to access this remote server?  Thanks for the help.

    Close ... before going for a specific Cisco app ... lets find out some details:
    Host we need more details:
    What is your server environment (Windows Server, or Mac OS X Server, or Linux)?
    What security is implemented in your environment - as what is restricted (RDP for all or specifc credentials on all machines? Are you part of local admin group to the server you wish to connect)?
    Does your environment Support CISCO IPSec connection? If so use Settings> VPN and IPSec tab to enter VPN details, if not then go with above suggestion. IF your restricted to RSA then either built in VPN settings or 3rd party app for RSA would suffice.
    Finally, there are many RDP applications out there I use "Mocha RDP Light" (free minimal ads when launched not when connecting).

  • Firefox quit on my MAC, I uninstalled and now cannot install, keep getting error that it is open or file is missing. PLEASE HELP, have to use Firefox for work.

    I have an iMAC w/OS 10.7.5. I was working in Firefox today and as I was entering letters it changed to unrecognizable characters so I had to exit the application. Firefox froze up and after trying to re-open it many times, I finally tried uninstalling and then re-installing. When trying to open a new download, I am given an error message saying that firefox is already open or that files are missing. I spent approx 2 hrs on the phone with Apple support and they were unable to locate problem and I am now turning to you for help. I need this fixed desperately and ASAP as the program that I use for work will only run on Firefox.

    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox.
    See [[Server not found]] and [[Firewalls]] and http://kb.mozillazine.org/Firewalls
    See also http://kb.mozillazine.org/Error_loading_websites

  • HT5312 My recovery email is no longer in use, as it hasn't been used for sometime, and now seems to have 'expired', and I do not even recall being asked the security questions,so I can no longer download certain games. Please help.

    I cannot download certain games because I do not recall the answers to my security questions when it asks if I am 17 years or older. In fact, I do not even recall being asked these security questions.
    I tried to guess logical answers but now my iPad is threatening to lock me out. My second email is no longer in use as it has not been used for years and has seemingly expired.
    Can you please help?

    If you don't have access to your rescue email account, or you don't have one on your account (an alternate/secondary email address is a different setting/address), then you will need contact iTunes Support or Apple to get the questions reset (you won't be able to change/add a rescue email address until you can answer 2 of your questions)
    e.g. you can try contacting iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management , and then 'Forgotten Apple ID security questions'
    or try ringing Apple in your country and ask to talk to the Accounts Security Team : http://support.apple.com/kb/HE57
    When they've been reset you can then use the steps half-way down the page that you posted from to update/add a rescue email address for potential future use

  • Error message when trying to install mavericks. It won't let me select a disk to install Mavericks on. Message says "This disk is used to Time Machine backups."  It is NOT used for back ups. help

    When trying to chose a disk on which to install mavericks I get a message that says "this disk is used for Time Machine backups" and cannot be used.  Help!

    I don't know what will help at this point. You should never update a system that has problems, unless you're absolutely sure that the problems are caused by a bug that is fixed in the update. With your backups in an uncertain state, you should not update or do anything else except start a new backup.

  • File TO File-Using XSLT mapping (for Beginners) --- Error in XSLT

    Hi,
    I am following this wiki (TO File-Using XSLT mapping (for Beginners))
    https://wiki.sdn.sap.com/wiki/display/XI/FileTOFile-UsingXSLTmapping%28forBeginners%29
    When creating  Xslt from the MapForce, when I click on the XSLT Tab I am getting the following error
    http://www.flickr.com/photo_zoom.gne?id=1216715484&size=o
    How to correct this error ?.....
    Thanks
    srini
    Message was edited by:
            srinivas

    Hello,
    The XSD you are using is from Data Type and you are using it for mapping.
    Instead export XSD for Message Type and also pass the XML schema for source that will solve the issue and your XSLT will be generated.
    Regards,

  • Please Help!   I've got a WRT54GX2 that I used for 2 year...

    Please Help!
    I've got a WRT54GX2 that I used for 2 years with no problems.
    I recently tried to set up network with different IP DSL (Bellsouth).
    The problem is the computer can not "locate" wireless router. Is this due to the Westell modem not being "bridged".   

    ***Note: Make sure that the modem is Bridged and the router is set-up to the Instructions I first gave you. If you still have the issue then follow the below steps. At this point you should find out what is your,
    IP Address =
    Default Gateway =
    Subnet mask =
    and provide us with that information.
    You can get this info by clicking on Start>>Run>>type "cmd">>click ok, now a black command prompt box will open, type in ipconfig /all
    You should see an IP address and default gateway of 192.168.x.xxx
    you should see a subnet mask of 255.255.255.0
    At this time you should power cycle your router and then the modem by removing the power cable from the router, then remove the power cable from the modem. Wait about 60 seconds and plug in the modem and them plug in your router. wait till all the lights on the modem and router are back on. try to connect.
    If it still does not work and the IP address is not what I stated, then you will need to reset the modem by holding in the reset button on back of the router for 30 seconds, this will bring the router back to the factory defaults and will remove any prior settings.
    Good Luck,
    Ttech
    Message Edited by Ttech on 06-30-2008 05:38 AM

  • I have a Comcast system and am going through a Bose amp for sound.  The comcast box has an HDMI port which I've used for the Apple TV connection.  Nothing works! Help.

    have a Comcast system and am going through a Bose amp for sound.  The comcast box has an HDMI port which I've used for the Apple TV connection.  Nothing works! Help.

    Thanks.  Thought that would be the solution but for my wall mounted TV it's going to be a problem but many thanks for your reply.....

  • Help with an Algorithm for using a level sensor to estimate consumption.

    I'm developing a small HMI-Scada application for monitoring the level of Diesel in four vertical tanks similar to the screen shot below.
    Tank Information:
    20 Feet High
    8 Feet Inside Wall Diameter
    5,000 Gallons Capacity
    (These Tanks supplies four Caterpillar Generators)
    Since each tank already has an Ultrasonic Level transmitter installed (accuracy is plus or minus one Inch) I was thinking of using this Tank level information coming from that sensor to estimate consumption.
    The problem I'm having right now is figuring out the correct math to use inside VB.Net to make this calculation work, considering that Diesel not used by the Generators will be returned back to the tank.
    The consumption data we need is not needed in real time necessarily it is more like at the end of the day we need to know how much diesel was used by each generator, this will help management figure out and print a report with the total carbon emissions
    for that day.
    The HMI-Scada application is going to have a Microsoft SQL Sever collecting the Tank Level Information every one minute.
    To avoid further complications when Mr. Diesel comes with his truck to refill the tanks we are planning to have him manually enter into the HMI-Scada application the total amount of gallons pumped into each tank.
    Do anyone in this forum have an idea of how this can be done?

    Hi,
     Is the 20 feet actually measured from the inside Bottom to the inside Top of the tank? Is the Inside Diameter actually 8 feet all the way from the bottom to the top of the tank?
     If those two answers are true then it seems like it would be easy enough to calculate.
     20 feet * 12 inces = 240 inches
    5000 gallons / 240 inches = 20.833333333333333333333333333333 gallons per inch
    So, if i am right then for example, if you had 200 inches of fuel at the beginning of the day and 80 inches at the end of the day it would be:
    20.833333333333333333333333333333 * 200 = 4166.6666666666666666666666666667 gallons to start with
    20.833333333333333333333333333333 * 80 = 1666.6666666666666666666666666664 gallons at end of day
    So the gallons used would be
    4166.6666666666666666666666666667 - 1666.6666666666666666666666666664 = 2500.00 gallons used for the day
    Example code:
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim GallonsPerInch As Double = 5000 / (20 * 12) 'Gallons Per Inch
    Dim StartingInches As Double = 200.0 'get inches at Start
    Dim EndingInches As Double = 80.0 'get inches at End
    Dim GallonsUsedToday As Double = (StartingInches - EndingInches) * GallonsPerInch 'Gallons used from Start to End
    MessageBox.Show("Gallons Used = " & GallonsUsedToday.ToString)
    End Sub
    If you say it can`t be done then i`ll try it
    Thats right Razerz.
    So where height is the change in the tank levels the volume is
    V = (pi)(radius ^ 2)(Height)
    V = (3.14)(4)(4)(Height) = 50.24 (height) cubic feet
    V = (50.24 cuft) (7.48 gal/cuft) (height) = 376 (height) gallons
    So for an inch of height:
    V = 376/12 = 31.3 gallons per inch
    Just for fun
    5000 gals / (12)(31.3) = 13.29 feet high
    Normally the tank does not fill to the top.
    Check my math.
    So all you need to do is Constant(change in height) = gals. Once we get the constant right.
    PS In fact it would be best to just measure the depth when the gas man fills the tank and calc the constant. I doubt the tank is exactly 8 feet. I mean you calc the constant once. And at that time check it is linear ie the tank is a cylinder.

  • What is the message type and basic type used for catsdb in idoc help me

    what is the message type and basic type used for catsdb in idoc help me
    ANY IDOC FOR CATSDB PLEASE TELL,
    Regards,
    Jagrut BharatKumar Shukla
    points will be awarded

    Hi,
    Check these message types.
    ATT_ABS_WITH_COST and WORKSCHED_WITH_COST.

Maybe you are looking for