Trying to capture models niHSDIO during execution of a script, no reference vector

I am running a script and generating a number of sets of model, the last set of samples is data capture, I need access to these captured data, but its location was moved to an unknown location in the model memory.  Must identify a way to find if I know the number of sequences of each model of the value and the number of models generated by the script command "wait."  The PXI-6552 module is only 12000 vectors, which is not in correlation with the amount of bosses I've generated (or) + wait.

e williams

Please post on the Forums of NOR.  It seems that you're trying to compare materials with a Script. Is this correct? You are doing compare material on all the generated waveforms, or just the last waveform? If you could post your script you use he would help me determine what might happen. Could you give me some details of your program and how you go about programming your 6552. Thank you.

Tags: NI Software

Similar Questions

  • ORA-01017 encountered during execution of shell scripts

    Hello

    During execution of the backup script for one of my databases, the script contains a login section which breaks down as shown below

    Section login script:

    sqlplus / < < END > /tmp/$PROGRAM.tmp


    Error generatedf in the log file:

    SQL * more: Production release 11.2.0.3.0 on sea Apr 10 11:32:06 2013

    Copyright (c) 1982, 2011, Oracle. All rights reserved.

    ERROR:
    ORA-01017: name of user and password invalid. connection refused


    Two points to note:
    1) there are two other databases on the same server and they have no problem
    (2) I am able to connect to this database as ' / '.
    (3) I am able to connect to the database as sysdba from another server
    (4) the script runs successfully when I change like: sqlplus / as sysdba < < END > /tmp/$PROGRAM.tmp

    Hi, for the use of this you must create a user authenticated externally then it will work... Check other databases where you are using the sqlplus / connection for your refrence command

  • capture dynamic values during execution

    Hello

    He is delighted.

    I work with Oracle application testing suite. I was able to create functional scripts. My request, which I have been job genereates dynamic ID. I want to use these dynamic IDS later in my application.so I want to capture these ID in a variable. Can someone help me please how to store the ID in a variable.

    Thanks in advance...
  • error - bunch of comments script manager - vRO 6 during execution of the script

    Hello

    Lately, I've been making a mistake during a running script in a guest. Linux as well as Windows servers is affected.

    I use the package to change the password root\admin as a day 2 after commissioning a system with vRA. The script simply runs 'passwd root' or 'net user administrator [paqssword]' on the new server.

    The error is on Linux:

    "A general error has occurred: the url generation failure (Workflow: copy of the file of comments to the vCO / Scriptable task (item1) #9).

    the vCenter report to event log "comments authentication operation failed to create the temporary directory for operating on a virtual machine [vmname] '.

    The nested workflow that throws the error is 'Copy of the file of comments to the vCO' workflow, the line of code that indicates the error is:

    var ftInfo = fileManager.initiateFileTransferFromGuest (vm, guestAuth, guestFilePath);

    The value of guestFilePath is imported from the attribute scriptOutputFile = / tmp/vmware-root/vmware160/vco_vmware185

    Under Windows:

    A general error occurred: could not generate URLS (workflow: copy file of vCO for host / Scriptable task (item1) #11)

    This time, the "file copy of vCO in the comments.

    var uri = fileManager.initiateFileTransferToGuest (vm, guestAuth, guestFilePath, attr, srcFile.length, overwrite);

    The value of guestFilePath comes from cmdAnsiGuestPath = C:\Users\[username]\AppData\Local\Temp\vmware20\cmdANSI.exe

    Is could someone please help me solve this?

    After checking the js - io - rights.conf still (permissions properly), under the chmod + x o vRO temp folder and restart the device, the workflow now works on all hosts.

    Why he has managed to work on the only two hosts in the past, I did not find.

  • VSphere Management Assistant freezes during execution of scripts Perl SDK

    In our environment, we have a nagios server which connects to our Executive Assistant to check the health of our host ESX 4.1 vSphere. Scripts are pretty basic and just run over SSH using cryptographic keys every 10 minutes. The problem is that after a day or so to work properly the VMA one freezes and unresponsive. I am at a loss here as to what is causing this problem that I made sure to always disconnect the server vSphere when scripts are finished. Anyone who has met by this kind of problem before?

    Here is one of my scripts for reference:

    check_cpu:

    #!/usr/bin/perl -w
     
    use strict;
    use warnings;
    use FindBin;
    use lib "$FindBin::Bin/../";
    use VMware::VIRuntime;
    use VMware::VmaTargetLib;
     
    my $host = $ARGV[0];
    my $warn = $ARGV[1];
    my $crit = $ARGV[2];
     
    if ( $host eq '' || $warn eq '' || $crit eq '' )
    {
            print "Usage:  check_cpu <SHORT HOSTNAME> <WARNING LEVEL> <CRITICAL LEVEL>\n";
            exit (0);
    }
     
    my $target;
     
    $target = VmaTargetLib::query_target("vcenterserver.***.****.****");
    $target->login();
     
    my $entity_views;
     
    &main();
     
    sub main
    {
            &get_views();
            &get_cpu();
    }
     
    sub logout
    {
            $target->logout();
    }
     
    sub get_views
    {
            $entity_views = Vim::find_entity_views(
                                                    view_type => 'HostSystem',
                                                    filter => { 'summary.config.name' => "$host.***.****.***" },
                                                    );
            if ( @{$entity_views} == 0 )
            {
                    print "Error: Host does not exist! Exit 2\n";
                    &logout();
                    exit (2);
            }
    }
     
    sub get_cpu
    {
            for my $entity (@{$entity_views})
            {
                    my $status = $entity->runtime->standbyMode;
     
                    if ( $status eq 'none' )
                    {
                            my $totalMhz = $entity->summary->hardware->cpuMhz;
                            my $cpuCores = $entity->summary->hardware->numCpuThreads;
                            my $cpuUsage = $entity->summary->quickStats->overallCpuUsage;
     
                            my $cpuPerc = ($cpuUsage/($totalMhz*$cpuCores))*100;
     
                            if ( $cpuPerc < $warn )
                            {
                                    print "CPU at $cpuPerc\%. Exit 0.\n";
                                    &logout();
                                    exit (0);
                            }
                            elsif ( $cpuPerc < $crit )
                            {
                                    print "Warning! CPU at $cpuPerc\%. Exit 1\n";
                                    &logout();
                                    exit (1);
                            }
                            else
                            {
                                    print "Critical! CPU at $cpuPerc\%. Exit 2\n";
                                    &logout();
                                    exit (2);
                            }
                    }
                    else
                    {
                            print "\tHost $host is in standby mode. Exit 0\n";
                            &logout();
                            exit(0);
                    }
                    print "\n";
            }
    }
    

    Thank you

    You monitor the execution of your hosts vMA during execution of the script? By default, it is configured with only 1vCPU and 512 MB of memory, based on the query and the size of your environment it may be running out of resources that I saw myself, and generally I'll upgrade the memory to 1 GB, if not slightly more depending on what he does. It's probably a good idea to take a look at the performance of your vSphere environment and see what it consumes and if the system is swapping or pegging on CPU.

  • Problem with pl/sql procedure, trying to get the value of the user during execution

    Hello

    Using oracle 11.2.0.3

    Can run sql that gets the value of the user during the fine workmanship and also via an anonymous block.

    uses of SQL & Enter_Product_Number

    anonymous block using: Enter_Product_number.

    However, get problems when trying to create a pl/sql procedure, use one of the above

    relevant below tried code part & and: buit works do not error, try bad bind variable if used: and ora-600 if try use &.

    How can we have a procedure from pl/sql that can call and receives a value of user during execution?

    Only way around what I can think of is to pass parameters to the procedure

    Thank you

    create or replace procedure ins_into_issues is

    v_nd_rec_cnt number (10);

    v_normal_rec_cnt number (10);

    Start

    Select count (*)

    in v_nd_rec_cnt

    refmast.issues I have

    where i.iss_product_num = & old_nd_product_number;

    Select count (*)

    in v_normal_rec_cnt

    refmast.issues I have

    where i.iss_product_num = & normal_product_number;

    -code below commented above works.

    end;

    Hello

    what something like this:

    create or replace procedure INS_INTO_ISSUES ( in_normal number, in_old number )  is
      v_nd_rec_cnt     number(10);
      v_normal_rec_cnt number(10);
    begin
        select count(*)
          into v_nd_rec_cnt
         from refmast.issues i
         where i.iss_product_num = in_old;
      --
        select count(*)
          into v_normal_rec_cnt
          from refmast.issues i
         where i.iss_product_num = in_normal;
    end;
    

    concerning

    Kay

  • Edit/delete/add scene coordinates in the table during execution

    Hello world

    I managed to build table allows you to store and record the coordinates of the stage and remind to control steps. However, I need change/remove/add details of scene during execution. I also need to allow the user to directly edit the coordinate from the scene of the array. Wondering what someone knows what is the best way to do it? Or is it better to use the matrix or Cluster? Thanks in advance.

    Best regards

    Han Yen

    Han Yen wrote:

    Thanks much altenbach for all the advice. I tried to do a table 2D control. I've been playing with table in the control. However, I still can't find out how can I detect that I change the data in the table 2D with the more recent issue during execution? How can I then update my current table with the latest data?

    Well, the 2D table is updated immediately and you do not all the other tables.

    Do you mean that you want to update XAbs, etc. where the just changed line is already selected?

    In any case, here's a simple project, perhaps it will give you some ideas. I would recommend using also the tables for XYZPos, entrances etc. and the XYZabs. This simplifies the code because you reduce the number of terminals and table operations.

    Let me know if something is not clear to you.

  • Disable the extended FIFO FPGA target during execution

    Hello

    I use a FIFO extended target in my FPGA to constantly calculate the derivative of a measured value (dB/dt). Thus the FIFO stores all values during time dt. This means dt determines the number of items in the FIFO and dB is determined by the actual value less the oldest value in the FIFO. It works well when I initialize with the code in figure InitFIFO.

    But the FIFO of compensation is not possible (see figure clearFIFO). In the while loop if "reset dB" is false, as the new value of B is written on the FIFO, then the oldest value is read from, for the number of items in the FIFO remain constant. To change dt during execution, I need to clear the FIFO and initialize it with a new length (number of items). I tried the next loop, but it does not work. The FIFO does not initilized with the elements. The length is zero and the loop counter for (#deltaB Length2) is 0.

    What I am doing wrong? Is there a better way to erase a FIFO during execution in the FPGA? I'm now stuck for 2 days with this problem and looking forward to any idea or suggestion.

    Thank you very much. Best regards

    Andy

    Hej,

    Thank you for your response. You were correct, that deltab FIFO length was 0 because the defalt value was zero. The problem is that in my host vi on the RT system I put DeltaB FIFO length in a loop of high priority and as you can see when I restart the FPGA, DeltaB FIFO length has a valid value (the code in figure 1 works well with a local variable of DeltaB FIFO length in the FPGA). But the variable to set the variable "reset dB" is under the control of the loop of low priority of the host vi. And there, I had an entry DeltaB FIFO length unwired.

    So, I learned that a control FPGA read/write unwired sends a '0' or resets the variable to its default value in the FPGA. I assumed that nothing is transferred and the last variable is retained if you let a control read/write unwired. Now, I learned of this stupid error!

    Thanks a lot again!

    Andy

  • How to change the frequency of sampling DAQmx during execution?

    Hello guys. I'm using LabVIEW in the measures of the frequency response function. My application requires the sampling rate to change according to the frequency of the signal during execution.

    I tried to do it with a "structure of the event" and it works well when I change the rate manually via the front control but it backs do not work when I set up the sampling frequency to vary automatically (just a frequency sweep). Photos below:

    Why not the structure of the event feels the change in the value of "rate"?

    Thanks in advance for your help.

    Lucas

    Hello

    In "automatic mode" to change the sampling rate, the calculated rate is written in the local variable (as illustrated in the code).  Structure of the event does not change value in the local variable as an event.

    In order to make the structure of the event to recognize the change in value of an indicator such as event: write the new value to the property "Value (Sgnl)" corrosponding node to rate indicator (see figure below).  This will make the structure of the event accept the value change in the indicator as event.

    Note: Use architectures such as producers and consumers for such applications, which makes the application readable and expandable.

    See rear queries if any.

  • change the frequency of the signal during execution

    Hi, I'm working on a VI to calculate excess of signal I think VI seems to be good (not sure) but now my problem is

    change the frequency during execution, which I am not able to do only when I stop and run the vi frequency changes... pls

    someone help me I tried to put in an event... but no use... maybe iam missing something pls help me...

    I noticed that you have some time a loop around the entire block diagram - I'm not entirely sure why that is.  The way you have your VI wrote that the two inner loops will never come out unless there is an error-'stop' buttons are hidden.  Thus, the outer loop is not do anything for you.

    Once you take it, it is easy to see why you cannot change frequency.  It is defined once, outside of the loops and so never gets checked again.  The best way to resolve this, in your case, is to use registers with shift on the upper loop and check if the value of the frequency has changed since the last iteration.  If so, generate a new waveform and feed DAQmx writing instead.

    See the version annexed to your main VI for what I mean.  (I also replaced the controls to stop with one that is visible and which will stop the two loops without your duty to hit the button abandon.) I'm also an error on the DAQmx read in the loop at the bottom, but I'm sure it will work fine on your equipment.

    See you soon,.

    Michael

  • During execution of the backup and maintenance on one of my computers, I noticed a folder and the file that I can't identify me...

    Original title: identity of unknown folder

    During execution of the backup and maintenance on one of my computers (Windows xp home, sp3), I noticed a folder and the file that I can't identify.  The name of the folder is cc68f6b7a7ca948eefb018f001 and the name of the update.exe file.  The properties of the file that it is a Windows Service Pack installation.  I tried Googling the name of the folder, but found nothing.

    Can you tell me with regard to this issue, and what, if anything, I have to do?

    Thank you.

    When some programs (including Windows) installs things, it can create a temporary folder composed of 20-30 random letters and numbers or random numbers and letters in the root of the drive of the volume with more free space.

    This explains why the records are sometimes on your C drive or any other drive - the most space?

    For example, you can see a similar to or called folder:

    D:\9470bb12e8a4f3447657236478e41c5

    There may be other folders and files in this main temporary folder such as amd64 and i386 platforms.

    They should normally be deleted when the installation is complete, but sometimes they are not - especially if the installation fails.  They are harmless but annoying.  You can think something is wrong when there are no or fear, that the files are really necessary.  To avoid confusion, you can delete the temporary files.

    If your installation has failed or the installation does not remove the folder to the random name when it finishes running again installation will be another folder at the random name.

    You may be able to identify installation (out of curiosity) by looking at some of the contents of the folder and decide if this installation was not serious, just remove the files/folders.  If the installation does not work for some reason, run again just installation will create a new temporary folder to the random name so the old temporary folder is really useless.

    Records are sometimes tough to remove.  Even if you are an administrator on the system, you might get a "sharing violation", "access denied", "used" or type similar message when you try to delete temporary folders.  Facilities sometimes use different permissions that can have a regular user with the administrator group.

    There are many methods to try to remove the folders, and some require third party programs to install or change some windows settings that could compromise the security of your system if you do not change them back when you're done.

    Start your system in Mode safe mode (by pressing the F8 key several times just before XP attempts to load) is one good method to try to remove the files because it does not have to make any changes to your system configuration or by downloading third-party programs.

    If you are running XP Home Edition, the following section on turn off "Simple file sharing" does not apply to you since in XP Home, Simple file sharing is always turned on.  If you are running XP Home Edition, skip the next few paragraphs and resume where it says:

    "If no part tool above work try a third popular called Unlocker.

    If Safe Mode does not work you can change the security of the folder when you start in Normal Mode to give your username full control over the files by navigating to it in Solution Explorer, click on tools, Folder Options, view and in the advanced settings window, uncheck (at the bottom of the list) use simple file sharing (recommended) and click OK.  This disables him recommended simple file sharing on your computer if you want to turn it back on when you're done to make everything you do.

    Right-click on the files of interest, click Properties and click the now visible security tab.  Change the properties, but you need (for example, select your user name, and check the box to allow full control), click OK to apply the changes.

    With usage share of active simple files (recommended) the checked the properties of the folder tabs are:

    General, sharing, customize

    With the use of sharing files simple disabled (recommended) box unchecked, the properties of the folder tabs are:

    General, security, customize

    Now, try to manipulate/delete the folder.

    It's a good idea to go back to the Explorer and the cheque in the box easy to use sharing files (recommended) when you have finished making everything you do.

    If none of the above works, try a popular third-party tool called Unlocker.

    Unlocker can be downloaded here:

    http://www.emptyloop.com/Unlocker/

    If you use Unlocker, be sure to install because he wants to add a bunch of options, addons, shortcuts and other extras that you don't need.

    You must add the shell extension so when you right click on the offending file, you will have a Unlocker option to choose.  I would just install it long enough to clean up the leftovers and then, I usually just uninstall and all parts of it.  You can always install it again another day if you like.

    Unlocker can be uninstalled when you have finished using it.

    Reboot when finished to ensure that boring records are really missing.

  • An error [-5005: 0 x 80070002] occurred during execution of the installation of magictune

    Original title: uninstall magictune

    I am running Windows 7 64 X.  By mistake I have install MagicTune Premium.  My laptop is Toshiba Satellite P799 with Nvidia GT 540 M.  I tried to uninstall it using the program and functionality but receive the following error message:

    An error [-5005: 0 x 80070002] occurred during execution of the installation

    When I click OK, it brings me to the Samsung download web site.  I repeat the download and then restart.  The coup explore whenever I try to run.

    I always unable to uninstall it.

    Grateful for the help

    Thank you and best regards,

    JC

    Hello
     

    Follow these methods and check if that helps:

    Method 1:

    Try to uninstall the program in clean boot mode and check if it helps.


    How to troubleshoot a problem by performing a clean boot in Windows Vista and Windows 7.
     
    Note: Don't forget to reset the computer to start as usual when you have found the culprit. Follow step 7 on top of the kb article.
     
    Method 2:

    I suggest you follow the troubleshooting steps form the article and check if it helps.

    How to solve problems when you install or uninstall programs on a Windows computer
    http://support.Microsoft.com/kb/2438651
  • Filter the Table during execution and keep uncommitted line changes

    Hello

    I have a requirement which has been quite difficult for me so far.

    I use the first version Jdev 12 c.

    I have a table of AF that is connected to a ViewObject that is used for sending new data.

    When I add lines to this ViewObject, I put a field that I intend to use for filtering so that the number of lines is not displayed at the same time.  This field comes from a selection of LOV.

    I want to be able to change lines are displayed in the table based on what is the current value of selection LOV.  This isn't a problem for me, and it works perfectly using a view criteria and a variable transitional EO I put in place.

    My problem is that when I select a new value in the LOV and change to bind the variable view criteria, I want all changes uncommitted to the lines to be preserved in the View object.  Currently, the lines are not keep their changes, and I need to do this, because after that the user has entered data for a large number of lines, there will be a commit to the database for all new lines added.  Is this possible or should I look for an alternative?

    I also tried to use a table filter in the link of the page layer, but I get an error that I can't debug. It is marked as Houston-34014.  In this method, I try to access my bean in pageFlowScope to filter the table.  This bean variable is updated when the LOV selection changes.  Error messages settings are {0 = oracle.jbo.Key [-220-225], 1 = root}.  I also read that this filter parameter is a static filter and does not dynamically during execution.

    Any help would be appreciated, thanks for reading.

    Hello lhymel

    I think that your problem is solved, so please close this thread and open a new thread for tuning related problem

    Thank you

    -Ashish

  • Something trying to close my MacBook during periods of inactivity. Is - this VMWare linked?

    HI - sorry for the thread title wave and the "pix on the side", but I'm having a problem with my VMWare Virtual Windows Machine on my MacBook Pro with Os X (10.10.2):

    I use my Virtual Machine to run a Windows "Poker Clock. Essentially this countsdown asks the minutes as the poker tournament runs. The tournament can last over 6 hours ago there is no user activity. All screensavers are disabled.

    During execution of my Virtual Machine from Windows (using VMWare Fusion 7) 8.1 and the aforementioned Poker clock, I get the following message appears on the first 30 minutes. Apparetnly something trying to stop my MacBook while the software is running. I can't find which program is loaded and I was wondering is there something inherent in VMWare who wants to shut down my computer after a long period of inactivity:

    photo 5.JPG

    I first thought that it had to do with settings of power/energy on the side Mac, or perhaps on the side of Windows, but as you can see on these pictures below, I think that I have disabled all the parameters that would be would like to shut down my computer while "no operator" and yet the previous pop up keeps appearing. It becomes a real hassel and I can't seem to find out how to stop it from appearing.  Moreover, there is no other applications running or updates pending that would re - start my MacBook.

    photo 4.JPG

    photo 3.JPGphoto 2.JPG

    I hope someone can help me with this!

    Thank you.

    It seems that your Mac is set to save accounts after 30 minutes of inactivity. Who would try to stop the VMware Fusion as part of disconnection and generates messages that you see.

    You can check this by opening the security & privacy preference pane in system preferences. On the general tab, log in as administrator by clicking on the padlock at the bottom of the Panel, and then click Advanced at the bottom of the Panel.

    See if the checkbox next to "Log out after xxx minutes of inactivity" is checked. If this is the case, you can uncheck to stop the automatic disconnection. Or you can change it to a longer value (but if you don't have a good idea of how long the game disable the auto disconnect may be the best choice).

  • Problem with the compilation by using the new compiler (Compilation failed during execution: compilation-abc)

    Hello

    Since the release of the fast compiler, I experienced problems with the compilation of the version release with it.

    As it was still in beta, and since it was still possible to use the legacy compiler, I chose to use the legacy compiler each time (especially since it was more stable).

    With this 64-bit iOS requirement came into play on February 1, the legacy compiler is no longer available because it has been completely removed from AIR 16 (and all future versions).

    Now, I can no longer compile release versions (debug versions are works well) because I have the following error every time:

    Error occurred during the application of packaging:

    Stack dump:

    0 program arguments: C:\Program Files\Adobe\Adobe Flash Builder 4.7 (64 Bit)\eclipse\plugins\com.adobe.flash.compiler_4.7.0.349722\AIRSDK\lib\aot/bin/compile-abc / compile - abc.exe - mtriple = armv7-apple-ios - filetype = obj - sdk C:\Program Files\Adobe\Adobe Flash Builder 4.7 (Bit)\eclipse\plugins\com.adobe.flash.compiler_4.7.0.349722\AIRSDK\lib\aot/lib/avmglue.abc 64-fields C:\Program Files\Adobe\Adobe Flash Builder 4.7 (64 Bit)\eclipse\plugins\com.adobe.flash.compiler_4.7.0.349722\AIRSDK\lib\aot/lib/air-fields.)) arm-air.txt-O3-ane-symbol = MmgCmApiExtInitializer - ane-symbol = MmgCmApiExtFinalizer - ane-symbol = MmgRbApiExtInitializer - ane-symbol = MmgRbApiExtFinalizer - ane-symbol = MmgStoreKitApiExtInitializer-ane symbol = MmgStoreKitApiExtFinalizer-ane symbol = MmgGoViralApiExtInitializer-ane symbol = MmgGoViralApiExtFinalizer-ane symbol = MmgGaApiExtInitializer - ane-symbol = MmgGaApiExtFinalizer - ane-symbol = MmgGAIDFAAccessApiExtInitializer - ane-symbol = MmgGAIDFAAccessApiExtFinalizer - ane-symbol = AFExtensionInitializer - ane-symbol = PushwooshExtInitializer - ane-symbol = PushwooshExtFinalizer elease-temp\AOT\AOTBuildOutput4982262150932522887.tmp\ABCFilesList.txt-abc-file-list=C:\BingoIslandWeb\Client-branch-1.06.05\BingoIslanMobile\BingoIsland\bin-r

    Compilation failed during execution: compilation-abc


    I tried to pin-point the source of the problem leaving specific things in the code, while removing all the rest,

    But so far, all I could find is that he has a problem with the classes that extend EventDispatcher.

    Anyone encounter this problem and knows how to work around it?

    Thank you!



    I had this problem also with other things. It was difficult to solve. Remove all const and var conversion in the Document class solve my problems

Maybe you are looking for

  • Qosmio X 870 - J11 and 3D problem

    Hello I have problems with the 3D nvidia vision. What I see is a blurred image and not a 3D image and configuration utility always comes back to failing to test equipment like glasses just dim synchronized about three times per second. It worked very

  • why I can't connect samsung galaxy s 3 to my wireless home connection

    Nice day

  • 64-bit Windows 7 system takes 10-15 minutes to start

    I had the same install of Windows 7 on my desktop since 2009. The Office has faced a lot of hardware upgrades. I replaced the video card three times, the main hard drive once and last year updated card motherboard and CPU. That the last change in par

  • Update SPA232D to 1.3.2

    Hi guys,. the release notes for the 1.3.2 firmaware States: "Because of the CSCug32425, when the upgrade of the SPA232D loaded with v1.3.1 (or one. previous version of firmware), it must be updated to v1.3.2 SPA232D firmware twice if the commissionin

  • Agenda in blackberry app

    Hello; Y at - it is possible to add a program to a TextField, I want to have a field that accepts a date as an entry I want to enter a date in the order of the day. can someone give me an idea?