Bug class API Dialog or UiAplication?...

Hi, I'm getting a strange behavior of the Dialog class. The thing is:

On 4.2.1 (8100simulator):

I call it Dialog.ask (Dialog.D_OK_CANCEL, "blah, blah, blah") of activate() UiApplication member and it works find.

Dialog box appears and the program shut down until a selection has been made on request dialogue.

On 4.3.0 (8130simulator):

I do exactly the same thing, not changed lines.

I called Dialog.ask (Dialog.D_OK_CANCEL, "blah, blah, blah") of activate() member of UiAplication.

Dialog box appears and the program shut down until a selection was made on request dialogue but regardless of what comes next in my program, when the dialog box is left aplication poped.

I tried to do the same by placing between demand for dialogue within an invokeAndWait (new Runnable() {public void run() {...}}); and I had the same behavior.

This has only been tested on simulators.

Is this a known issue?, is there a workaround?

I'll apreciate any contribution to this issue.

Thanks in advance.

I would say do not block the app with a dialog box. You can use a dialogclosedlistener for asynchronous processing

Tags: BlackBerry Developers

Similar Questions

  • bug report: warning dialog always appears on the second monitor.

    This applies to Adobe Illustrator CC 2015 (version 19.2.0). I already presented my bug report to Adobe. Here is what happens...

    Steps to reproduce the bug:

    1. cut the 'Application Framework'. Rearrange the palettes, and then create a new workspace. Quit and restart the Illustrator application.

    2. start a new document and draw something on it. Then close the document without saving it.

    3. a warning dialog expected pop up and say "blah blah blah...". If you do not save, your changes will be lost. »

    Results:

    Here is where is the bug: the pop-up warning will still appear on the second monitor, not on the main screen. This same bug also appears when the embedded image of Photoshop is changed and a popup will ask if you want to update. new pop up appears on the second monitor only rather than on the main screen. I even tried to go back to the main screen, the following warnings are always appear on the second monitor. I even changed my monitors autour by reversing the display ports and the problem persists.

    If anyone has a solution to this, would be great and I thank you ahead of time.

    Here's the dialogue windows always appear on the second monitor.

    dialogue box appears on second monitor.jpg
    dialogue box appears on second monitor 2.jpgdialogue box appears on second monitor 3.jpg

    I just upgraded to the latest version of Illustrator CC (2015.3.0 Release;) Version 20.0.0). The dialogue-box-appearing-on-secound-monitor question goes. You need to restart your Mac after installation before it takes effect.

  • DialogClosedListener on the dialog class?

    I tried the DialogClosedListener on a class of configuration dialog box, but it doesn't seem to work. I wonder if it is still possible?

    class that implements the DialogCloseListener

        //Create a class that implement the DialogClosedListener Interface
        static final class myDialogListener implements DialogClosedListener {
            myDialogListener(){
                System.out.println("Made it here");
            }
            public void dialogClosed(Dialog dialog, int choice){
                System.out.println("Output Choice: " + choice);
                switch (choice) {
                    case Dialog.DELETE : Status.show("Delete msg"); break;
                    case Dialog.OK : Status.show("OK msg"); break;
                    case Dialog.CANCEL : Status.show("Cancel msg"); break;
                }
            }
        }
    

    Class of dialog box that creates a popup message with no button

        public final class PopDialog extends Dialog {
            PopDialog(String lockMessage){
                super(lockMessage, null, null, 0, Bitmap.getPredefinedBitmap(Bitmap.INFORMATION), Dialog.GLOBAL_STATUS);
            }
        }
    

    Code used call popup and set the listener

    PopDialog pd = new PopDialog(_defaultPhoneMessage);
    pd.setDialogClosedListener(new myDialogListener());
    pd.doModal();
    

    I get no error or something like that, but the listener never gets called when I close the pop-up window. I use the ESC key to close the pop-up window.

    Y at - it something I'm doing wrong here?

    Yes - the following line of code (after the push) is running.

  • Flash api bug around design work?

    Hello, I came across a bug in api drawing flash where if you draw several things layers light opacity (24) get blotched especially if you use bitmap.draw (). I read somewhere that it is how the draw method has been coded, but I see no wrapper work. Any ideas?

    I am considering the implementation of a custom drawing (AS3 or PHP) method to create the blotched and images...

    Here are the solutions that work. Obviously, it is not limited in itself.

    Your methodology did not work because you redraw graphics for the same object. In order for alphas to stick properly, it must create new objects.

    The most important thing to make it work is set cacheAsBitmap true or draw the Bitmap. The two variants are presented below. If you change cacheAsBitmap false it stops working.

    With very low alpha (0.01), you will need to run more than 2000 iterations of the loop to make transparency resulting opaque. My material does not very well

    Also, even if it is not related to this topic, I noticed that you use instances of MovieClip. MovieClip is much heavier than the Sprite or shape. So, for this kind of testing, it is best to use the form - it is the lightest. Even in general, avoid as much as possible the MovieClip instances. Sprite must be the most used DisplayObjectContainer.

    So, here's the code that extends your methodology.

    This example uses forms directly with cacheAsBitmapset to true.

    var rad:int = 10;
    var s:Shape;
    
    var rct:Shape = new Shape();
    rct.graphics.beginFill(0xff0000);
    rct.graphics.drawRect(0, 0, 100, 100);
    addChild(rct);
    rct.x = stage.stageWidth * .5 - 50;
    rct.y = stage.stageHeight * .5 - 50;
    
    container = new Sprite();
    container.x = stage.stageWidth * .5;
    container.y = stage.stageHeight * .5;
    addChild(container);
    
    var sTimer:Timer = new Timer(100, 1000);
    sTimer.start();
    sTimer.addEventListener(TimerEvent.TIMER, onTick);
    
    function onTick(event:TimerEvent):void {
         rad += 5;
         s = new Shape();
         s.cacheAsBitmap = true;
         s.graphics.beginFill(0x000000, .02);
         s.graphics.drawCircle(rad, rad, rad);
         s.x = s.y = -rad;
         container.addChild(s);
    
         if (event.target.currentCount == 24) {
              var label3:TextField = textField("24");
              label3.x = 50;
              label3.y = 100;
              addChild(label3);
         }
    }
    

    This makes the bitmap:

    var rad:int = 10;
    var s:Shape;
    
    var rct:Shape = new Shape();
    rct.graphics.beginFill(0xff0000);
    rct.graphics.drawRect(0, 0, 100, 100);
    addChild(rct);
    rct.x = stage.stageWidth * .5 - 50;
    rct.y = stage.stageHeight * .5 - 50;
    
    container = new Sprite();
    container.x = stage.stageWidth * .5;
    container.y = stage.stageHeight * .5;
    addChild(container);
    
    var sTimer:Timer = new Timer(100, 1000);
    sTimer.start();
    sTimer.addEventListener(TimerEvent.TIMER, onTick);
    
    function onTick(event:TimerEvent):void {
         rad += 5;
         s = new Shape();
         s.graphics.beginFill(0x000000, .02);
         s.graphics.drawCircle(rad, rad, rad);
    
         var bmd:BitmapData = new BitmapData(s.width, s.height, true, 0x00000000);
         bmd.draw(s);
         var bm:Bitmap = new Bitmap(bmd);
         bm.x = bm.y = -rad;
         container.addChild(bm);
    
         if (event.target.currentCount == 24) {
              var label3:TextField = textField("24");
              label3.x = 50;
              label3.y = 100;
              addChild(label3);
         }
    }
    
  • Error 123: Timeout to libFrame_OpenPageRef.vi while trying to open the properties of the class

    I get an error message 123: time-out when you try to open the class properties dialog in a project.

    Here is the image:

    Anyone have any suggestions on how to fix this? I need to be able to change the class inheritance and other properties. When you open the properties in a new (empty) project, the dialog box opens very well (as slow as usual, that is). The project contained in this class is very large: something like 1200 live and classes 50 +.

    dthor,

    Another possible workaround solution, which I think you discussed previously, is to add the class to a new project file and change the properties of the class through this project. I change the properties in a new project will change the properties of your project to VI of 1200. However, you will not be able to change properties in the new draft, while the old project is still open.

    Sorry for the inconvience, R & D is trying to solve this problem.

  • Dynamic class loader during execution

    Hello

    1 as far I understand J2ME does not support the loader class API, and so the only way to dynamically load a class when running is to call Class.forName (). Is this correct? Is there another way around this?

    2 suppose I created a valid class file (' 'file:///SDCard/MyFiles/myClassFile.class ') during execution, if this file is located under the root of the SDCard, how I can call Class.forName and pass the name of the class file I just created? (The problem is that Class.forName expects a full qualified class name in the form: a.b.c.MyClassFile, while the file is physically located on the SD card.)

    Thank you

    Eyal

    Forget the class files. RIM has its own format of distrition with cod. Do not rely on the normal route, the java classes are stored.

    There is no "application" folder, you cannot add the classes here. Sorry

  • ApplicationMenuItem called with null in JDE 4.6 when you enter the phone number

    When I install a custom phone app, ApplicationMenuItem and

    try to enter a number on the keypad of the native Dialer, and then click the custom menu,

    my custom ApplicationMenuItem is called with a null context object.

    This same code + test case works well under the 4.5 JDE / 8300 emulator

    and device 8320, but fails under JDE 4.6 with the BB 9000 emulator

    and device

    To reproduce the bug:

    * Build/launch of the attached test application

    * Send with previous key

    * Go to the native Dialer

    * Enter "123" on the keyboard of the phone

    * Click on the trackball

    * Choose Bug49 the context menu

    * It will appear a dialog box indicating "context has the null value - is this a bug?

    NOTE that if, rather than enter a number on the keypad of the phone with step 4.

    a call log is selected, then it works and a non-null context object is passed.

    Can I make it work?  If this is a known bug, are

    It no work around?

    import net.rim.blackberry.api.menuitem.ApplicationMenuItem;import net.rim.blackberry.api.menuitem.ApplicationMenuItemRepository;import net.rim.device.api.ui.UiApplication;import net.rim.device.api.ui.component.Dialog;import net.rim.device.api.ui.component.LabelField;import net.rim.device.api.ui.component.RichTextField;import net.rim.device.api.ui.container.MainScreen;
    
    public class Bug49 extends UiApplication { public Bug49()    {     super();      Bug49Screen screen = new Bug49Screen();       pushScreen(screen);       ApplicationMenuItemRepository amir = ApplicationMenuItemRepository.getInstance();     Bug49NativeMenu bug49NativeMenu = new Bug49NativeMenu(0);     amir.addMenuItem(ApplicationMenuItemRepository.MENUITEM_PHONE, bug49NativeMenu ); }
    
      public static void main(String[] args) {      Bug49 b49 = new Bug49();      b49.enterEventDispatcher();   }
    
       static class Bug49Screen extends MainScreen {     public Bug49Screen() {            super();          setTitle(new LabelField("Hello"));            add(new RichTextField("Hello"));      } }
    
      static class Bug49NativeMenu extends ApplicationMenuItem  {     public Bug49NativeMenu(int order) {           super(order);     }     public Object run(Object context) {           if (context == null) {                Dialog.alert("context is null -- is this a bug?");            }         else {                Dialog.alert("context not null");         }         return null;      }     public String toString() {            return "Bug 49";      } }}
    

    It is a problem in the version of BlackBerry device software 4.6.0.  It has been fixed in version 4.7.0.

  • Make JavaFX alerts look like ControlsFX dialogue

    Hello

    is there a way to make the official dialogue boxes (alerts) 8u40 looks like ControlsFX dialog boxes?

    I am talking mainly about the black title bar and slightly "generic" gray (who appear to be white in alert javafx?) as seen here:

    http://controlsfx.BitBucket.org/org/controlsfx/dialog/dialogs.html

    Thank you

    ControlsFX dialog boxes are deprecated,

    See the following blog announcement:

    Announces ControlsFX 8.20.7 / / JavaFX News, demos and Insight / / FX experience

    Use rather openjfx-dialog boxes:

    https://BitBucket.org/controlsfx/openjfx-dialogs

    This project is the controlsfx dialog box (probably the style you want), the features implemented on top of the new API of the Java 8u40 dialog box.

    Dialogs in the basic platform do not natively have the ability to return at your leisure without improvements that (I assume) are in openjfx-dialogues.

    ----

    I looked inside and I assumed wrong, openjfx-dialogue just seems to be a copy of the Java8u40 API dialog box so it has all the features of the obsolete ControlsFX dialog boxes.

    I guess your best bet to get the dialog boxes works the way you want is to use the deprecated ControlsFX API dialog box.

    Directly contact the developers of ControlsFX if you have any other questions.

    https://groups.Google.com/Forum/?hl=en#! controlsfx/forum-dev

    I see the currently last post is titled 'The plan for the dialogues'... it reads:

    (4) the existing dialogs API in ControlsFX will be deprecated but not

    deleted. This API will be removed when we planned on JavaFX 8u40. If

    you use the ControlsFX dialog boxes, please take the time to transition away from

    the old API as soon as possible. If there are things that you could do once

    Now you can't, please file bugs, but please note that we will not

    bring all the features (for example I'm sorry to say that I won't be

    bring back the light dialog boxes unless someone puts a big bag of

    money).

  • MessageConnection opening with the mms protocol prefix, phone number and application ID fails

    Connector class API says docomentation when send MMS to Java application MessageConnection can be opened with the following URL "mms: / / []: []". However when I go for example ' mms: / / + 1234567890:myappID "to Connector.open () IllegalArgumentException is thrown with the invalid message 'URL '. MessageConnection opening with "mms: / / + 1234567890" works very well. It can be reproduced on BB 9105 but BB 9900 is not affected. Is there any workaround for this problem solution I can still be able to send MMS to another Java application?

    Found this prefix "+" is not a reason any.
    http://supportforums.BlackBerry.com/T5/Java-development/cannot-receive-MMS-with-port-USIN-WMA/TD-p/4...

  • use of the extended dialogue

    HII, how do I remove the button 'ok' of a class extends dialog?

    Super (String message, choice of Object [], int [] values, int defaultChoice, bitmap Bitmap);

  • can't verify your existing purchases

    Hey guys, I have two quick questions/problems...

    (1) how do you usually check the api blackberry.payment? I tried to use the devmode structure, but I noticed the behavior isn't quite 100% identical to the production.

    (2) seems to be control problems if a user has bought a virtual good. I do the following:

    blackberry.payment.checkExisting ({sku: 'MYSKU-001'}, onsuccess, onfailure);

    define developmentMode = true seems to work very well... but when I try this with my app in the BlackBerry world it constantly seems to think that I did not purchase. I tried to buy the virtual good with my own account and checked checkExisting() don't think I bought the property.

    Has anyone else done something similar?

    In case anyone is wondering, there is currently a bug in api WebWorks payments which will return false for all goods without a subscription to checkExisting().

    The workaround is to use getExistingPurchases().

    https://github.com/BlackBerry/BB10-WebWorks-framework/issues/638

  • Do more Modal title

    I got my Modal + Gallery installation in a < div >, instead of a < li > which was included in the tutorial and everything seems to work very well. What I want to do, this is the title a bit bigger that it shows. I know it's probably adding a tag class, just don't know what < div > I put in to affect the title. I show the code as well as a screenshot of what I see. The only link configuration is now "Pré Cook".

    Screen Shot 2016-06-22 at 1.59.55 PM.png

    <! DOCTYPE html >

    < html lang = "en" >

    < head >

    < meta charset = "UTF-8" >

    < meta http-equiv = "X-UA-Compatible" content = "IE = edge" >

    < meta name = "viewport" content = "width = device-width, original scale = 1" >

    < title > Renegades cooking Team - Photos < /title >

    <!-"bootstrap"->

    < link href = "css/bootstrap.css" rel = "stylesheet" > "

    < link href = "styles.css" rel = "stylesheet" type = "text/css" > "

    <! - HTML5 shim and Respond.js for IE8 take in charge of the HTML5 elements and questions from the media - >

    <!-WARNING: Respond.js does not work if you view the page via file://-->

    <!-[if lt IE 9] >

    " < script src =" https://OSS.MaxCDN.com/html5shiv/3.7.2/html5shiv.min.js "> < / script > .

    " < script src =" https://OSS.MaxCDN.com/respond/1.4.2/respond.min.js "> < / script > .

    <! [endif]-->

    < link rel = "icon" href = "images/renegadesfavicon.ico" type = "image/x-icon" / > "

    < / head >

    < body >

    <! - START START HEADER IMAGE - >

    < div class = "header-foot page-image" >

    "" < img class = "promoting the bootimage img" src = "... / images/header_image1200.jpg" width = "1200" height = "551" alt = "" / >

    < / div >

    <! - END BOOT HEADER IMAGE - >

    <! - START PAGE CONTAINER - >

    < div class = "container-fluid" >

    <! - START NAVIGATION BAR - >

    < nav class = "navbar, navbar-default" >

    <! - START NAVIGATION header BAR - >

    < div class = "bar navigation-header" >

    < button type = "button" class = "toggle navigation bar has collapsed" data-toggle = 'collapse' data-target = "#defaultNavbar1" aria-expanded = "false" > < span class = "sr only" > toggle navigation </span > < span class = 'bar icons' > < / span > < span class = 'bar icons' > < / span > < span class = 'bar icons' > < / span > < / button >

    < / div >

    <! - END of NAVIGATION BAR header - >

    <! - START NAVIGATION BAR LINKS - >

    < div class = "navbar-collapse collapse" id = "defaultNavbar1" >

    < ul class = "navbar-nav nav" >

    < li > < a href = "#" > about us < /a > < /li >

    < li > < a href = "#" > < /a > < /li > team members

    < li > < a href = "#" > Subscriber packages < /a > < /li >

    < li > < a href = "#" > insurers < /a > < /li >

    < class li = "active" > < a href = "#" > Photos < span class = "sr only" > (ongoing) </span > < /a > < /li >

    < li > < a href = "#" > contact us < /a > < /li >

    < /ul >

    < / div >

    <! - END of NAVIGATION BAR LINKS - >

    < / nav >

    <!--END of NAVIGATION BAR-->

    <! - START SMALL GALLERY IMAGES - >

    < div class = "row" >

    < div class = "col-xs-4" >

    < div class = "thumbnail" >

    < div class = "caption" >

    < h5 class = "center" > Cook pre < / h5 >

    < / div > <!-/-> .caption

    "" < a href = "#myPreCookGallery" data-slide-to = '0' > < img src = "... / images/photo_page/923_454760494575151_9017795.jpg" alt = 'Image of pre-Cook' data-toggle = "modal" data-target = "#myPreCookModal" > < / has >

    < / div > <!-/-> .thumbnail

    < / div > <!-/-> .col

    < div class = "col-xs-4" >

    < div class = "thumbnail" >

    < div class = "caption" >

    < h5 class = "center" > Good Times < / h5 >

    < / div > <!-/-> .caption

    "" < img src = "... / images/photo_page/229883_454771654574035_1526.jpg" alt = "Image of good times" >

    < / div > <!-/-> .thumbnail

    < / div > <!-/-> .col

    < div class = "col-xs-4" >

    < div class = "Thumbnail Center" >

    < div class = "caption" >

    < h5 class = "center" > Party < / h5 >

    < / div > <!-/-> .caption

    "" < img src = "... / images/photo_page/185074_454775251240342_2000.jpg" alt = "Image part" >

    < / div > <!-/-> .thumbnail

    < / div > <!-/-> .col

    < div class = "col-xs-4" >

    < div class = "Thumbnail Center" >

    < div class = "caption" >

    < h5 class = "center" > judgment < / h5 >

    < / div > <!-/-> .caption

    "" < img src = "... / images/photo_page/183798_454772544573946_1893.jpg" alt = "Image of judgment" >

    < / div > <!-/-> .thumbnail

    < / div > <!-/-> .col

    < div class = "col-xs-4" >

    < div class = "Thumbnail Center" >

    < div class = "caption" >

    < h5 class = "center" > Jello Shots < / h5 >

    < / div > <!-/-> .caption

    "" < img src = "... / images/photo_page/175081_454754501242417_9528.jpg" alt = "Image of Jello Shot making" >

    < / div > <!-/-> .thumbnail

    < / div > <!-/-> .col

    < / div > <!-/-> .row

    <! - END SMALL GALLERY IMAGES - >

    <!-start before cooking modal window->

    < div class = "modal bland" id = "myPreCookModal" tabindex = "-1" role = "dialogue" aria-labelledby = "myPreCookModalLabel" aria-hidden = "true" >

    < div class = "modal-dialog" >

    < div class = "modal-content" >

    < div class = "modal-header" >

    < div class = "pull-left" > Cook pre < / div >

    < button type = "button" class = 'close' data - reject = "modal" title = "close" >

    < span class = "glyphicon glyphicon - remove" > < / span > < / button >

    < / div >

    < div class = "modal-body" >

    <! - begin carousel - >

    < div id = "myPreCookGallery" class = "slide Carousel" data-interval = "false" >

    < div class = 'Carousel-interiors' >

    < div class = "active item" >

    " < img src = ' http://lorempixel.com/600/400/nature/1 "alt ="item1"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    description of slide 0 < p >. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/2 "alt ="item2"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > Slide 1 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/3 "alt ="item3"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 2 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/4 "alt ="item4"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 3 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/5 "alt ="item5"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 4 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/6 "alt ="item6"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 5 description. < /p >

    < / div >

    < / div >

    <!-end carrousel-Interior-> < / div >

    <!-Begin previous and next->

    < a class = "Carousel-control left" href = "#myPreCookGallery" role = "button" data-slide 'prev' = >

    < span class = "glyphicon glyphicon-chevron-left" > < / span > < /a >

    < a class = "carousel-control right" href = "#myPreCookGallery" role = "button" data-slide 'next' = >

    < span class = "glyphicon glyphicon-chevron-right" > < / span > < /a >

    <! - end myPreCookGallery - > < / div >

    <!-end modal-body--> < / div >

    < div class = 'modal-footer' >

    < div class = "pull-left" >

    < small > photographs of defiant kitchen team < / small >

    < / div >

    < button class = "close btn - sm" type = "button" data - reject 'modal' = > close < / button >

    <! - end modal-footer - > < / div >

    <!-end modal-content--> < / div >

    <!-end modal-dialoge--> < / div >

    <!--end my Modal pre Cook--> < / div >

    <!-begin good time window modal->

    < div class = "modal bland" id = "myGoodTimesModal" tabindex = "-1" role = "dialogue" aria-labelledby = "myGoodTimesModalLabel" aria-hidden = "true" >

    < div class = "modal-dialog" >

    < div class = "modal-content" >

    < div class = "modal-header" >

    < div class = 'pull-left' > Good Times < / div >

    < button type = "button" class = 'close' data - reject = "modal" title = "close" >

    < span class = "glyphicon glyphicon - remove" > < / span > < / button >

    < / div >

    < div class = "modal-body" >

    <! - begin carousel - >

    < div id = "myGoodTimesGallery" class = "slide Carousel" data-interval = "false" >

    < div class = 'Carousel-interiors' >

    < div class = "active item" >

    " < img src = ' http://lorempixel.com/600/400/nature/1 "alt ="item1"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    description of slide 0 < p >. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/2 "alt ="item2"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > Slide 1 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/3 "alt ="item3"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 2 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/4 "alt ="item4"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 3 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/5 "alt ="item5"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 4 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/6 "alt ="item6"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 5 description. < /p >

    < / div >

    < / div >

    <!-end carrousel-Interior-> < / div >

    <!-Begin previous and next->

    < a class = "Carousel-control left" href = "#myGallery" role = "button" data-slide 'prev' = >

    < span class = "glyphicon glyphicon-chevron-left" > < / span > < /a >

    < a class = "carousel-control right" href = "#myGallery" role = "button" data-slide 'next' = >

    < span class = "glyphicon glyphicon-chevron-right" > < / span > < /a >

    <! - end myGoodTimesGallery - > < / div >

    <!-end modal-body--> < / div >

    < div class = 'modal-footer' >

    < div class = "pull-left" >

    < small > photographs of defiant kitchen team < / small >

    < / div >

    < button class = "close btn - sm" type = "button" data - reject 'modal' = > close < / button >

    <! - end modal-footer - > < / div >

    <!-end modal-content--> < / div >

    <!-end modal-dialoge--> < / div >

    <!-end my Modal moments--> < / div >

    <! - start modal window party - >

    < div class = "modal bland" id = "myPartyModal" tabindex = "-1" role = "dialogue" aria-labelledby = "myPartyModalLabel" aria-hidden = "true" >

    < div class = "modal-dialog" >

    < div class = "modal-content" >

    < div class = "modal-header" >

    < div class = "pull-left" > Party < / div >

    < button type = "button" class = 'close' data - reject = "modal" title = "close" >

    < span class = "glyphicon glyphicon - remove" > < / span > < / button >

    < / div >

    < div class = "modal-body" >

    <! - begin carousel - >

    < div id = "myPartyGallery" class = "slide Carousel" data-interval = "false" >

    < div class = 'Carousel-interiors' >

    < div class = "active item" >

    " < img src = ' http://lorempixel.com/600/400/nature/1 "alt ="item1"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    description of slide 0 < p >. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/2 "alt ="item2"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > Slide 1 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/3 "alt ="item3"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 2 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/4 "alt ="item4"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 3 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/5 "alt ="item5"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 4 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/6 "alt ="item6"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 5 description. < /p >

    < / div >

    < / div >

    <!-end carrousel-Interior-> < / div >

    <!-Begin previous and next->

    < a class = "Carousel-control left" href = "#myGallery" role = "button" data-slide 'prev' = >

    < span class = "glyphicon glyphicon-chevron-left" > < / span > < /a >

    < a class = "carousel-control right" href = "#myGallery" role = "button" data-slide 'next' = >

    < span class = "glyphicon glyphicon-chevron-right" > < / span > < /a >

    <! - end myPartyGallery - > < / div >

    <!-end modal-body--> < / div >

    < div class = 'modal-footer' >

    < div class = "pull-left" >

    < small > photographs of defiant kitchen team < / small >

    < / div >

    < button class = "close btn - sm" type = "button" data - reject 'modal' = > close < / button >

    <! - end modal-footer - > < / div >

    <!-end modal-content--> < / div >

    <!-end modal-dialoge--> < / div >

    <! - put an end to my party Modal - > < / div >

    <!-start judging the modal window->

    < div class = "modal bland" id = "myJudgingModal" tabindex = "-1" role = "dialogue" aria-labelledby = "myJudgingModalLabel" aria-hidden = "true" >

    < div class = "modal-dialog" >

    < div class = "modal-content" >

    < div class = "modal-header" >

    < div class = "pull-left" > judgment < / div >

    < button type = "button" class = 'close' data - reject = "modal" title = "close" >

    < span class = "glyphicon glyphicon - remove" > < / span > < / button >

    < / div >

    < div class = "modal-body" >

    <! - begin carousel - >

    < div id = "myJudingGallery" class = "slide Carousel" data-interval = "false" >

    < div class = 'Carousel-interiors' >

    < div class = "active item" >

    " < img src = ' http://lorempixel.com/600/400/nature/1 "alt ="item1"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    description of slide 0 < p >. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/2 "alt ="item2"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > Slide 1 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/3 "alt ="item3"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 2 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/4 "alt ="item4"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 3 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/5 "alt ="item5"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 4 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/6 "alt ="item6"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 5 description. < /p >

    < / div >

    < / div >

    <!-end carrousel-Interior-> < / div >

    <!-Begin previous and next->

    < a class = "Carousel-control left" href = "#myGallery" role = "button" data-slide 'prev' = >

    < span class = "glyphicon glyphicon-chevron-left" > < / span > < /a >

    < a class = "carousel-control right" href = "#myGallery" role = "button" data-slide 'next' = >

    < span class = "glyphicon glyphicon-chevron-right" > < / span > < /a >

    <! - end myJudgingGallery - > < / div >

    <!-end modal-body--> < / div >

    < div class = 'modal-footer' >

    < div class = "pull-left" >

    < small > photographs of defiant kitchen team < / small >

    < / div >

    < button class = "close btn - sm" type = "button" data - reject 'modal' = > close < / button >

    <! - end modal-footer - > < / div >

    <!-end modal-content--> < / div >

    <!-end modal-dialoge--> < / div >

    <!--end my Modal judgment--> < / div >

    <! - begin modal window of jello shots - >

    < div class = "modal bland" id = "myJelloShotModal" tabindex = "-1" role = "dialogue" aria-labelledby = "myJelloShotModalLabel" aria-hidden = "true" >

    < div class = "modal-dialog" >

    < div class = "modal-content" >

    < div class = "modal-header" >

    < div class = "pull-left" > Jello Shots < / div >

    < button type = "button" class = 'close' data - reject = "modal" title = "close" >

    < span class = "glyphicon glyphicon - remove" > < / span > < / button >

    < / div >

    < div class = "modal-body" >

    <! - begin carousel - >

    < div id = "myJelloShotsGallery" class = "slide Carousel" data-interval = "false" >

    < div class = 'Carousel-interiors' >

    < div class = "active item" >

    " < img src = ' http://lorempixel.com/600/400/nature/1 "alt ="item1"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    description of slide 0 < p >. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/2 "alt ="item2"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > Slide 1 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/3 "alt ="item3"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 2 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/4 "alt ="item4"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 3 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/5 "alt ="item5"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 4 description. < /p >

    < / div >

    < / div >

    < div class = "item" >

    " < img src = ' http://lorempixel.com/600/400/nature/6 "alt ="item6"> "

    < div class = "Carousel-caption" >

    < h3 > heading 3 < / h3 >

    < p > slide 5 description. < /p >

    < / div >

    < / div >

    <!-end carrousel-Interior-> < / div >

    <!-Begin previous and next->

    < a class = "Carousel-control left" href = "#myGallery" role = "button" data-slide 'prev' = >

    < span class = "glyphicon glyphicon-chevron-left" > < / span > < /a >

    < a class = "carousel-control right" href = "#myGallery" role = "button" data-slide 'next' = >

    < span class = "glyphicon glyphicon-chevron-right" > < / span > < /a >

    <! - end myJelloShotsGallery - > < / div >

    <!-end modal-body--> < / div >

    < div class = 'modal-footer' >

    < div class = "pull-left" >

    < small > photographs of defiant kitchen team < / small >

    < / div >

    < button class = "close btn - sm" type = "button" data - reject 'modal' = > close < / button >

    <! - end modal-footer - > < / div >

    <!-end modal-content--> < / div >

    <!-end modal-dialoge--> < / div >

    <! - put an end to my Modal jello shots - > < / div >

    <! - jQuery (necessary to Bootstrap JavaScript plugins) - >

    "< script src="js/jquery-1.11.3.min.js "> < / script >

    <! - include all the plugins compiled (see below), or include individual files to the need - >

    < script src = "js/bootstrap.js" > < / script >

    < / div > <! - END PAGE CONTAINER - >

    <! - footer from START - >

    < div class = "header-foot page-image" >

    <>footer copyright & copy; Renegades 1999 team kitchen. All rights reserved.

    < / footer >

    <! - END footer - >

    < / div >

    <! - END PAGE CONTAINER - >

    < / body >

    < / html >

    No additional required courses.  The hook is already there for you.

    Simple style your header modal as you like with CSS custom code in a separate style sheet to Bootstrap

    header .modal {make-size: 26px;}  {/ * adjust to suit * /}

    Nancy O.

  • Bootstrap carousel - remove some of the white area title + description

    I worked with the tutorial put together "Bootstrap Modal + Carousel Gallery" Nancy modal Bootstrap + Carousel Gallery - http://alt-web.com/ and all is well. I don't need the < div class = "Carousel-caption" > < heading h3 > < / 3 > < description of slide p > < /p > < / div > and have removed this div, but cannot find the style that is used to reduce the amount of white between image and gradient of gray on the right. I don't know where to look because I have reviewed most of the styles in the carousel. Any help would be appreciated.

    Here is my code:

    <! DOCTYPE html >

    < html lang = "en" >

    < head >

    < meta charset = "UTF-8" >

    < meta http-equiv = "X-UA-Compatible" content = "IE = edge" >

    < meta name = "viewport" content = "width = device-width, original scale = 1" >

    < title > Renegades cooking Team - Photos < /title >

    <!-"bootstrap"->

    "" < link href = "... / css/bootstrap.css" rel = "stylesheet" >

    < link href = "styles.css" rel = "stylesheet" type = "text/css" > "

    <! - HTML5 shim and Respond.js for IE8 take in charge of the HTML5 elements and questions from the media - >

    <!-WARNING: Respond.js does not work if you view the page via file://-->

    <!-[if lt IE 9] >

    " < script src =" https://OSS.MaxCDN.com/html5shiv/3.7.2/html5shiv.min.js "> < / script > .

    " < script src =" https://OSS.MaxCDN.com/respond/1.4.2/respond.min.js "> < / script > .

    <! [endif]-->

    < link rel = "icon" href = "images/renegadesfavicon.ico" type = "image/x-icon" / > "

    < / head >

    < body >

    <! - START START HEADER IMAGE - >

    < div class = "header-foot page-image" >

    "" < img class = "promoting the bootimage img" src = "... / images/header_image1200.jpg" width = "800" height = "367" alt = "" / >

    < / div >

    <! - END BOOT HEADER IMAGE - >

    <! - START PAGE CONTAINER - >

    < div class = "container-fluid" >

    <! - START NAVIGATION BAR - >

    < nav class = "navbar, navbar-default" >

    <! - START NAVIGATION header BAR - >

    < div class = "bar navigation-header" >

    < button type = "button" class = "toggle navigation bar has collapsed" data-toggle = 'collapse' data-target = "#defaultNavbar1" aria-expanded = "false" > < span class = "sr only" > toggle navigation </span > < span class = 'bar icons' > < / span > < span class = 'bar icons' > < / span > < span class = 'bar icons' > < / span > < / button >

    < / div >

    <! - END of NAVIGATION BAR header - >

    <! - START NAVIGATION BAR LINKS - >

    < div class = "navbar-collapse collapse" id = "defaultNavbar1" >

    < ul class = "navbar-nav nav" >

    < li > < a href = "#" > about us < /a > < /li >

    < li > < a href = "#" > < /a > < /li > team members

    < li > < a href = "#" > Subscriber packages < /a > < /li >

    < li > < a href = "#" > insurers < /a > < /li >

    < class li = "active" > < a href = "#" > Photos < span class = "sr only" > (ongoing) </span > < /a > < /li >

    < li > < a href = "#" > contact us < /a > < /li >

    < /ul >

    < / div >

    <! - END of NAVIGATION BAR LINKS - >

    < / nav >

    <!--END of NAVIGATION BAR-->

    <! - START STARTER IMAGES GALLERY - >

    < ul class = "list online Center" >

    "" < li > < a href = "#precookGallery" data-slide-to = '0' > < img src = "... / images/photo_page/923_454760494575151_9017795.jpg" alt = 'image Pre Cook' class = 'img-sticker"data-toggle"modal"= data-target ="#precookModal"> < /a > < /li >

    "" < li > < a href = "#boothGallery" data-slide-to = "1" > < img src = "... / images/photo_page/988_454767867907747_2659566.jpg" alt = "Image of the stand" class = "img-sticker" data-toggle "modal" = data-target = "#boothModal" > < /a > < /li >

    "" < li > < a href = "#goodtimesGallery" data-slide-to = "2" > < img src = "... / images/photo_page/229883_454771654574035_1526.jpg" alt = "Image of good times" class = "img-sticker" data-toggle "modal" = data-target = "#goodtimesModal" > < /a > < /li >

    "" < li > < a href = "#partyGallery" data-slide-to = "3" > < img src = "... / images/photo_page/185074_454775251240342_2000.jpg" alt = "Image of group" class = "img-sticker" data-toggle "modal" = data-target = "#partyModal" > < /a > < /li >

    "" < li > < a href = "#judgingGallery" data-slide-to = "4" > < img src = "... / images/photo_page/183798_454772544573946_1893.jpg" alt = "Image of judgment" class = "img-sticker" data-toggle "modal" = data-target = "#judgingModal" > < /a > < /li >

    "" < li > < a href = "#jelloshotGallery" data-slide-to = "5" > < img src = "... / images/photo_page/175081_454754501242417_9528.jpg" alt = "Image of Jello Shot" class = "img-sticker" data-toggle = "modal" data-target = "#jelloshotModal" > < /a > < /li >

    < /ul >

    <! - END STARTER IMAGES GALLERY - >

    <!-start before cooking modal window->

    < div class = "modal bland" id = "precookModal" tabindex = "-1" role = "dialogue" aria-labelledby = "myModalLabel" aria-hidden = "true" >

    < div class = "modal-dialog" >

    < div class = "modal-content" >

    < div class = "modal-header" >

    < div class = "pull-left" > Renegades Pre Cook < / div >

    < button type = "button" class = 'close' data - reject = "modal" title = "close" >

    < span class = "glyphicon glyphicon - remove" > < / span > < / button >

    < / div >

    < div class = "modal-body" >

    <! - CAROUSEL CODE GOES HERE - >

    <! - start pre Cook carousel - >

    < div id = "precookGallery" class = "slide Carousel" data-interval = "false" >

    < div class = 'Carousel-interiors' >

    < div class = "active item" >

    "" < img src = "... / images/photo_page/923_454760494575151_9017795.jpg" alt = "item1" >

    < / div >

    < div class = "item" >

    "" < img src = "... / images/photo_page/39293_454774234573777_90287.jpg" alt = "item2" >

    < / div >

    < div class = "item" >

    "" < img src = '... / images/photo_page/35477_454760817908452_20756.jpg ' alt = 'item3' >

    < / div >

    < div class = "item" >

    "" < img src = "... / images/photo_page/60247_454760617908472_12878.jpg" alt = "item4" >

    < / div >

    <!-end pre Cook carrousel-Interior-> < / div >

    <!-Begin previous and next->

    < a class = "Carousel-control left" href = "#precookGallery" role = "button" data-slide 'prev' = >

    < span class = "glyphicon glyphicon-chevron-left" > < / span > < /a >

    < a class = "carousel-control right" href = "#precookGallery" role = "button" data-slide 'next' = >

    < span class = "glyphicon glyphicon-chevron-right" > < / span > < /a >

    <! - end precookGallery - > < / div >

    <!-end pre Cook modal-body--> < / div >

    < div class = 'modal-footer' >

    < div class = "pull-left" >

    " < small > photographs of < a href =" http://lorempixel.com "target ="new"> Lorempixel.com < /a > < / small > "

    < / div >

    < button class = "close btn - sm" type = "button" data - reject 'modal' = > close < / button >

    <! - end pre Cook modal-footer - > < / div >

    <!-end pre Cook modal content--> < / div >

    <!-end pre Cook modal-dialoge--> < / div >

    <! - end precookModal - > < / div >

    <! - jQuery (necessary to Bootstrap JavaScript plugins) - >

    "< script src ="... / js/jquery-1.11.3.min.js "> < / script >"

    <! - include all the plugins compiled (see below), or include individual files to the need - >

    "< script src ="... / js/bootstrap.js "> < / script >"

    < / div > <! - END PAGE CONTAINER - >

    <! - footer from START - >

    < div class = "header-foot page-image" >

    <>footer copyright & copy; Renegades 1999 team kitchen. All rights reserved.

    < / footer >

    <! - END footer - >

    < / div >

    <! - END PAGE CONTAINER - >

    < / body >

    < / html >

    Your images are NOT large enough for modern screens.

    Try to use more large photos of latitude as 900 - 1600px wide... optimized for more low bandwidth possible.

  • NullPointerException fx: include

    Hi guys,.

    I'm going crazy with this error. I have worked on this for 2 days and I can't find a solution.

    When I do a fx: include in my fxml file, I got this error:


    Caused by: java.lang.NullPointerException
      at javafx.fxml.FXMLLoader.equals(FXMLLoader.java:1856)
      at javafx.fxml.FXMLLoader.isCyclic(FXMLLoader.java:1868)
      at javafx.fxml.FXMLLoader.access$2100(FXMLLoader.java:71)
      at javafx.fxml.FXMLLoader$IncludeElement.constructValue(FXMLLoader.java:941)
      at javafx.fxml.FXMLLoader$ValueElement.processStartElement(FXMLLoader.java:570)
      at javafx.fxml.FXMLLoader.processStartElement(FXMLLoader.java:2356)
      at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2172)
    

    Here's my root file:


    <fx:root type="javafx.scene.layout.AnchorPane" fx:id="scrollPane" id="scrollStocksList"
      xmlns:fx="http://javafx.com/fxml"
      fx:controller="net.StocksListRunningController">
       <fx:include fx:id="tableListStock"
      source="/fxml/stocksList.fxml" />
    </fx:root>
    

    And my include file:

    <Button layoutX="15.0" translateY="10" mnemonicParsing="false" text="Fermer"
            onAction="#close"/>
    

    If I remove my fx: include in my root file, all work fine.

    I can't debbug because the source is not provided.

    I try an alternative to my tag fx: include:

    <fx:include fx:id="tableListStock" charset="UTF-8" resources="/bundles/messages"
      source="/fxml/stocksList.fxml"  />
    

    And I get this error because the loader is null:

    Caused by: java.lang.NullPointerException
      at java.util.ResourceBundle.getBundle(ResourceBundle.java:1026)
      at javafx.fxml.FXMLLoader$IncludeElement.processAttribute(FXMLLoader.java:902)
      at javafx.fxml.FXMLLoader$Element.processStartElement(FXMLLoader.java:185)
      at javafx.fxml.FXMLLoader$ValueElement.processStartElement(FXMLLoader.java:568)
      at javafx.fxml.FXMLLoader.processStartElement(FXMLLoader.java:2356)
      at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2172)
    

    I don't understand why the loader is null.

    I use the latest version of java fx provided by jdk 7.0.51.

    What is bad in my include file (or other)?

    Thanks for your help.

    Hello!

    I had the same problem today and followed a location missing in my case FXMLLoader.

    It defines explicitly as fxmlLoader.setLocation (Main.class.getResource ("dialog.fxml")); before you make a call to fxmlLoader.load did the trick

    for me.

    I hope this helps.

    Best regards

    Christian

  • Display problem on screen HD +.

    I just upgraded to Flash Player on my laptop Lenovo Yoga 2 Pro +. This machine has a 3200 x 1800 pixel display, and I had to use the screen at 300% Magnifier to read the options window that appears at the beginning of the update installation. The screenshot below shows the problem. Since screenshots seen on screens in standard resolution the picture show about four times larger than the problem, I have included the text of the Web page for comparison. The text of the problem less measure.5 mm in height. It is about 1 or 2 pts in print.

    Flash Player installation screen.jpg

    I have been advised by Lenovo that this isn't a hardware problem, nor is it a driver problem. Unfair as it may seem, it's software to keep abreast. Santa is going to have a lot of these HD screens + bad boy in her purse. Adobe, you can help us.

    It's no good.  Thanks for the top of the head.

    I filed the bug following on your behalf:

    Bug #3909884 - Installation dialog box is Tiny on Lenovo Yoga 2 Pro HD screen + (3200 x 1800)

Maybe you are looking for

  • HP Pavilion DV6-C80EL HD 7690 M XT graphics card. Windows 7 64-bit operating system

    I have a PC HP Pavilion DV6-C80EL, with HD 7690 M XT graphics card. Windows 7 64-bit operating system B0B34EA TYPE S/N {removed privacy}I have try the card READER was updated to use windows 8HP told me to turn to AMD.AMD housewrap me to turn to HP.Wh

  • my display settings keep returning on 2 screens at startup to the top

    I have attached a second monitor to my Sony laptop.  The 2d display monitor used to iterate through a docking station Kensington DisplayLink.  For some reason, the docking station picks up is no longer display for the #2--si monitor I recently starte

  • Limit the use of Internet

    We have a network based on Windows server 2008 64 bit and cisco router, Isa server 2003 installed on windows server 2003.Is it any posibility in windows server to the user limit for a certain amount of use of the internet (Ex 100 mb) per day. Please

  • in app purchase a matter of beginner full App.

    Hello For the most part, I read the docs of payment service, but I'm still confused on how to get what I want. I already have a paid app in App World and I would like to make a limited free version. So my main question is why not use a link to the ap

  • PhotoSmart 5520 print at low resolution

    Just bought a new printer (Photosmart 5520) but when I print images from the proselect, they come out very low resolution. It is not the proselect as print images in high resolution to my old printer (Photosmart C4480) using exactly the same page, pu