start developing the waterfall

How can I start developing and I want to plan or step to start the vedios tutorial or pdf Please

Take a look at this link.  There are good technical presentations online from the beginning:

http://www.blackberrydeveloperevents.com/events/resources/training_sessions/Cascades/

Tags: BlackBerry Developers

Similar Questions

  • Updated BBM status programmatically in the development of the waterfall?

    Hi all

    Anyone know how to upgrade the status of BBM programmatically in the development of the waterfall?

    Thank you

    The following links should help get you started.  If you have other questions about this let me know.

    Docs: work with the BBM user profile

    Sample: sample of BBM profile

  • Ask the suggestion to start develop keyboard app

    Hi all

    I would like to develop new BB10 application but should be integrated with screen systems, need your suggestion.

    For Q10, it has a physical keyboard, but if I need use the virtual keyboard of Q10, is it possible to activate it?

    Or if I need to develop the program of keyboard, on-screen Q10, you propose for sample application, or can you guide for the starter, which one I should research the subject.

    (Background, I create 2 or 3 BB10 app, but just the simple application, never integrate BB10 system.)

    Thanks for your advice.

    You cannot create a third-party keyboard that would replace the touchpad by default, or you can not change the layout of the stock keyboard.

    There is an open-source project of Thurask that gives you a Russian keyboard custom on-screen, you can try to modify for your needs.
    https://github.com/thurask/russkey

    http://supportforums.BlackBerry.com/T5/native-development/create-custom-keyboard/m-p/2755947/HIGHLIG...

    http://supportforums.BlackBerry.com/T5/native-development/how-to-customize-virtual-keyboard/m-p/2059...

  • Use good flash to start developing for the Iphone?

    Do you think it is wise to use adobes tools for mobile applications, considering that they poured the sdk, how do we know that we will be able to use flash to make iphone apps in the future?

    First, the SDK has not been "thrown" Adobe has mentioned that they are moving Flex to open at MAX 2010 governance model, and I think that it is widely regarded as a good thing for the community.

    That being said, your question is not really responsible since the right technology depends on many different factors. We use Flex and AIR, because it's rapid development, the capabilities of the platform, and because we already have the resources and the talent in-house to produce with it.

    If I need to get out every bit of performance I might opt for XCode rather (very probably as a native of the AIR extension).

  • Windows didn't start because the following file is missing or corrupted \windows\system32\config\system

    Windows windows xp could not start because the following file is missing or damaged:
    \windows\system32\config\system
    You can accept it corresponds to repair this file by starting windows setup using the original Setup CD
    Select 'r' in the first screen to start repair

    I don't have original cd so I downloaded from the internet.  Only 1 cd when the instructions said it would be 6. that didn't work

    tillieme,
    You will need a valid XP disc to run the repair.  It is possible that the PC manufacturer develop a recovery hard disk partition.  You should check with them to see if it's an option.  Also, some manufacturers will provide filtering alternative for a small fee. Mike - Engineer Support Microsoft Answers
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Guard application launch at the start of the appliance, also need advice for the implementation of network methods

    Hi all

    I'm new to the development of Blackberry and I'm writing a relatively simple application to run on 7.1.

    So far the development was interesting, I managed to create my user interface using resources online (mainly this forum), but today I tried to implement some of the network classes that I need and now I just met constant problems.

    I use Eclipse SDK 3.7.2 (the one that comes with the plugin RIM)

    First question:

    I'm not sure what I changed, but today I noticed that whenever I start the Simulator (by sim 9360) my application is started during the initial startup process. I don't think he did this before, but to be honest, I wasn't paying much attention. I think it starts at the start of the device is because I put a breakpoint in the constructor for my class from the main screen, which is hit before the Simulator happens even to the point where it is ready for user interaction. In addition, once it is ready, if I press the BB button, I see my registered application.

    I don't have it set to automatic start in .xml descriptior enforcement.

    I started this application on the HelloBlackBerry sample, here is my main method for the entry of the application:

    public static void main( String[] args ) {
            appSettings = AppSettings.fetch();
            // Create a new instance of the application and make the currently
            // running thread the application's event dispatch thread.
            HelloBlackBerry theApp = new HelloBlackBerry();
            theApp.enterEventDispatcher();
            //openConnection();
    
        }
    
    
    

    As far as I know, this is the only entry point for the application.

    More code

        public HelloBlackBerry() {
            // Push a screen onto the UI stack for rendering.
            mainScreen = new ScreenHelloBlackBerry();
            pushScreen( mainScreen );
        }
    

    Here is the method of. my class AppSettings fetch()

        // Retrieves a copy of the effective properties set from storage.
        public static AppSettings fetch()
        {
            AppSettings savedSettings = (AppSettings) _store.getContents();
            return new AppSettings(savedSettings);
        }
    

    Some of this code that I wrote myself, the persistence store cause the launch of my car?

    I tried to reset the Simulator to the factory settings, no change.

    All applications initialized during the startup of the device and then closed shortly after?

    Part 2: Need advice for the implementation of functions of network in the application

    I need to implement some methods that will retrieve data from a web service, and I also need to send data to this service. What I've read, the ConnectionFactory is the way to go. I want my application to make a request when the application is open and can check on a set interval. I didn't know exactly how to go about adding another thread for networking, I understand that network connections should not be created on the thread main event, so I tried to do this:

    The constructor of my class that implements screen (ScreenHelloBlackBerry), I use the following to create a modal dialog box to prompt the user for a username, I also try networking wire in the same segment of spawning:

            public ScreenHelloBlackBerry(){...initialize fields and managers, add it all together...then near the end
    
    //This will open the confirm dialog when the application is launched
            UiApplication.getUiApplication().invokeLater(new Runnable() {
                  public void run() {
                      openConfirmDialog();
                    //start connection - Possibly broken
                      ConnectionThread ct = new ConnectionThread();
                      ct.start();
                  }
            });
    

    I don't know if it's somehow OK to do, but it seems to work for what I need. I want a user who launches the application at the prompt, and if a user switch applications, when they come back they wondered again (unless they close the app and reopen it).

    Here is my ConnectionThread:

    public class ConnectionThread extends Thread
    {
    
        public void run()
        {
    
              ConnectionFactory connFact = new ConnectionFactory();
              ConnectionDescriptor connDesc;
              connDesc = connFact.getConnection("http://www.google.com");
              if (connDesc != null)
              {
                  HttpConnection httpConn;
                  httpConn = (HttpConnection)connDesc.getConnection();
                  try
                  {
                      final int iResponseCode = httpConn.getResponseCode();
                      UiApplication.getUiApplication().invokeLater(new Runnable()
                      {
                          public void run()
                          {
                              Dialog.alert("Response code: " +
                                            Integer.toString(iResponseCode));
    
                          }
                       });
                      httpConn.close();
    
                   }
                   catch (IOException e)
                   {
                     System.err.println("Caught IOException: "
                          + e.getMessage());
                   }
              }
        }
    }
    

    At the moment it has basically unmodified code from a sample that I found, I'll be retooling to meet my needs whenever I can make it work. I HAD this work to the point where, after the closed user confirm this dialog, a few moments later a an alert dialog appears with the 302 response code. I don't know what changed, but now it doesn't work at all, and if I try to scroll with the debugger, I can't past the httpCon.getResponseCode (). I've seen some mistakes earlier on "no record of service was set up", and I also had once a timeout exception.

    I'm sure I'm doing this wrong, but at the same time as I said WAS working, and now it is not. If someone has done this far, thank you very much for your time and advice are much appreciated.

    Also, should I try to start the thread of the network of the UIApplication class instead of the screen? There is currently very little happening in the class that extends UIApplication, do I spend most of my business logic out of the class of the screen and in the UIApplication class?

    Thanks in advance!

    Hi all

    Just to conclude this topic for those who are interested, I found an excellent guide to the implementation of networks in applications of BB, click here for a link.

    About my application being started at the start of the simulator of the device, I found that on a device real this behavior is not complied with, and in addition, the behaviour seems to have stopped after uninstallation and reinstallation of my Simulator.

    See you soon,.

  • app to auto-launch at the start of the device

    I need to run my application at startup of the unit. How to get there. I did a lot of research but doesnot find a good solution. I also tried to implement SystemListener and its different methods, but not the solution as powerUp() and powerOff() method is not called on device turns on or off. I have also tried to change the descriptor and setting auto run on startup but help out me. I ask everyone to please solve my problem as soon as possible because it is very urgent for me. Thanks in advance.

    With the help of which IDE is you you are developing the application... Is - this BlackBerry JDE or using Eclipse...

    If it's BlackBerry JDE then right click on your project and go to properties->, tab Application-click-> and select the check box for system Module & Auto Run on Start Up.

  • start developing applications playbook

    Hello friends,

    I want to start the development of the blackberry playbook. According to my research, I get acquainted with Adobe Flash sdk. the help that we can begin the development of playbook for blacberry. for this we need html and java script.

    I did a native app for Blackberry in java. I want to know that how we develop for playbook in java?

    There is no sdk available for this? How do I start developing for Playbook?

    Thank you and regrards,

    Ajay Poirier.

    "I want to download this SDK c / c ++ for application Plyabook.

    See my previous post:

    "Announced and expected to be available for 2012 Devcon.

  • I want to start developing for blackberry 10.

    Hello

    I want to start developing for Blackberry 10. Please suggest where I get the tutorial for study.

    Here are the forums, you would use:

    Native development:

    http://supportforums.BlackBerry.com/T5/native-development/BD-p/native_sdk

    Cascades (I recommend this):

    http://supportforums.BlackBerry.com/T5/Cascades-development/BD-p/Cascades

    And the place to start looking for other stuff is here:

    https://developer.BlackBerry.com/develop/platform_choice/NDK.html

  • Best way to start developing for Blackberry 10?

    Hello

    I'm a mobile developer works on iOS, Android, and Blackberry platforms.

    Our society has decided to finally support the Blackberry 10 platform. I've been so busy to develop our latest ideas on iOS I really had time to look into the development of BB10, so far.

    I did some research on the forums and came across this post:

    http://supportforums.BlackBerry.com/T5/Java-development/I-want-to-start-development-for-BlackBerry-1...

    Which mentions 2 ways that you can develop for BB10, Aboriginal and waterfalls.

    Now, when it comes to development of BB, I come from the crowd of java. I would like to know the advantages and disadvantages of native development and Cascades, what IDEs or SDK is required, what knowledge is necessary to begin (ex: C++) etc...

    If this question has already been answered, you have my apologies, please provide a link.

    Thank you!

    "Native" is just C/C++ without using Qt and infrastructure of Cascades user interface on top of it. Unless you plan build your user interface ENTIRELY in OpenGL, you probably want to waterfalls. And even in this case, you can draw OpenGL cascading with the ForeignWindowControl content.

    Anyway, if you come from the point of view of iOS, you might find this useful: https://developer.blackberry.com/cascades/documentation/getting_started/porting/index.html

    Since you are familiar with our Java on BB7 platform, you can also check the Java BlackBerry series BlackBerry 10 Cascades of blog on our developer blog posts. The first is here: http://devblog.blackberry.com/2013/01/port-java-to-cascades-part-1/and part 13 just came out today.

    Waterfalls more find info started here: https://developer.blackberry.com/cascades/documentation/getting_started/index.html

    And if you are interested in other platforms, you can go here: https://developer.blackberry.com/develop/platform_choice/index.html

  • Start developing BlackBerry applications

    Hello friends,

    I know J2ME development.

    I'll start development in BB, so I am a beginner in BB

    I want to do great financial app in Sib. but I am a beginner,

    So, I just want to know where I get a basic idea & study of source code for BB.

    then I can move quickly in the development of BB

    Please suggest me a website or forum.

    Thank you

    Neel

    You can use as many instances screen you want, it's ok

  • How to configure an application automatically starts when the unit is turned on

    I used the instructions in:

    How to-configure an application automatically starts when the unit is turned on

    Article number: DB-00002

    1. - in the BlackBerry JDE, right click on the project and select Properties.
    2. - in the Application tab, check the function of automatic execution on startup checkbox.
    3. - If you want your application to run in the background and not appear on the Ribbon, select the Module system.

    My application starts automatically in debugging, but not in my BB8100 pearl.

    Any ideas? THX...

    If you are looking for in the unit LOG immediately after startup, you should find out the reason.  I suggest to you that what follows is the most likely reasons:

    (a) application not signed

    (b) developed for a different level than the device OS.

  • Measures to develop the Web Application with JDeveloper 11.1.1.6.0

    People,

    Hello. I have implemented PeopleSoft Campus Solution 9.0 revision 5 for a University.

    I need to develop an application for Admission online for future student to apply for admission.

    My installations of PeopleSoft are below:

    Server machine: Oracle Linux 5.10 (64-bit)

    Client computer: Windows XP Professional (64 edition) with the Internet Explorer browser

    Architecture Internet Oracle Linux 5.10 Server:

    (1) database server: Oracle Database 11 g version 11.1.0.6.0 is

    (2) the server application: Tuxedo 11 g

    (3) web Server: Web Logic 10.3.6.0 and JDK 1.7.0_09

    (4) browser: Firefox Mozila

    (5) two Instances of huge database on the database server: 8.53 PeopleTools and Campus Solution 9.0.

    To develop the application for Admission online, I made the 4 parties with WebLogic 10.3.6 and JDK 1.7.0_09 as below:

    (1) install ADR (Application Development Runtime) 11.1.1.6.0 (64-bit)

    (2) install the RCU 11.1.1.6.0 to create the scheme of OWSM_MDS (32 bit)

    (3) create a WebLogic 'Domain_CS' domain in WebLgoic 10.3.6.0 in support of MARC 11.1.1.6.0.

    (4) install JDeveloper 11 g 11.1.1.6.0 Studio Edition including WebLogic 10.3.5.0.

    The development environment for the online application for Admission is JDeveloper 11 g 11.1.1.6.0 Studio Edition. I just installed this PeopleSoft system. I don't have any experience using it. The first step is to run the command:

    $./quickstart.sh

    JDeveloper 11g Quick Start Menu appears as below:

    1) start with WebLogic Server 10.3.5

    (2) launching Oracle JDeveloper 11 g

    (3) set up areas for Oracle ADF

    (4) access Oracle JDeveloper 11 g Documentation Online

    (5) domain upgrade to version 10.3.5

    (6) access online documentation

    I don't know the outline of comprehensive measures to develop the Web Application with JDeveloper. We will understand that it out by steps associated with Quick Start Menu.

    My questions are:

    (1) do I need to create or extend a field in WebLogic 10.3.5.0?

    (2) how to develop the Web Application with JDeveloper? How connect JDeveloper with WebLogic 10.3.5.0?

    (3) how to configure the domain for the ADF ADF being installed in another directory?

    (4) folk would provide the outline of measures to develop the Web Application with JDeveloper?

    Thanks in advance.

    Sorry, I don't work with AAWS or PeopleSoft products. You have searched on Google for samples?

    Ultimately AAWS are just web services that allows you to collect and send data. You create the user interface as you would for any web service based on the model layer. Start with samples for the integration of web services in the ADF to familiarize yourself with the process and then try to get some data of AAWS.

    Timo

  • LR CC 2015 Guard does not not to develop the module

    Hi there, as soon as I get started develop module it stops working with (Lightroom, does not) then I have to stop it and start over. I checked the graphic display driver (ATI Radeon5760) and they are up to date. I also installed LR5 and the same thing happens if I try using them. Should I uninstall the LR5 and just keep LR CC or what should I do. ?

    Hi Robantony,

    Could you please let me know the exact version of Lightroom CC 2015 installed on your computer?

    Also, try the following steps:

    • Go to Lightroom > Preferences.
    • Also please go to preferences > Performance tab and uncheck the box "use graphics processor.
    • Restart Lightroom and see if it works.

    Kind regards

    Tanuj

  • Start since the. ISO converter can not see paravirtual (or NIC) scsi drives

    From time to time I develop the C:\ on Windows boot drive using the method #2 in the link below. IE use the V2V Converter a VM and resize the C:\ drive, then trash the old VM and keep the new virtual machine with the Boot disk more.

    -LINK-

    I understand PVSCSI drives are now supported as boot post ESX4 U1 disks, however, I found I can no longer use this method #2 (above) to extend a boot disk.

    One of the other methods on the links above will work? I understand w / provisioning end it becomes less as a problem, but he slips always upwards from time to time the drive C:\ requires more space.

    The attached screenshot shows a 32-bit of 2 k 3 virtual machine using the PVSCSI starts from the conveter. ISO.  Since the C:\ and a single disc is on the PVSCSI vAdapter no OS can be found and I get the error "Unable to determine the operating system invited".  If you have multiple SCSI cards on the virtual machine (and drive), the LSI (and others) discs can be seen and converted.  But without convert them the boot disk, it's kinda useless.

    Will be updated soon converter .iso image file to include the PVSCSI drivers?  It seems the paravirutal NETWORK card driver is required for this converter can cling to the VC or the host as well.

    Thank you.

    Jonathan

    Hi, if you increment the Vsphere Client disk space, the guest sees the added extra space?

    If you can see the added space, try Dell extpart, it is a very good tool, free, and you don't need to stop the virtual machine to expand disk space.

    Check this link http://ftp.dell.com/app/ExtPart.txt

    Here is the link to download the http://support.dell.com/support/downloads/download.aspx?c=us&cs=19&l=en&s=dhs&releaseid=R64398&formatcnt=2&fileid=83929 app

    I used this tool several times and it has worked very well.

Maybe you are looking for