Samples of the RIM in NetBeans IDE

Hello

I want to know how to import samples of RIM in NetBeans IDE

I m using NetBeans IDE 6.5 and have implemented a single what path is defined on RIM

so I can use NetBeans IDE to develop app RIM

but want to compile and run the examples of RIM of NetBeans

How can I do this?

As much as I know there not netbeans plugin like eclipse plugin JDE.

There is therefore no import mechanism.

The only way - create netbeans projects and the transfer of the source of samples of the RIM and project files in folders of NB project.

Tags: BlackBerry Developers

Similar Questions

  • Is is possible to connect Netbean IDE to the Oracle XE database.

    Is possible to connect Netbean IDE to the Oracle XE database uses drivers provided with Netbean network.

    I m giving continuation of input to Netbean parameter.

    Data entry mode: entry field
    Driver name: JAVA DB (Network)
    Host: light-LMO
    Port: 1521
    Database: XE
    Username:lightweight
    Password: xxxxx


    When tried connecting the Oracle XE using netbean I got following error.


    ubable to add a connection. Could not establish a connection to the jdbc:derby://lightweight-ovm:1521 / XE
    using org.apache.derby.jdbc.ClientDriver (insufficient during the reading of the network - wait a minimum)
    6 bland and received only 1 byrtes. the connection has been lost.


    However, I can able to connect in the jsp pages using the following connection string.

    Class.forName ("oracle.jdbc.driver.OracleDriver");
    Conn = DriverManager.getConnection ("jdbc:oracle:thin:@localhost:1521:XE", "light", "oracle");


    What's not here?

    Please post this in

    Database connectivity - Java Database Connectivity (JDBC) Forums...

    http://forums.Sun.com/forum.jspa?forumid=48&start=0

    Concerning
    Rajesh

  • DAQmx error: DAQmx Every N samples transferred the event buffer is not d support channel types

    Hello

    Trying to get my new ni9263 below is the steps:

    DAQmxErrChk (DAQmxCreateTask("",&taskHandle));
    DAQmxErrChk (DAQmxCreateAOVoltageChan(taskHandle,"Dev1/ao0","",-10,10,DAQmx_Val_Volts,)); NOR-USB 9263
    DAQmxErrChk (DAQmxCfgSampClkTiming (taskHandle,"" SAMPLE_RATE, DAQmx_Val_Rising, DAQmx_Val_ContSamps, SAMPLE_SIZE));

    DAQmxErrChk (DAQmxCfgOutputBuffer (taskHandle, OUTPUT_BUFFER_SIZE));

    DAQmxErrChk (DAQmxRegisterDoneEvent(taskHandle,0,DoneCallback,));

    DAQmxErrChk (DAQmxRegisterEveryNSamplesEvent (taskHandle, DAQmx_Val_Transferred_From_Buffer, EVERY_N_SAMPLES, 0, EveryNSamplesCallbackAO, NULL));
    DAQmxSetWriteRegenMode (taskHandle, DAQmx_Val_DoNotAllowRegen);

    Then I do my writing code and start the task

    When I move my code in my application hangs when it comes to DAQmxRegisterEveryNSamplesEvent with the following error

    DAQmx error: DAQmx Every N samples transferred the event buffer is not d support channel types

    Status code :-200980

    Any idea?

    Greetings;

    When you're talking about an alternative, do you mean a sleeve of spare or chassis or an alternative in the code?

    If it's a matter of code, then you probably need to change your software architecture to adapt the capacity of the installation. In order to avoid to use the FIFO and so have the problem you are experiencing, you avoid needing to register for this event? A few examples on different architectures is on the following link:

    http://www.NI.com/white-paper/6999/en

    Kind regards

    Simon Perez

  • SSL handshake failed in the BB10 QNX Momentics IDE

    I am trying to connect to a web service that uses the SSL protocol. I work with Blackberry 10 in C++ with the QNX Momentics IDE of. The connection that I am doing is this:

    URL: 'https://movilapi...'.

    Code:

    networkAccessManager = new QNetworkAccessManager(this);
        bool res = connect(networkAccessManager, SIGNAL(finished(QNetworkReply*)),
                this, SLOT(requestFinished(QNetworkReply*)));
    
        Q_ASSERT(res);
        Q_UNUSED(res);
    
        QNetworkRequest request = QNetworkRequest(QUrl(url));
        request.setRawHeader("User-Agent", "bb-phone/20120910");
        request.setRawHeader("Content-Type", "application/json");
        request.setRawHeader("Content-Length", postDataSize);
    
        QSslConfiguration sslConfig = request.sslConfiguration();
        sslConfig.setPeerVerifyMode(QSslSocket::VerifyNone);
        sslConfig.setProtocol(QSsl::TlsV1);
        request.setSslConfiguration(sslConfig);
    
            networkAccessManager->post(request, outData);
    

    I still get the same error, regardless of the service which I try to reach. The answer is: SSL handshake failed

    Please help, I have searched for hours without success. Thank you.

    After getting in contact with the RIM a little personal on this issue, we discovered that the TLS/SSL server does not tolerate some extensions, so with the following code of Qt to turn off extensions, the connection was properly made over https:

    QSslConfiguration cfg(request.sslConfiguration());
    cfg.setSslOption(QSsl::SslOptionDisableSessionTickets, true);
    request.setSslConfiguration(cfg);
    

    I want to make special mention of the Department development of applications of Research In Motion for the attention and effort invested on this issue until we finally got the right way to go.

    Here is the code to connect to the case wherever everyone faces this need:

    networkAccessManager = new QNetworkAccessManager(this);
    bool res = connect(networkAccessManager, SIGNAL(finished(QNetworkReply*)),
                this, SLOT(requestFinished(QNetworkReply*)));
    QNetworkRequest request = QNetworkRequest(QUrl(url));
    request.setRawHeader("User-Agent", "BB_PHONE/20120926");
    request.setRawHeader("Content-Type", "application/json");
    request.setRawHeader("Content-Length", postDataSize);
    
    QSslConfiguration sslConfig = request.sslConfiguration();
    sslConfig.setPeerVerifyMode(QSslSocket::VerifyNone);
    sslConfig.setPeerVerifyDepth(1);
    sslConfig.setProtocol(QSsl::TlsV1);
    sslConfig.setSslOption(QSsl::SslOptionDisableSessionTickets, true);
    
    request.setSslConfiguration(sslConfig);
    networkAccessManager->post(request, outData);
    
  • Must be signed with the RIM Runtime Code Signing Key (RRT) - example of code bar

    Hi, when I try to start the bardcode example in my device (9780 Smartphone), I get

    "Error starting BarCodeApp: Module 'BarCodeApp' must be signed with the RIM Code Signing Key (RRT) DURATION.

    The only class I have in my project is:

    import java.util.Hashtable;
    import java.util.Vector;
    
    import net.rim.blackberry.api.browser.Browser;
    import net.rim.blackberry.api.browser.BrowserSession;
    import net.rim.device.api.barcodelib.BarcodeBitmap;
    import net.rim.device.api.barcodelib.BarcodeDecoder;
    import net.rim.device.api.barcodelib.BarcodeDecoderListener;
    import net.rim.device.api.barcodelib.BarcodeScanner;
    import net.rim.device.api.command.Command;
    import net.rim.device.api.command.CommandHandler;
    import net.rim.device.api.command.ReadOnlyCommandMetadata;
    import net.rim.device.api.system.Bitmap;
    import net.rim.device.api.system.KeyListener;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.Keypad;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.XYEdges;
    import net.rim.device.api.ui.component.BitmapField;
    import net.rim.device.api.ui.component.Dialog;
    import net.rim.device.api.ui.component.EditField;
    import net.rim.device.api.ui.component.LabelField;
    import net.rim.device.api.ui.container.FullScreen;
    import net.rim.device.api.ui.container.MainScreen;
    import net.rim.device.api.ui.decor.BorderFactory;
    import net.rim.device.api.ui.toolbar.ToolbarButtonField;
    import net.rim.device.api.ui.toolbar.ToolbarManager;
    import net.rim.device.api.util.StringProvider;
    
    import com.google.zxing.BarcodeFormat;
    import com.google.zxing.DecodeHintType;
    import com.google.zxing.common.ByteMatrix;
    import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
    import com.google.zxing.qrcode.encoder.Encoder;
    import com.google.zxing.qrcode.encoder.QRCode;
    
    /***
     * Barcode API Sample
     * 

    * This application demonstrates the most common use of the Barcode API: 1) * Creating and displaying a QR code, 2) Scanning a QR code and opening the * browser pointing to that URL. It could be easily modified to scan/create * other kinds of barcodes, or do other things with the scanned/created barcode. * * @author PBernhardt * */ public class BarcodeAPISample extends UiApplication { //This controls how big barcode we will display is to be private static final int BARCODE_WIDTH = 300; // This is the app itself private static BarcodeAPISample _app; // Errors will be logged here private LabelField _logField; // The main screen which holds the toolbar and displayed barcode private MainScreen _mainScreen; // The barcode is displayed here private BitmapField _barcodeField; // The text stored here is converted into a barcode by the user private EditField _barcodeTextField; // This controls the scanning of barcodes private BarcodeScanner _scanner; // This screen is where the viewfinderf or the barcode scanner is displayed private FullScreen _barcodeScreen; public BarcodeAPISample() { // New screen _mainScreen = new MainScreen(); // Create the log field so it can be used in this constructor _logField = new LabelField("Log: "); // Create the place-holder for the barcode image and add it to the main // screen _barcodeField = new BitmapField(new Bitmap(BARCODE_WIDTH, BARCODE_WIDTH), Field.FIELD_HCENTER); _barcodeField.setBorder(BorderFactory.createBevelBorder(new XYEdges(2, 2, 2, 2))); _mainScreen.add(_barcodeField); // Create and add the field to store the barcode contents _barcodeTextField = new EditField("Barcode text: ", "http://devblog.blackberry.com"); _mainScreen.add(_barcodeTextField); // Add "display barcode" and "scan barcode" toolbar buttons /** * This is a quick example of the new (in 6.0) * net.rim.device.api.command package and the * net.rim.device.api.ui.toolbar package. All it does is invoke the * displayBarcode() or scanBarcode() method when you click the * corresponding button. For more details on this package, see the * JavaDocs or elsewhere in the Developer Resource Center */ ToolbarManager toolbar = new ToolbarManager(); ToolbarButtonField displayBarcodeToolbarButtonField = new ToolbarButtonField(new StringProvider("Display")); displayBarcodeToolbarButtonField.setCommand(new Command(new CommandHandler() { public void execute(ReadOnlyCommandMetadata arg0, Object arg1) { displayBarcode(); } })); toolbar.add(displayBarcodeToolbarButtonField); ToolbarButtonField scanBarcodeToolbarButtonField = new ToolbarButtonField(new StringProvider("Scan")); scanBarcodeToolbarButtonField.setCommand(new Command(new CommandHandler() { public void execute(ReadOnlyCommandMetadata arg0, Object arg1) { scanBarcode(); } })); toolbar.add(scanBarcodeToolbarButtonField); _mainScreen.setToolbar(toolbar); // Add the log field to the bottom _mainScreen.add(_logField); pushScreen(_mainScreen); } // Simply create the the app and enter the event dispatcher public static void main(String[] args) { _app = new BarcodeAPISample(); _app.enterEventDispatcher(); } /** * displayBarcode *

    * This method will take the text in the _barcodeTextField, convert it into * a QRCode and display it on the main screen. It could be easily modified * to use a different barcode format or to get the text from somewhere else. */ private void displayBarcode() { try { QRCode qrCode = new QRCode(); // This encodes the text with a low level (%7) of error correction Encoder.encode(_barcodeTextField.getText(), ErrorCorrectionLevel.L, qrCode); // From there we get the actual data matrix and convert it into a // bitmap ByteMatrix barcode = qrCode.getMatrix(); Bitmap bitmap = BarcodeBitmap.createBitmap(barcode, BARCODE_WIDTH); _barcodeField.setBitmap(bitmap); } catch (Exception e) { log("Exception: " + e); } } private void scanBarcode() { // If we haven't scanned before, we will set up our barcode scanner if (_barcodeScreen == null) { // First we create a hashtable to hold all of the hints that we can // give the API about how we want to scan a barcode to improve speed // and accuracy. Hashtable hints = new Hashtable(); // The first thing going in is a list of formats. We could look for // more than one at a time, but it's much slower. Vector formats = new Vector(); formats.addElement(BarcodeFormat.QR_CODE); hints.put(DecodeHintType.POSSIBLE_FORMATS, formats); // We will also use the "TRY_HARDER" flag to make sure we get an // accurate scan hints.put(DecodeHintType.TRY_HARDER, Boolean.TRUE); // We create a new decoder using those hints BarcodeDecoder decoder = new BarcodeDecoder(hints); // Finally we can create the actual scanner with a decoder and a // listener that will handle the data stored in the barcode. We put // that in our view screen to handle the display. try { _scanner = new BarcodeScanner(decoder, new MyBarcodeDecoderListener()); _barcodeScreen = new MyBarcodeScannerViewScreen(_scanner); } catch (Exception e) { log("Could not initialize barcode scanner: " + e); return; } } // If we get here, all the barcode scanning infrastructure should be set // up, so all we have to do is start the scan and display the viewfinder try { _scanner.startScan(); _app.pushScreen(_barcodeScreen); } catch (Exception e) { log("Could not start scan: " + e); } } /*** * MyBarcodeDecoderListener *

    * This BarcodeDecoverListener implementation tries to open any data encoded * in a barcode in the browser. * * @author PBernhardt * **/ private class MyBarcodeDecoderListener implements BarcodeDecoderListener { public void barcodeDecoded(final String rawText) { // First pop the viewfinder screen off of the stack so we can see // the main app _app.invokeLater(new Runnable() { public void run() { _app.popScreen(_barcodeScreen); } }); // We will use a StringBuffer to create our message as every String // concatenation creates a new Object final StringBuffer message = new StringBuffer("Would you like to open the browser pointing to \""); message.append(rawText); message.append("\"?"); log(message.toString()); _barcodeScreen.invalidate(); // Prompt the user to open the browser pointing at the URL we // scanned _app.invokeLater(new Runnable() { public void run() { if (Dialog.ask(Dialog.D_YES_NO, message.toString()) == Dialog.YES) { // Get the default sessionBrowserSession BrowserSession browserSession = Browser.getDefaultSession(); // Launch the URL browserSession.displayPage(rawText); } } }); } } /*** * MyBarcodeScannerViewScreen *

    * This view screen is simply an extension of MainScreen that will hold our * scanner's viewfinder, and handle cleanly stopping the scan if the user * decides they want to abort via the back button. * * @author PBernhardt * */ private class MyBarcodeScannerViewScreen extends MainScreen { public MyBarcodeScannerViewScreen(BarcodeScanner scanner) { super(); try { // Get the viewfinder and add it to the screen _scanner.getVideoControl().setDisplayFullScreen(true); Field viewFinder = _scanner.getViewfinder(); this.add(viewFinder); // Create and add our key listener to the screen this.addKeyListener(new MyKeyListener()); } catch (Exception e) { log("Error creating view screen: " + e); } } /*** * MyKeyListener *

    * This KeyListener will stop the current scan cleanly when the back * button is pressed, and then pop the viewfinder off the stack. * * @author PBernhardt * */ private class MyKeyListener implements KeyListener { public boolean keyDown(int keycode, int time) { // First convert the keycode into an actual key event, taking // modifiers into account int key = Keypad.key(keycode); // From there we can compare against the escape key constant. If // we get it, we stop the scan and pop this screen off the stack if (key == Keypad.KEY_ESCAPE) { try { _scanner.stopScan(); } catch (Exception e) { log("Error stopping scan: " + e); } _app.invokeLater(new Runnable() { public void run() { _app.popScreen(_barcodeScreen); } }); return true; } // Otherwise, we'll return false so as not to consume the // keyDown event return false; } // We will only act on the keyDown event public boolean keyChar(char key, int status, int time) { return false; } public boolean keyRepeat(int keycode, int time) { return false; } public boolean keyStatus(int keycode, int time) { return false; } public boolean keyUp(int keycode, int time) { return false; } } } /*** * log *

    * Writes a message to an edit field for debug purposes. Also sends to * STDOUT. *

    * * @param msg * - The String to log */ public void log(final String msg) { invokeLater(new Runnable() { public void run() { _logField.setText(_logField.getText() + "\n" + msg); System.out.println(msg); } }); } }

    My request is properly signed and work very well in the Simulator.

    Thanks in advance.

    Solved.  http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800901/Support_-_Sign...

  • Odd email blackBerry Smartphones: what the rim?

    I received email on my torch very well, but sending is weird in the last 24 hours. Some messages go very well, some other you end up with a red X instead of a checkbox in the message list and the status message says "all attempts to return it to failed." Any suggestions?

    In addition, I got a lot of strange messages that appear to come from [email protected]. The topic is: RIM_bca28a80-e9c0 - 11 d 1-87fe-00600811c6a2

    The body of the email says, "this message is used to carry data between your BlackBerry handheld and a home server. Please do not delete, move, or reply to this message - it will be processed by the server. "Then, there is a long series of numbers and letters. Each email and I received about 9 or 10 of them this week, has an attachment identified as FTES. DAT, but I have not opened any of the accessories.

    Anyone has any ideas on my outgoing e-mail problem and these emails weird I think. ? Are they really the rim?

    To address your problem of outgoing messages, remove the battery while your phone is on, then replace it a few seconds later.  That will often fix these problems (and otherwise, you might find that your phone will work at least smoother).

    In regard to the messages that you receive, yes they are rim, and they are legitimate.  I can honestly tell you what is their goal, but it has nothing suspicious about them.

  • NetBeans IDE 8 Edition version works in this course?

    Can you install NetBeans 8 version edition for this course, or we must always use the beta version?

    Any update of documentation using NetBeans IDE 8 in this MOOC Embedded Java?

    Thank you very much.

    Matthew Ho

    Hi Matthew -.

    Yes, we'll use NetBeans 8 (the current version) and Java SE 8 (JDK 1.8.0).

    Please do not use NetBeans 8 beta - the beta version is missing a few items needed for Java ME embedded 8.

    Materials in 1 week will cover installation of NetBeans, the plugins and Java ME SDK, as well as the Raspberry Pi for Java ME 8 Embedded configuration.

    Just a few more days!

    Tom

  • Derby in Netbeans IDE database connectivity problem

    I use the latest version of Netbeans IDE
    I've already put the variable JAVA_HOME and DERBY_HOME, as well as path variables.
    I am trying to connect to the database in network Mode
    by using the following code

    ......
    Try
    {
    Class.forName ("org.apache.derby.jdbc.ClientDriver");
    }
    catch (ClassNotFoundException System.Exception)
    {
    exception.printStackTrace ();
    }
    .....

    but it gives the error of execution that "failed to load the driver.
    Please help me get through this

    Try adding the following to your class:

    Import org.apache.derby.jdbc.ClientDriver;

    If he produces an error, your pilot *.jar file is not in the classpath.

  • SwingWorker and NetBeans IDE

    I use NetBeans IDE 7 to make GUI. I wonder if there is a way to let the NetBeans IDE 7 dealing with the construction of management background since JProgressBar and jTextArea does not at all. I have set jProgressArea value and jTextArea text manually - I believe that they must be fixed by SwingWorker (or is there any alternative?) to do their job properly. So my question is: can I do this using the view Design of NetBeans IDE? I don't see this option.
    public class JFrame extends javax.swing.JFrame {
    
        public JFrame() {
            initComponents();
        }
    
        private void initComponents() {
    
            jButton1 = new javax.swing.JButton();
            jProgressBar1 = new javax.swing.JProgressBar();
            jScrollPane1 = new javax.swing.JScrollPane();
            jTextArea1 = new javax.swing.JTextArea();
            jButton1.setText("START DOWNLOADING XLS FILES");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
                }
            });
            jTextArea1.setColumns(20);
            jTextArea1.setEditable(false);
            jTextArea1.setFont(new java.awt.Font("Tahoma", 0, 11));
            jTextArea1.setRows(5);
            jScrollPane1.setViewportView(jTextArea1);
        }
    
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
            try {
                new JFrame().callPowerSystemInformationGetFunctions();
            } catch (MalformedURLException ex) {
                Logger.getLogger(JFrame.class.getName()).log(Level.SEVERE, null, ex);
            }
        }
    
        private void callPowerSystemInformationGetFunctions() throws MalformedURLException {
              getCrossborderPowerFlows();
            jProgressBar1.setValue(50);
              getCrossborderTransmissionCapacity();
            jProgressBar1.setValue(100);
         }
         
         private void getCrossborderPowerFlows() throws MalformedURLException {
              jTextArea1.append("Executing getCrossborderPowerFlows!"+System.getProperty("line.separator"));
              /*implementation*/
              jTextArea1.append("Exiting getCrossborderPowerFlows!"+System.getProperty("line.separator"));
         }
         
         private void getCrossborderTransmissionCapacity() throws MalformedURLException {
              jTextArea1.append("Executing getCrossborderTransmissionCapacity!"+System.getProperty("line.separator"));
              /*implementation*/
              jTextArea1.append("Exiting getCrossborderTransmissionCapacity!"+System.getProperty("line.separator"));
         }
        
        public static void main(String args[]) {
            try
            { javax.swing.UIManager.setLookAndFeel( javax.swing.UIManager.getSystemLookAndFeelClassName() ); }        
              catch (ClassNotFoundException ex) {
                java.util.logging.Logger.getLogger(JFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (InstantiationException ex) {
                java.util.logging.Logger.getLogger(JFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (IllegalAccessException ex) {
                java.util.logging.Logger.getLogger(JFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (javax.swing.UnsupportedLookAndFeelException ex) {
                java.util.logging.Logger.getLogger(JFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            }
    
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new JFrame().setVisible(true);
                }
            });
        }
     
        private javax.swing.JButton jButton1;
        private javax.swing.JProgressBar jProgressBar1;
        private javax.swing.JScrollPane jScrollPane1;
        private javax.swing.JTextArea jTextArea1;
    }

    totalnewby wrote:
    So my question is: can I do this using the view Design of NetBeans IDE? I don't see this option.

    No, the fashion design can do for you, so no doubt you need to write code, as already suggested by Jörg.

  • Local error-1200 creation push certificates on the server. Any idea?

    In the Application Server

    When you try to renew or create a certificate to push comes up with the error "Certificates to push creation local error - 1200" on the server. Any idea? »

    I'm having the same problem with 10.7.5 server. (two of them)

    At the time of renewal, I was looking at the Console and I think the Apple Server SSL certificate is therefore more reliable.

    (or server versions are low)

    August 15 at 10:23:08 login.* * servermgrd [23349]: received the connection error: error domain = NSURLErrorDomain Code =-1200 "error SSL and a connection to the server cannot be made. UserInfo = 0x7fb8f5aab9a0 {NSUnderlyingError = 0x7fb8f15af450 "error SSL and a connection to the server cannot be made.", NSErrorFailingURLStringKey =https://identity.apple.com/pushcert/caservice/renew, NSErrorFailingURLKey =https://identity.apple.com/pushcert/caservice/renew, NSLocalizedRecoverySuggestion = you want to connect to the server anyway?, NSLocalizedDescription = SSL an error has occurred and a connection to the server cannot be made.}

    August 15 at 10:23:08 login.* * servermgrd [23349]: certificate request to push failed: reason = Local, error code = - 1200, error = error Domain = NSURLErrorDomain Code =-1200 "error SSL and a connection to the server cannot be made. UserInfo = 0x7fb8f5aab9a0 {NSUnderlyingError = 0x7fb8f15af450 "error SSL and a connection to the server cannot be made.", NSErrorFailingURLStringKey =https://identity.apple.com/pushcert/caservice/renew, NSErrorFailingURLKey =https://identity.apple.com/pushcert/caservice/renew, NSLocalizedRecoverySuggestion = you want to connect to the server anyway?, NSLocalizedDescription = SSL an error has occurred and a connection to the server cannot be made.}

    So not yet an idea, but hopefully with these console outputs happen to something?

  • I bought 50 weeks to Go on my iphone and my cpu it always says I'll run out and have only the 5 GB, I had originally. They are the same accounts and idea how to fix?

    I bought 50 weeks to Go on my iphone and my cpu it always says I'll run out and have only the 5 GB, I had originally. They are the same accounts and idea how to fix?

    Have you tried signing off iCloud desktop and then signing again? If you check on the phone, does show the plan 50 GB? Are you sure that the two devices are signed on the same iCloud account?

  • Try to install Windows 7 via USB, El Capitan, Macbook Pro 2011 but get this error "No. BOOTABLE DEVICE - INSERT BOOT DISK AND press ANY KEY ' when bootcamp restart my macbook to begin the installation. Any ideas?

    I am trying to install Windows 7 via USB, (El Capitan, Macbook Pro - early 2011), but this mistake "No. BOOTABLE DEVICE - INSERT BOOT DISK AND press ANY KEY ' when bootcamp restart my macbook to begin the installation. Any ideas?

    You cannot use a USB on Mac 2011 Installer. Please burn the ISO on a physical DVD Windows (a DVD - R Carbon SL on the rate of burning slower is better) and use it to install Windows. The file Info.plist changes only allowing the creation of USB, but does not fully support a USB Installation.

  • My bookmarks sidebar appears suddenly empty, showing a search panel and no bookmarks. All bookmarks always appear in the menu bar. Ideas?

    My bookmarks sidebar appears suddenly empty, showing a search panel and no bookmarks. All bookmarks always appear in the menu bar. Ideas?

    This may be a problem with the places.sqlite file that stores the bookmarks and history.

  • I've updated to 9.3 on my iPod and my Mini iPad; Night shift is now on the iPid but not the iPad Mini. any ideas?

    I've updated to 9.3 on my iPod and my Mini iPad; Night shift is present on the iPod, but not the iPad Mini. and ideas?  Thank you!  CB

    Night shift is only on the iPad Mini 2 and later versions. http://www.Apple.com/iOS/updates/

    -AJ

  • Patches Mainstage sample for the keys to the North

    Hey guys. I have several amazing patches in Mainstage I'd like to have on my North Electro 5. Therefore, I should sample this patches (almost pads or synths) to create a *.wav which can be imported in my Sampleeditor (example of Publisher of North). I could taste in Logic Pro, but how can I sample sounds that "play" in Mainstage? Is it possible to sample in the logic that I play in Mainstage on the same Mac and if so how?

    THX

    Find out what...

    https://brianli.com/sampling-synths-auto-sampler-Mainstage-3/

Maybe you are looking for