need to accept hexadecimal characters for an edit field

Hi all

Please tell me how to get an editfield can accept hexadecimal characters and view an appropriate msg if there is another character except 0-9 and A - F?

Please answer soon.

Thank you!

Use an EditField in style FILTER_HEXADECIMAL

Tags: BlackBerry Developers

Similar Questions

  • Need to export video files for future editing

    Hello

    I have recently started a small media company and shot some footage of b-roll to sell to a customer. It's my first commercial job and even if I used my steadycam the film was a little chaotic sometimes. I don't want to give my first client shit pictures and so I edited the clips in Adobe Premiere Pro using stabilizer of curvature that has cleaned up the images how I want. Now, I need to export without compress images or dropping the res so that they have the good clean sequence to modify and use it however they want in the future.

    I was not able to find all the right answers on that yet. Everyone says to use the H.264 format, but that will compress the images which will then get compressed again once the company changes it. This is no bueno.

    I shot the pictures with my sony a6000 using the codec AVCHD using the 28 M (PS) 60 p setting.

    If anyone knows this but the best format and parameters to use to export the images so that it is always high resolution and compressed that would be very useful. I am new to Premiere Pro and even to try to understand that stuff.

    Thanks for your help

    To really make this clear... Qt format or the wrapper is ok, and the codecs are ok, the Player within Windows that is the question. And the danger. In addition to being a player really sucky, of course.

    So, using a mov or Qt 'wrapper' is not a problem at all, and no one in a Windows computer must have the player installed to work with mov envelope. In the OS by Apple computer, the player is still "maintained" and quite safe. And as this Qt any 'thing' is a baby Apple, still fairly steady on the Mac side.

    Most of the PC seems to be able to again encode mov format in PrPro using 2015.3 10.x versions and later. Some need to download the Qt 'basic' items to encode mov format, but can choose NOT to download & install the Player, so to be entirely safe.

    Make a Cineform in the mov wrapper should be usable as well in the PC and Mac, and it plays very well back.

    And of course, DNxHD/R is also very good.

    As to what flavor of DNxHD/R, I'll just copy my previous answer...

    "With DNxHD/R, probably use a HQ 'flavor' of the frame-size/rate appropriate, in the Group/MXF Op1a. .

    " The difference between HQ and the HQX in round-trip DNxHD codec settings is HQ is 8-bit, HQX is 10 bits, but I do not think that your media began as a 10-bit, so it may be too much at this point."

    Choose an appropriate-size/frame rate HQ or HQX according to your needs, as indicated.

    Neil

  • Good laptop cheap for the edition of light during the trip?

    Hello comrades,.

    I'm traveling to the Philippines and need a cheap laptop good (less than 800) for my travels.

    I know that this laptop at low price and Assembly is basically an oxymoron, but let's look at what I do here...

    Because I will go I won't have access to my powerful desktop at home what I do most of my editing. However, most of the edits I do during my travels will be video short 3 to 10 minutes for YouTube and my Blog. I have a project on a large scale, I'm working on, but I won't edit and or made until I'm back home.

    Basically, I just need something that is right for the edition of light and can also fit my budget, as the material below I have already cost an arm and a leg.

    It must also be adapted to travel. I intend to travel anywhere in South East Asia with it. This area is tropical and very sunny, when it does not rain... I usually don't like masts screens but it may be better than a brilliant in such an area? I'm not sure.

    I available to capture my images for most to 1080 p at different frames per second using the following devices.

    1 x Sony HDR-PJ260V

    1 x GoPro Hero3 + money

    For Audio I use...

    1 x H4N field recorder

    1 x H1 field recorder

    2 x AT803 Lavs

    1 x OST-801 Lav

    Since I want to get as many film and audio with amble space has a need of mine. I'll be frequently or at least when its an option transfer video to external hard drives to back up to the sending of the return. This way the images for my more great project waiting beside my desk when I return home.

    Other uses for the laptop include games of light (point and click adventure games) nothing too heavy graphics. I think the game more heavy that I played on my old laptop was SWTOR and he knocked along. Internet connection is terrible in Southeast Asia, so I don't think I'll play this one.

    Except that it will be used for Facebook, to write my book and speak with family and friends on Skype.

    The size? I need recommendations here? Yet once again, keep in mind that I will be backpacking around Southeast Asia.

    Will examine the computers used, if I have to, but prefer new and under warranty.

    Use Adobe products for editing. Thank you!

    Cooling could be a problem too, the philippines are very hot!

    I see no difference except the newegg is cheaper.

  • Text of tip/guest/space reserved on a digital editing field / password

    Hi all

    I am introducing the rapids/tips for the edit fields text in my application. I capture the key in the api keyChar() and therefore

    • show the cue text if the field is empty
    • hide the cue already displayed text when the first character is entered

    According to me, one way to do this is to paint your index directly on the EditField.  This way, the EditField never sees.  And you can paint it in a light color to indicate clearly what is not actually entered.

    Here is an example of code, note that I cut/pasted it from a working application, but changed a few things that I think are not - but it could have messed up it completely...

    private BasicEditField _searchField = new BasicEditField ("", "") {}
    String emptyString = "search by input characters;
    Protected Sub paintBackground (Graphics g) {}
    g.setBackgroundColor (0x00FFFFFF);
    g.Clear ();
    }
    protected void paint (Graphics g) {}
    oldColor int = g.getColor ();
    try {}
    g.setColor (0x00000000);
    Test string = super.getText ();
    If (test == null | test.length ())< 1="" )="">
    g.setColor (0 x 00808080);
    g.drawText (emptyString, 0, 0);
    }
    Super.Paint (g);
    } {Finally
    g.setColor (oldColor);
    }
    }
    };

  • fieldchangelistener shot by mistake on Edit fields

    Hi people,

    I use the RIM JDE 4.2.1 on windows and the 8800 Simulator.  I install a fieldchangelistener on an edit field to detect the moment where I should be offering save a screen.  But the listener is shot before any changes to the screen are made... This is the expected behavior?  Here is an example of code to the constructor of the screen:

    private static class AllFieldChangeListener implements FieldChangeListener {
        public void fieldChanged(Field field, int context) {
            isDirty = true;
        }
    }
    
    nameField.setText(options.names[idx]);
    
    FieldChangeListener myListener = new AllFieldChangeListener();
    nameField.setChangeListener(myListener);
    
    add(nameField);
    

    I look in the debugger, the fieldchangelistener shot (watch where isDirty is true) at the time where this form is drawn: the referenced field is above edit field (in fact I have several fields on the screen and for each/all triggers are being fired once for each edit field).  I've done this kind of thing before for the checkbox fields set up by program the enabled or disabled state of the button and the listener does not until such time as the user interacts with the screen.

    I am puzzled, someone has an idea what I am doing wrong?

    Thanks for any help.

    -Scott

    Field changes listener will be called even if you set the text programmatically. To ignore the changes programattiic check that the context is not equal to FieldChangeListener.PROGRAMMATIC

    private static class AllFieldChangeListener implements FieldChangeListener {
        public void fieldChanged(Field field, int context) {
               if(field == myeditField && context != FieldChangeListener.PROGRAMMATIC) {
            isDirty = true;
               }
        }
    }
    

    BTW why you set isDirty using this method? You can simply use nameField.isDirty () to check if the field is dirty when you want.

  • How to accept only 4 or less than four hexadecimal characters in the control chain

    Hello

    I want to accept only up to 4 hexadecimal characters in a control of the chain. I don't want to use the property "hex display.

    How is that possible? I have the string control key down? event event, I tried with the regex [0 - 9a - fA - F] {4}, but then I have to accept, left, right, delete, BACKSPACE, house keys as well.

    I agree with Dennis that you seem to be making life difficult for yourself.  However, did you ask the equivalent (as I understand) "How can I allow the user to type '1', '2', 'Ctrl-A', 'B',"Ctrl-C","D"and get this recognized as the string"12BD".  If you really want to do, here's a way (I was lazy and left the response as an array of strings of 1 4 characters).  I use PlatMods to exclude have any 'change' other key moving downwards, convert the digital Char to a string, then count the letters of acceptable Hex and conditionally, add them to the results matrix, stopping when I have 4 characters.

    Bob Schor

  • The network password needs to be 40bits or 104bits depending on your network configuration. This can be entered as 5 or 13 ascii characters or 10 or 26 hexadecimal characters

    Hello

    My operating system is window XP and my D-link wifi I am connect the wifi type password

    I get the error message...

    (The network password needs to be 40bits or 104bits depending on your network configuration. This can be entered as 5 or 13 ascii characters or 10 or 26 hexadecimal characters)

    Another wifi connect operating system works very well for example... Vista or window 7 only problem window XP

    Shafique.Cheena

    Hello

    Glad to know that the question that you were before face is now resolved. For the question you're faing while changing the name of the computer to the domain, I would say that you check out the link and follow the steps.

    How to change a computer name, join a domain, and add a computer description in Windows XP or Windows Server 2003

    http://support.Microsoft.com/kb/295017

    If the problem persists, post the question in the Technet forum that would be better suited. Check out the link.

    http://social.technet.Microsoft.com/forums/en-us/w7itpronetworking/threads

  • HP Desktop for video editing - need advice when ordering components

    I'm trying to looking for a new office and need recommendations for office specifications based on how I use the laptop.  I'm looking for recommendations for processor, RAM, video card, etc...

    I produce videos and mainly use the following programs: Adobe Photoshop, Adobe Premiere Pro, Adobe Encore DVD.  I also use other software such as AutoFX PGE7.0 of photo editing.

    I currently have a HP Pavilion which is about 5 years old.  This office has the following specifications:

    HP Pavilion PU131AV / a1050y, Intel Pentium 4 CPU 3.20 GHz, 2 GB RAM, Windows XP MCE, SP3 32-bit, Nvidia GeForce 6600

    If you have any input as to what I need in a computer desktop for my specific purpose, please let me know.

    Thank you very much

    Angela

    ``````````````````````````````````````````
    old computer: HP Pavilion PU131AV / a1050y, Intel Pentium 4 CPU 3.20 GHz, 2 GB RAM, Windows XP MCE, SP3 32-bit, Nvidia GeForce 6600
    new computer: HPE-180 t, Windows 7 Pro (64 bit), Nvidia GeForce GT 220, Intel Core i7 - 930 quad-core CPU @ 2.80 GHz, 8 GB of RAM

    For a desktop, try the HPE-180 t with 12 GB and the video card plus available (GTX 260) and Windows 7 64-bit.  Your requests and see if the current releases you will benefit from the 64-bit operating systems. They could run with 64 bit but they will take advantage of 64-bit memory address? You may have need of upgrades of the application depending on what version you have installed.

    If you are doing video work for a profession, then the ball game is different.

    Be sure to buy a good UPS.

  • Hey guys, ive tryied buy photoshop like a hundret times, ive typed in my information payment and everything I need, went on the button pay on the accept button but nothing happened, I need help pls passing sry for my language

    Hey guys, ive tryied buy photoshop like a hundret times, ive typed in my information payment and everything I need, went on the button pay on the accept button but nothing happened, I need help pls passing sry for my language

    Contact adobe during the time pst support by clicking here and, when available, click on "still need help," http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • I need a serial number to download the edition of Acrobat Pro DC schoolgirl and her teacher for MAC (download).  All I have is a product key.  I need the serial number to activate.  How can I get a serial number?  I bought the product download on amazon.c

    I need a serial number to download the edition of Acrobat Pro DC schoolgirl and her teacher for MAC (download).  All I have is a product key.  I need the serial number to activate.  How can I get a serial number?  I bought the product download on amazon.com

    Hello??

    Redemption Code http://helpx.adobe.com/x-productkb/global/redemption-code-help.html

    - and https://forums.adobe.com/thread/1572504

  • This pretty good computer for my editing needs?

    I will get a new computer for video editing.

    I make recordings of gameplay for various games on the PS4.

    My other computer is suitable for audio production, mixing and mastering.

    This one will be for recording (using the software and device of capture of game) and editing the videos.

    I do not use many effects, mainly color corrections and some time remapping using Twixtor or inventory features.

    I use Premiere Pro CS6

    I record using the Elgato game Capture HD60 (H.264 encoding)

    This unit connects to the PS4 for passthrough your computer, which includes software that control the device is installed on the computer and saves the gameplay.

    Care and information: bottom of the page from bestbuy

    http://www.BestBuy.com/site/Elgato-game-capture-HD-60/7634008.p?ID=1219285525278

    Also, the current site: https://www.Elgato.com/en/gaming/game-capture-HD60

    Here is the computer:

    http://www.Amazon.com/Dell-X8700-3130BLK-XPS-desktop/DP/B00K0HMX3A

    I would also get 4 years protection plan.

    • 3.6 GHz Intel Core i7-4790 Haswell CPU
    • 16GB 1600 MHz DDR3 RAM
    • 7200 RPM 2 TB hard drive
    • NVIDIA GeForce GTX 745 4GB GeForce GTX 745 (OEM) | Features | GeForce
    • Bluetooth 4.0 + 802.11b/g/n Wi - Fi
    • DVD SuperMulti burner
    • 6 x USB 3.0 / 4 x USB 2.0 Ports
    • Audio integrated 7.1
    • Windows 8.1 (64-bit)

    More plug computer in depth:

    http://www.bhphotovideo.com/c/product/1059535-reg/dell_x8700_3130blk_xps_8700_7_i7_4790_16 gb_2tb_windows8_164_black.html

    Also, these slots plug / available do not allow for the addition of a Solid State Drive? Can't find any information on places available...

    Here's the deal: the GTX 745 will be the factor limiting in this PC, assuming that you add an SSD. However, without knowing the case where the PC is assembled in, some OEM cases have only one internal drive Bay which limits the whole system to just one OS disc and no disc storage internal. That severely limits scalability.

    And the GTX 745 is much slower than the GTX 750 for two reasons:

    (1) it is an OEM only version paralyzed from the GTX 750 with only 384 CUDA cores (against 512 CUDA cores in the GTX 750);

    (2) it only uses DDR3 memory instead of the 750 GTX GDDR5 memory, and so the flow of memory is a crummy 28.8 GB/sec instead of 80 GB/sec of the 750 GTX. And I recently tested a GT 730 with GDDR5 memory to give you an idea of ugly about how the GTX 745 will occur.

  • The upgrade of my desktop pc from HP a1540n for photo editing

    Hi all

    I am currently running Win XP SP2 on desktop HP a1540n; System specs are here:

    http://support.HP.com/us-en/document/c00679533

    After you have maxed out my RAM (4x1Go), the system has worked well for me for about 4 years.  However, I'll buy a new 36 MP digital camera and need to upgrade the operating system to a minimum (for Vista or Windows 7) to take over some of s/w that I use for photo editing. At the same time, I am considering a few hardware upgrades as well to improve the speed of the system (I work with large files).

    I'm looking for options in order to make the system work and, if $ allow to improve performance.  I would like some advice on whether if it is worth upgrading the hardware or just bite the bullet and withdraw from the newer system for somethng.

    Option 1: OS upgrade only, pref for Win 7; cost: ~ $140

    Option 2: upgrade MB (with processor), optionally add a video card. upgrade cost:?

    Option 3: new system; cost: ~ $1000.

    Option 2 makes any sense?  So I hate to waste the old h/w, I'm not sure whether this option is profitable.  Can the remaining material (power supply, etc.) support and are working properly with the motherboard more recent or other improvements will be necessary as well (in addition to the OS)?  I will be attaching multiple drives (some new, some existing); a new MB give me USB3 ability, or is it a separate addon?

    All advice/recommendations would be appreciated...

    -Rob

    Rob, welcome to the forum.

    This is one of the most difficult situations to address.  The upgrade can be a good option if the original components are even more recent.  However, a computer that is 6 years old becomes a dinosaur.  As a result, purchase new may be a much better option.  If you can afford the $1,000, I think you would advance money.

    If your problem is solved, please click "accept as a Solution.

  • "Windows 7 Home Premium SP1 64-bit, an error message indicates" the upgrade key you have entered is for an edition of windows that does not work with Windows Anytime Upgrade.

    Tried using Windows Anytime Upgrade. Bought at Staples have product key is entered correctly. "Following instructions, accepted USA get error message says ' the upgrade key you have entered is for an edition of windows that does not work with Windows Anytime Upgrade. Enter a different upgrade key. »

    Which edition of Windows 7 is installed on the machine?

    Which edition of Windows 7 you are trying to do an Express upgrade to?

    Please note that the Express upgrade does not support OEM, MSDN-Academic, Volume (the student faculty licenses) license. If you are in possession of all these brackets, you will need to save and do a custom clean install. If you want to do it, please backup your Windows 7 Home Premium or according to edition currently installed. Some licenses for Windows distributed to tertiary level students are not perpetual, which means that you cannot continue to use the software after a course or graduating.

    ---------------------

    Windows 7 Anytime Upgrade fails:

    If your getting the following: error: Windows Anytime Upgrade failed
    This problem may occur if Windows 7 SP1 was downloaded by Windows Update, but has not yet been installed.
    See: http://support.microsoft.com/kb/2660811

    = Other reasons and possible corrections.

    Windows Anytime Upgrade fails with the error:
    "every time that the upgrade has failed. Go online to solve the problem.
    http://support.Microsoft.com/kb/2658652

    If Anytime Upgrade still does not work:

    Shut down and restart your computer.

    Make sure that the Windows updates have been installed.

    Download the hotfix that contains a tool called CheckSUR, this tool will look at the package and the maintenance of records and difficulty any data corrupted, the tool is listed under kb947821 he can be found at the following link http://support.microsoft.com/?kbid=947821

    If Anytime Upgrade still does not work, turn off the user account control:

    1. go in user accounts in Control Panel

    2 change user account control settings

    3. pull the slider to the level as low as possible

    4. restart the PC

    5. pass by the "Anytime Upgrade" as usual

    Try the following:

    1 disable any security software before attempting to upgrade

    2. make sure that your computer is updated (devices and applications)

    3. disconnect all external devices before installing.

    4. check your hard disk for errors:

    Click Start

    Type: CMD, according to the results, right-click CMD

    Click on "Run as Administrator"

    At the command prompt, type: chkdsk /f /r

    When you restart your system, your computer will be scanned for errors and will try to correct them.

    1. click on start, type msconfig in the search box and press ENTER.

    User account control permission

    If you are prompted for an administrator password or a confirmation, type the password, or click on continue.

    2. in the general tab, click Selective startup.

    3. under Selective startup, clear the check box load startup items.

    4. click on the Services tab, select the hide all Microsoft Services check box, and then click Disable all.

    5. click on OK.

    6. When you are prompted, click on restart.

    7. after the computer starts, check if the problem is resolved.

    Also run the Windows 7 Upgrade Advisor:

    http://www.Microsoft.com/Windows/Windows-7/Upgrade-Advisor.aspx

    Who should I contact if I have problems installing and / or activation of my product key card?

    Please contact to the: www.windows7.com/getkeysupport.

    If all above fails them, install Windows 7 Service Pack 1, and then try the Express Upgrade:

    Learn how to install Windows 7 Service Pack 1 (SP1)
    http://Windows.Microsoft.com/en-us/Windows7/learn-how-to-install-Windows-7-Service-Pack-1-SP1

    If your key is not valid and you will need to change the keys, you may need to Open regedit and remove first the ProductKey value in the following registry key:
     
    HKCU\Software\Microsoft\Windows\CurrentVersion\WindowsAnytimeUpgrade

  • Do I need to buy the adapter for Equium A100-027 wireless?

    Hi, don't want to seem like a fool but, can anyone tell me if I need to buy an adapter for my Equium A100-027 wireless? Not very good with the technical aspects, I'm afraid and do not want to buy anything I don't need! Thank you

    Hi mate, no you do not, its construction, his side had the cd player is close to the two usb ports...

    Post edited by: GhostUK

  • The new iMac 4 k is ready for video editing?

    I want to buy the new iMac 21.5 ' 4 K for video editing and Im not sure if its Integrated GPU or the rest of the hardware can handle the work. I usually work with 1080 p video, but I've read that its GPU is quite limited. Please I need help.

    You will have no problem using the iMac of the retina for editing 1080 p video. The 27-inch model includes a GPU dedicated with its own memory, however. You decide: http://www.apple.com/imac/specs/

Maybe you are looking for

  • V5.8 DVD player: error-70012

    Dear Apple community, I use a MacBook Pro 13 "(mi-2010) and replaced the Superdrive (SD) by a 750 GB HD (using the iFixit statement)." At the time I build on the 750 GB HD, it had Mac OS X 10.11.1. I noticed recently that the DVD player (v.5.8) not s

  • How can I give my balance uk store apple id?

    Hello... I buy my iphone 6 more in the United Kingdom. and I using the card to recharge my id. now... I just got back from the Malaysia my country... my apple ID always get the balance £0.51... This brand of problem I can't change the country / regio

  • C309 Photosmart Premium: C309 didn't scan to computer

    I can't get my C309 to my laptop.  From the analysis of the computer offers me an option of pdf.  I recently bought a new laptop (a Dell) having experienced the same problem with my previous laptop (a Toshiba).  Initially the computer analysis has wo

  • I'm suddenly demand a password on my Vista PC.

    I'm suddenly demand a password on my Vista PC. I have NOT set a password. -What happened? I'm unable to open a session and I can't boot from my CDROM (I tried to change the BIOS F12, etc.) to use 3rd party software. What I can do and why did this hap

  • my lap top is dead how to transfer all the files to my new laptop

    my hard drive of the laptop should be changed, it doesn't have a value for money bought a new computer laptop. How can transfer all files from the old to the new. Thank you.