Student Project Help(Will Pay)

Hi I'm currently studying 1st year engineering in the uk.
I have a simple robotics project which uses multisim and ultiboard and PCB designing etc.
If you guys can help me do it. I can pay you for it.Anyone interested ill mail you the handouts required.
Please let me know thanks.

I suggest,
1) You first report the behaviour of your 'Group'  to your professors.
2) Try and learn the concepts that are not clear. This is where the NI forums become useful. While trying to understand these concepts, look into example programs and code simple programs first. When you have problems, post specific problems here and some one will help you for sure.
3) I understand since it is a student project, it will have it's one time frame and there would be a I am guessing about 6 months to complete your project. If you are that desperate, try the NI alliances site, they would 'Do' your project for you, but might be very costly.

Similar Messages

  • Very strange Issue, and cannot find a reasonable solution or Tech Support help / Will PAY for HELP !!

    So, without going into great details that cannot reasonably be explained, the scenario goes a little like this:
    When editing a PDF, and with nothing else open on the computer, Adobe Acrobat Pro XI tends to "hang up" and become unresponsive. The only plausible solution is to force command and restart Acrobat in hopes it will open correctly the next time. Sometimes this works, other times - nope .. Does not resolve the problem. So - can anyone recommend a solution? I have contacted help and they had to to delete a Adobe Preference file, and this seemed to work while I still had them on live chat. Once offline, it happened again.
    Here is the really weird thing, I thought that I fixed the issue (as I am doing this for my boss on his Macbook Pro) and was able to quickly edit a PDF .. but when I handed the computer over to him - literally in only 2 minutes - he proceeded to edit the same document and was not able to. He got the never ending rotating circle of death
    So - that is problem #1
    Problem #2 is with the inability my boss has to use CC offline. I have personally reconnected to our CC account and verified all settings, and when I perform my tests at the office, everything seems fine and all programs work as should. However, he is now on business travel and says the "Trial Expired" keeps popping up. What is going on? This is literally frustrating him and me with what little knowledge I can assist with resolving the trial expired issue. How many days can you be offline with CC? Tech support says up to 99 days .. Clearly 4 days is ridiculous and I am not able to duplicate the scenario when I have his computer but what would it work for me and not him?
    I just need to resolve this whole Adobe Acrobat issue as to finally get it resolved and fixed once and for all.
    BTW, called in outside computer help from a local company - and the computer guy was working to get it fixed, but it seems even with live chat or phone support - it has now been escalated to Tech Support 2 .. This make any sense or logic? I believe he has uninstalled and reinstalled Acrobat and now it is only creating more issues. I think he tried to install a trial version and activate the subscription but it failed.
    Any HELP? We are desperate and I'll even pay via PayPal to get a resolution to this problem if any recommendation leads to a solid solution. Guaranteed !!

    Actually I also noticed that usual heat with wifi and game play.. However this was extreme heat. I wasn't able to hold it for long time and had to drop it.
    So can that bulge can be ignored and should I start using it back again. Though that bulge appeared after that heating issue.
    Beside the hardware, safety would be my bigger concern. Perhaps because I have heard few incidents with mobile phones where battery generated heat and caused some defect in bodies and continued use resulted in a blast in battery causing physical harm.
    So if its advised to try it by charging 100% and monitoring backup time or any other advise.

  • I will pay for who can help me with this applet

    Hi!, sorry for my english, im spanish.
    I have a big problem with an applet:
    I�ve make an applet that sends files to a FTP Server with a progress bar.
    Its works fine on my IDE (JBuilder 9), but when I load into Internet Explorer (signed applet) it crash. The applet seems like blocked: it show the screen of java loading and dont show the progress bar, but it send the archives to the FTP server while shows the java loading screen.
    I will pay with a domain or with paypal to anyone who can help me with this problematic applet. I will give my code and the goal is only repair the applet. Only that.
    My email: [email protected]
    thanks in advance.
    adios!

    thaks for yours anwswers..
    harmmeijer: the applet is signed ok, I dont think that is the problem...
    itchyscratchy: the server calls are made from start() method. The applet is crashed during its sending files to FTP server, when finish, the applet look ok.
    The class I use is FtpBean: http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean/
    (I test too with apache commons-net, and the same effect...)
    The ftp is Filezilla in localhost.
    This is the code, I explain a little:
    The start() method calls iniciar() method where its is defined the array of files to upload, and connect to ftp server. The for loop on every element of array and uploads a file on subirFichero() method.
    Basicaly its this.
    The HTML code is:
    <applet
           codebase = "."
           code     = "revelado.Upload.class"
           archive  = "revelado.jar"
           name     = "Revelado"
           width    = "750"
           height   = "415"
           hspace   = "0"
           vspace   = "0"
           align    = "middle"
         >
         <PARAM NAME="usern" VALUE="username">
         </applet>
    package revelado;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import javax.swing.*;
    import java.io.*;
    import javax.swing.border.*;
    import java.net.*;
    import ftp.*;
    public class Upload
        extends Applet {
      private boolean isStandalone = false;
      JPanel jPanel1 = new JPanel();
      JLabel jLabel1 = new JLabel();
      JLabel jlmensaje = new JLabel();
      JLabel jlarchivo = new JLabel();
      TitledBorder titledBorder1;
      TitledBorder titledBorder2;
      //mis variables
      String DIRECTORIOHOME = System.getProperty("user.home");
      String[] fotos_sel = new String[1000]; //array of selected images
      int[] indice_tamano = new int[1000]; //array of sizes
      int[] indice_cantidad = new int[1000]; //array of quantitys
      int num_fotos_sel = 0; //number of selected images
      double importe = 0; //total prize
      double[] precios_tam = {
          0.12, 0.39, 0.60, 1.50};
      //prizes
      String server = "localhost";
      String username = "pepe";
      String password = "pepe01";
      String nombreusuario = null;
      JProgressBar jProgreso = new JProgressBar();
      //Obtener el valor de un par�metro
      public String getParameter(String key, String def) {
        return isStandalone ? System.getProperty(key, def) :
            (getParameter(key) != null ? getParameter(key) : def);
      //Construir el applet
      public Upload() {
      //Inicializar el applet
      public void init() {
        try {
          jbInit();
        catch (Exception e) {
          e.printStackTrace();
      //Inicializaci�n de componentes
      private void jbInit() throws Exception {
        titledBorder1 = new TitledBorder("");
        titledBorder2 = new TitledBorder("");
        this.setLayout(null);
        jPanel1.setBackground(Color.lightGray);
        jPanel1.setBorder(BorderFactory.createEtchedBorder());
        jPanel1.setBounds(new Rectangle(113, 70, 541, 151));
        jPanel1.setLayout(null);
        jLabel1.setFont(new java.awt.Font("Dialog", 1, 16));
        jLabel1.setText("Subiendo archivos al servidor");
        jLabel1.setBounds(new Rectangle(150, 26, 242, 15));
        jlmensaje.setFont(new java.awt.Font("Dialog", 0, 10));
        jlmensaje.setForeground(Color.red);
        jlmensaje.setHorizontalAlignment(SwingConstants.CENTER);
        jlmensaje.setText(
            "Por favor, no cierre esta ventana hasta que termine de subir todas " +
            "las fotos");
        jlmensaje.setBounds(new Rectangle(59, 49, 422, 30));
        jlarchivo.setBackground(Color.white);
        jlarchivo.setBorder(titledBorder2);
        jlarchivo.setHorizontalAlignment(SwingConstants.CENTER);
        jlarchivo.setBounds(new Rectangle(16, 85, 508, 24));
        jProgreso.setForeground(new Color(49, 226, 197));
        jProgreso.setBounds(new Rectangle(130, 121, 281, 18));
        jPanel1.add(jlmensaje, null);
        jPanel1.add(jlarchivo, null);
        jPanel1.add(jProgreso, null);
        jPanel1.add(jLabel1, null);
        this.add(jPanel1, null);
        nombreusuario = getParameter("usern");
      //Iniciar el applet
      public void start() {
        jlarchivo.setText("Start() method...");
        iniciar();
      public void iniciar() {
        //init images selected array
        fotos_sel[0] = "C:/fotos/05160009.JPG";
        fotos_sel[1] = "C:/fotos/05160010.JPG";
        fotos_sel[2] = "C:/fotos/05160011.JPG";
         // etc...
         num_fotos_sel=3; //number of selected images
        //conectar al ftp (instanciar clase FtpExample)
        FtpExample miftp = new FtpExample();
        miftp.connect();
        //make the directory
         subirpedido(miftp); 
        jProgreso.setMinimum(0);
        jProgreso.setMaximum(num_fotos_sel);
        for (int i = 0; i < num_fotos_sel; i++) {
          jlarchivo.setText(fotos_sel);
    jProgreso.setValue(i);
    subirFichero(miftp, fotos_sel[i]);
    try {
    Thread.sleep(1000);
    catch (InterruptedException ex) {
    //salida(ex.toString());
    jlarchivo.setText("Proceso finalizado correctamente");
    jProgreso.setValue(num_fotos_sel);
    miftp.close();
    //Detener el applet
    public void stop() {
    //Destruir el applet
    public void destroy() {
    //Obtener informaci�n del applet
    public String getAppletInfo() {
    return "Subir ficheros al server";
    //Obtener informaci�n del par�metro
    public String[][] getParameterInfo() {
    return null;
    //sube al ftp (a la carpeta del usuario) el archivo
    //pedido.txt que tiene las lineas del pedido
    public void subirpedido(FtpExample miftp) {
    jlarchivo.setText("Iniciando la conexi�n...");
    //make folder of user
    miftp.directorio("www/usuarios/" + nombreusuario);
    //uploads a file
    public void subirFichero(FtpExample miftp, String nombre) {
    //remote name:
    String nremoto = "";
    int lr = nombre.lastIndexOf("\\");
    if (lr<0){
    lr = nombre.lastIndexOf("/");
    nremoto = nombre.substring(lr + 1);
    String archivoremoto = "www/usuarios/" + nombreusuario + "/" + nremoto;
    //upload file
    miftp.subir(nombre, archivoremoto);
    class FtpExample
    implements FtpObserver {
    FtpBean ftp;
    long num_of_bytes = 0;
    public FtpExample() {
    // Create a new FtpBean object.
    ftp = new FtpBean();
    // Connect to a ftp server.
    public void connect() {
    try {
    ftp.ftpConnect("localhost", "pepe", "pepe01");
    catch (Exception e) {
    System.out.println(e);
    // Close connection
    public void close() {
    try {
    ftp.close();
    catch (Exception e) {
    System.out.println(e);
    // Go to directory pub and list its content.
    public void listDirectory() {
    FtpListResult ftplrs = null;
    try {
    // Go to directory
    ftp.setDirectory("/");
    // Get its directory content.
    ftplrs = ftp.getDirectoryContent();
    catch (Exception e) {
    System.out.println(e);
    // Print out the type and file name of each row.
    while (ftplrs.next()) {
    int type = ftplrs.getType();
    if (type == FtpListResult.DIRECTORY) {
    System.out.print("DIR\t");
    else if (type == FtpListResult.FILE) {
    System.out.print("FILE\t");
    else if (type == FtpListResult.LINK) {
    System.out.print("LINK\t");
    else if (type == FtpListResult.OTHERS) {
    System.out.print("OTHER\t");
    System.out.println(ftplrs.getName());
    // Implemented for FtpObserver interface.
    // To monitor download progress.
    public void byteRead(int bytes) {
    num_of_bytes += bytes;
    System.out.println(num_of_bytes + " of bytes read already.");
    // Needed to implements by FtpObserver interface.
    public void byteWrite(int bytes) {
    //crea un directorio
    public void directorio(String nombre) {
    try {
    ftp.makeDirectory(nombre);
    catch (Exception e) {
    System.out.println(e);
    public void subir(String local, String remoto) {
    try {
    ftp.putBinaryFile(local, remoto);
    catch (Exception e) {
    System.out.println(e);
    // Main
    public static void main(String[] args) {
    FtpExample example = new FtpExample();
    example.connect();
    example.directorio("raul");
    example.listDirectory();
    example.subir("C:/fotos/05160009.JPG", "/raul/foto1.jpg");
    //example.getFile();
    example.close();

  • After mixing a project i select bounce and burn the disc that is burned plays on any cd player but when i try to burn the wav or mp3 file that was created the resulting disc will only play in a computer this also happens with video projects help please

    after mixing a project i select bounce and burn the disc that is burned plays on any cd player but when i try to burn the wav or mp3 file that was created the resulting disc will only play in a computer this also happens with video projects help please are there any settings i need to alter as it seems the wav or mp3 file i ceated is being converted to a data file somewhere between the folder and disc drive

    Same thing for a movie file.. If you want to play back the movie via a DVD and a DVD player you must create a Movie DVD  and not just burn files to a data DVD... as Data DVDs are just storage devices for files and therefore will only work with computers...
    Movie DVDs are special formats that include things like menus and special file formats.. so they can playback via a DVD Player...
    You will need a 3rd party DVD Burning app like Toast which is what i actually use.... or the more popular DVD Creator app...to create and then burn a Movie DVD that will playback on a DVD Player....
    https://answers.yahoo.com/question/index?qid=20101220205435AA70beb

  • Wsdl trouble - WILL PAY FOR IMMEDIATE HELP

    I'm having trouble consuming a webservice - code works in PHP
    but coldfusion keeps getting back a null value. The function only
    takes 1 parameter, of which I'm sending. I'll paypal you money for
    your help - PM me for details

    > WILL PAY FOR IMMEDIATE HELP
    I do not believe that that is in the spirit of this forum. If
    you post your code here, you will most likely get a quick answer to
    the question anyway.

  • Buying a MacBook Pro in Seattle on a University visit. How much tax will I have to pay? I am attending the University of Washington in January so I assume I will be able to get student discount, but will I have to pay state tax - as I am not from the US?

    Buying a MacBook Pro in Seattle on a University visit. How much tax will I have to pay? I am attending the University of Washington in January so I assume I will be able to get student discount, but will I have to pay state tax - as I am not from the US?

    MarcusBooyah wrote:
    Thanks, I read somewhere that if you are not from the US you don't have to pay sales tax?
    You read wrong.

  • I will pay you if you can help me with..

    Logic studio. I have tons of questions about everything and I dislike reading. If you would be so kind to 'teach' me the programs inside logic studio I will pay you $5 an hour. Reach me at: [email protected] or my aol instant messenger screen name: wut a lewser
    please and thank you.

    Let's do some math.
    20 sessions at $5 a piece is $100. The same cost for 52 sessions.
    Also, I think you might be hard pressed to get some one to teach you Logic for $5 an hour. Not to sound arrogant but for $5 I might answer 1 question for that. Not to say you can't find someone, just remember you get what you pay for.
    See what works for you or how you can learn the application. There are some great tutorial books from peachpit press that you could look into.

  • Problem w/iMovie if you renamed a soundtrack that was used in a project. Will appear a warning sign and will not sound even if you replace or drag a new soundtrack.

    Let's say you have a project in iMovie and after you include your imported videos, pictures, etc, then you add a couple of soundtrack songs from your iTunes Library.  It works fine!.
    If for some reason, later on, you decide to rename the soundtrack song in your iTunes library, when you return to iMovie it will display a yellow warning sign at the begining of the soundtrack or (voice over file) and it will not play the song. You cannot hear it.
    Of course I guess it is due to a "missing" reference (as you renamed the one that you iniitally used). 
    The logical step would be to either deleted or replace that song in your iMovie project and drag the one with the "new name" or even a newone or different one.
    It still not playing or you can not hear the audio.
    Note that from this point on, any song that you want to add to your project it will simply not sound.  If you have in this project other soundtrack songs that were not renamed, it will still sound in your project. I mean, you can still hearing all those that were previously working and you did not make the "mistake" of renaming or modifying some information of your song.  BUT, ANY sound, song, voice over, that you want to include, add, replace, etc.  WILL SIMPLY NOT WORK.
    It is like you have been denied to add or replace or re-arrange any sound from now on ON THIS SPECIFIC project as you may create new project and those song will work fine in the new project.
    The problem is that take a lot of work if you have to start your project from zero again. (The "Duplicate Project" option will simply not work as it "duplicate" the problem).
    In other project I was working, now I realize that did happen exactly the same, but a that time it was related with still pictures. (I guess I changed "something" or deleted one of the still pictures) and from that point on, any still picture that I wanted to include in the project, It allows me to drag it but when you try to play it, iMovie just ignore it.  It appears in the project sequence but simply is not displayed in the movie.

    Hello tmock, 
    Welcome to the forum. It certainly would be an odd experience to attempt a common occurrence such as a simple exchange of the headphones you received as a gift for another item, and have it almost result in authority involvement!  It sounds like the sales associate might have made a mistake processing the transaction, and I can understand not wanting to leave your gift behind with the uncertainty that you would ever hear from anyone again. I truly apologize for any unpleasant experience this may have caused. 
    I would be happy to look into this further to see if I can help you get the PS4 you wanted as an exchange, so if you could send me the information of the store you visited, I would appreciate it very much. Once I have this information, I will follow up with you as soon as possible.
    Thank you for visiting the forum to share your feedback, and I look forward to continuing to work with you. 
    Maria|Social Media Specialist | Best Buy® Corporate
     Private Message

  • I will pay, who creates a method for importing tables from MS word

    I need a script or any other type of method, which will import the MSword document, which have tables and footnotes.
    WIth "Place" option (with "SHift"), it only imports the first page of word document, and even that first page is degraded and some part of  footnotes are moved to the second page of Indesign.
    for example,see such document: http://d2.minus.com/1342790256/zDuntjI5q2iNIJqkk5UPJA/dbjwjsXzUbRmjD/sample.rtf
    i will pay him, who will do that job (offer me your bid).
    my info:
    mail: selnomeria(*)yahoo.com
    skype: oceane.sa

    Hello!
    First of all:
    Indesign does not support footnotes in tables. There are some tricks i use, for example making a "hidden footnote reference" somwhere in the page (just assign a 0.1pt size and fillcolor of "None") but it's just a ugly hack and if you have to reformat the tables you will have to rebuild all teh footnotes. move them around etc.
    Second:
    If one of the cells in the table you are importing is larger (verticaly) than the page size the autoflow will stop. The table is imported in the story (check it out in the story editor) but indesign cannot display it. Enlage the frame until the cell fits (or make the cell smaller -decrease the text size?) and reflow the rest of the text.
    Third:
    If you are working with large tables and especialy large cells be prepared to have numerous crashes. And i mean NUMEROUS!! Every time you try to change something in the table.
    i am sorry to be the bearer of bad news but at the moment table and footnote support in indesign is crappy at best, and i don't think there's anyone besides the guys form Adobe that can do anything to help you.

  • Will pay for Flash programming

    Hi folks,
    I have been let down by some programmers and need a web site
    built similar
    to the Business Card application at
    http://www.premierlook.com/xangocard.php
    It is a fairly straight-forward application of developing a
    form in Flash. A
    shopping cart addition would be greatly appreciated also.
    Prospective designers wishing to undertake this job and
    complete within 36
    hours can send me an email at [email protected]
    Thanks for your help.
    Richard

    Will Pay for Consulting on Java Swing Issue
    Really?
    863221 wrote:
    ..*Offer*:     I will pay a reasonable consulting fee ..I will read your post (and give it serious consideration and a reply) for $1500 US. The ball is in your court.

  • Random Array Project Help.

    Hello, I'm new to this forum and to Java programming, I'm just looking for a little help on a project to see how random the Java random generator really is.
    I'm trying to produce 1000 random integers between 0 and 50 in an array.
    Then display how any times each number comes up.
    This is what i have so far and I'm really stuck.
    I have started with a smaller size array just to get it set up.
    import java.util.Random;
    public class randomArray
        public static void main (String[]args)
            Random gen = new Random();
            int[] ary = new int[10];
            for (int count=0; count<10; count++)
                ary[count] = gen.nextInt(51);
            for (int num=0; num<10; num++)
                System.out.println("ary[" +num+ "]= " +ary[num]);
    }What I need help with is how to display the occurrence of each number in the array....obviously
    with 10 integers its not likely that two of the same will show, but with a thousand I'm hoping it will
    work fairly well. Any help will be appreciated. thx

    import java.util.*;
    public class RandomTester{
    public static void main(String[] args){
         new RandomTester().start();
    public void start(){
         random = new Random();
         count = new int[50];
         for(int i = 0; i < 1000; i++){
         count[random.nextInt(50)]++;
         for(int i = 0; i < 50; i++){
         System.out.println("" + (i) + ": " + count);
         Random random;
         int[] count;

  • I did not deactivate a photoshop cs6 before there was a new hard drive installed with a Win7 Pro fresh install too. How can I activate photoshop on the new hardware if I can't deactivate it on the old hardware that is no longer available? Any help will be

    I did not deactivate a photoshop cs6 before there was a new "C" hard drive installed on my computer and a Win7 Pro fresh install too. How can I activate photoshop on the new hardware if I can't deactivate it on the old hardware that is no longer available? Any help will be appreciated.

    If it's the same machine (same CPU) there should not be any need to activate.  The actiovation is tied to your CPU.
    If you run into problems, then:
    Unfortunately, only Adobe customer service can assist you with your issue. These are user forums; you are not addressing Adobe here.
    Click on the link below, and after that click on "Still need Help? Contact us."
    Then on the next page, click Chat
    There is also a phone option. 1 (800) 833-6687
    http://helpx.adobe.com/contact.html?step=PHXS_downloading-installing-setting-up_licensing- activation

  • How can i get a comedy, Dutch Treat or/and its companion Detective School Dropouts released in 1987 be included in the iTunes US store for me to down load. i will pay any thing to download them.

    I wish to request that a comedy, Dutch Treat or/and its companion Detective School Dropouts released in 1987 be included in the iTunes US store for me to down load. i will pay any thing to download them.

    You can try requesting it via this page (these are user-to-user forums) : http://www.apple.com/feedback/itunes.html
    But unless the the US rights-holder passes it to Apple and allows them to sell it in the US then Apple won't be able to sell it there

  • HT204266 My iPad (version 1, IOS 5.1) has quit connecting with the store. I am unable to update or buy any app. I did a reboot and a reset with deleting the data. I can not find anything in support for this problem. Any help will be appreciated.

    My iPad (version 1, IOS 5.1) has quit connecting with the store. I am unable to update or buy any app. I did a reboot and a reset with deleting the data. I can not find anything in support for this problem. Any help will be appreciated.

    My iPad (version 1, IOS 5.1) has quit connecting with the store. I am unable to update or buy any app. I did a reboot and a reset with deleting the data. I can not find anything in support for this problem. Any help will be appreciated.

  • I have the G Drive 1 TB (GEN4 1TB) external drive purchased in 2010. I need to connect to my new MacBook Pro. I'm using the external drive for media storage of my video editing projects. Will a 800fw to thunderbolt adapter cable work?

    I have the G Drive 1 TB (GEN4 1TB) external drive purchased in 2010. I need to connect to my new MacBook Pro. I'm using the external drive for media storage of my video editing projects. Will a 800fw to thunderbolt adapter cable work? I understand that using a USB port connection is not fast enough for video editing. I read somewhere the G Drives don't connect well to MacBook Pro.
    thanks
    larry

    I doubt this can be relocated or moved so you might want to just repost in the macbook pro area.
      MacBook Pro
    https://discussions.apple.com/community/notebooks/macbook_pro
    https://discussions.apple.com/community/mac_os?view=discussions
    Can you afford a new Thunderbolt case and cable? any case with FW800 is going to be slow 72MB/sec and less, and any new 1TB drive is capable of 75MB/s minimum up to 125MB/sec.
    Thunderbolt storage can of course when setup properly reach 100's of MB higher using multiple drives.
    Use what you have for a system backup or for secondary backup storage.
    you might be able to take the drive - most cases allow you to open and swap drives - and use this:
    G-Technology 1TB G-DRIVE mini High-Speed Portable Hard Drive                                   
    or this:
    http://store.apple.com/us/product/HB137VC/A/g-technology-4tb-g-raid-professional -high-performance-dual-drive-hard-drive?fnode=5f

Maybe you are looking for

  • How do I save all of my data to iTunes on my new PC?

    I want to update my old iPad's firmware up to IOS 5.1.1 from 4.2.1 but it seems like it isn't as easy as that. It says that it would delete everything on my iPad but I don't know how to put all of my data on to my new PC. I want EVERYTHING here on th

  • Issue with PI messages in "To be Delivered" Status

    Hello Experts, We have a Mail to SOAP scenario on PO 7.4 single stack PI system. Currently we are facing issue with messages where messagess are in status "To be Delivered". Messages dont get processed further. Two days back, we had issue with file s

  • Macbook Pro wont find Panasonic NV-DS60

    I'm trying to get video off of my Panasonic miniDV camcorder onto my Mac. I have the 6point to 4 point firewire cable. iMovie isn't detecting it. And it's not showing up on the System Profiler either. Any ideas?

  • Itunes connectivity Issue

    Hi Guys, When I connect my new Ipad to the PC, it comes up with an error to say that my PC cant connect to itunes, therefore I cant register it? I have tried other Apple devices and they now will not connect either, even if I just try and connect to

  • My PB runbs always too hot: it burn my lap. & battery runs only 1 hour.

    Hi. As the subject, my PB runs too hot. I found sombody asked the same question and downloaded software to measure temprature. Battery: 35 C Power Supply Bottomside: 55.8 Processor Bottomside: 62.5 Processor/Controller Bottomside: 64 SmartDisk Fujits