Running validation before the 'save as' script

Hi
I'm looking for a steer on how to run form validation before implementing the 'Save as' script - is this even possible??
Basically I want the save as script to run in the click event of my newly formed save button only if the validation script returns a positive value i.e. all mandatory fields are completed, I've used the script below:
if 
(form1.execValidate()== "false"){
app.execMenuItem("SaveAs");
Any chance someone could point me in the right direction or am I barking up the wrong tree?
Thanks

got it to work: my script was wrong, it now looks like this:
if 
(form1.execValidate()== true){
app.execMenuItem("SaveAs");

Similar Messages

  • How can I watch for an alarm, then wait to see what happens before the save?

    I have resurrected an old project, thus using outdated software (LV6.0.2)... any help is awesome.
    I am attempting to gather strain gage information on a piece of equipment. Ideally, when the strain gage level reaches a certain point, I would like to cause an alarm that alerts the user, gathers data for an additional xx seconds, then dumps all this information into a file. Thus saving the information leading up to the event, and the system response following.
    Though I haven't figured out how to preset the file name, (working on that), my current hurdle is figuring out how to get LV to continue saving data after the initial alarm. I can dump the information directly to a file, but its the continuation that stumps me.
    Any help is good help.
    Thanx,
    Paul

    >>If you don't mind, post a simplified version of your VI.
    Due to my extensive self-taught knowledge of LV, simplified versions are all I can currently create. At the moment, I am trying to gather concepts for later final assembly, as I am an electrical engineering student working at an internship where I am the only EE on staff. Final Assembly date is early Sept.
    How am I doing it?? Good question.. Still figuring that part out. Currently I acquire a sample of 83 points w/ rate at 5000. This was chosen as 1 complete cycle of 60Hz to remove unwanted noise. These 83 samples are put trough the 'mean' function, and scaled appropriately to allow accurate results from the 'Strain Conv' function, then processed to achieve accuracy in psi and sent to a chart for real time observations, and to a tunnel for indexing.
    I would like to add an alarm to indicate when the output hits xxxx (roughly 15000), acquire an additional 10 seconds of information, then save this to a file.
    Thus far I was planning on trying Sequence loops...
    Frame 1: use a 'sequence local' to get the initial data to later frames, where the alarm would stop the first while loop.
    Frame 2: continue sampling the data for xx seconds, send to another sequence local
    Frame 3: gather both locals together, build new array, save this to a file... Hopefully with a time/date like stamp as a file name to allow it to run un-monitored for an extended period of time.
    As this is a new venture, I have thus far not attempted frames 2 & 3 yet, working on that. I am guessing that the tick count you are referring to in your suggestion is from the iteration counter ('i' in a blue box), inside the while loop. I will work on that.
    I also recently contacted CC for assistance creating a time/date stamp for the file name... do you think this could work? (didn't ask this specifically) and I still haven't figured out how to create a file path from this. (granted the whole file path thing is a mystery in general)
    Plus.... when events happen, all data from the beginning of the aquisition run is saved, the longer the run, the longer the file. Is there a way to limit this to say.... the last 3000 samples? I think it would have something to do with creating an array xx long to start, then filling it, when the array is full the next point in the top will kick the last one out the bottom. (i think)
    I have attached one of the most recent versions of my attempts, hopefully you can open it. Please note I am using LV6.0.2
    Thank you sooo much for your help, (this is meant for EVERYONE). I feel lost. Everyone's direction and responses in all areas has been invaluable. Though I wish more would post in neutral formats, as there are many vi's I would like to glance at that I cannot due to version gaps.
    Attachments:
    stress test (wavveform capture).vi ‏48 KB

  • Why do I have to File Save twice before the Save menu is grayed out?

    Open a file into Photoshop CC
    Add a Levels layer
    Click File>Save
    The Save menu is still available when you click File. Doing another File>Save make the Save menu become grayed out (like it should the first time).
    System info:
    Adobe Photoshop Version: 2014.2.1 20141014.r.257 2014/10/14:23:59:59 CL 987299  x64
    Operating System: Mac OS 10.10.1 (the problem has occurred since Mac OS 10.8.x)
    Thanks for any help.
    Daniel

    I have OSX 10.10.1 and CC 2014.
    So I will open a PSD with an adjustment layer.
    I turn off and on the "eyeball" in the layers panel. It counts as a change.
    If you look at your document tab, you see a star at the end of the filename. It shows you made changes to  the file.
    File > Save would remove that star and File > Save does dim on my Macbook.
    If you are seeing it twice, the Preferences file may be corrupt. I suggest a reset.
    Macintosh - CMD-SHIFT-OPTION immediately after you double-click the PS icon.
    If that doesn't work uninstall/reinstall CC 2014 and updates'
    Let me know how it went and mark the answer correct only if this solved your problem.
    Gene

  • How do you shut off the apps that are running? Before the update you hit the button twice then it would showing all the apps and u can then shut them off.

    How do you shut off the apps? Before update I just hit the side button twice then it would show all the apps. Then I would shut them off.

    http://manuals.info.apple.com/en_US/ipad_user_guide.pdf
    View running apps.
    Double-click the Home button to reveal the multitasking display. Swipe left
    or right to see more. To switch to another app, tap it.
    Quit an app.
    If an app isn’t working properly, you can force it to quit. Drag the app up from the
    multitasking display. Then try opening the app again

  • How to do data validation before the submit by email

    I am developing an offline interactive form. There is submit button inside, which should check all data and submit the form by email if checking passes.
    My problem is that I can not cancel the submit event when the checking failed.
    I use Adobe LiveCycle Designer 7.1.3284.
    If I use Email Submit Button, I can do validation in presubmit event. But I can not cancel the event. Even there is error in validation, form is submitted anyway.
    If I use normal button, I can do validation in Click event. But I can not submit form with code.
    Is there anyone who has experience on this issue?
    Best Regards,
    Jun

    in that case, you can code just one line in the change event of all fields of the form
    xfa.form.form1.....button_validation.presence = "visible"
    xfa.form.form1.....button_submit_by_email.presence = "hidden"
    After click of validate button,
    if validation is successful,
    xfa.form.form1.....button_validation.presence = "hidden"
    xfa.form.form1.....button_submit_by_email.presence = "visible"

  • Are user events valid before the event structure executes?

    If I create and register for a user event and immediately generate that event before my event structure has seen the registration refnum, is the event still guaranteed to be seen by the structure? That is, are events queued up? It works but I am wondering if I can rely on it. I am very sure that I can but I am creating some production code and want to be assured that I am not just taking advantage of a bug.
    A picture is worth a thousand words.
    =====================
    LabVIEW 2012
    Solved!
    Go to Solution.

    Generally, Felix's explanation is correct and the queue exists from the moment the register node executes, so the answer is that you can rely on this.
    You should, however, be aware that when playing with dynamic registration you can experience some unexpected side effects, as you can see, for example, in this LAVA thread - http://lavag.org/topic/13607-dynamic-event-reregistration/
    Another example would be this - http://lavag.org/topic/13970-unexpected-event-structure-non-timeout-behavior/page__view__findpost__p...
    Or what happens if you split the registration refnum to more than one event structure (hint - NEVER do that).
    Try to take over the world!

  • I'm using Firefox version 3.6 on my '02 Mac G4. When I installed it, it worked fine, But then all of a sudden the "save" and "save as" windows stopped coming up at all when I selected "save" anywhere in Firefox. What happened and how do I fix it?

    I downloaded and installed Firefox on my '02 Mac G4. It worked great. Now I have version 3.6. But my weird problem is one day when I ran it, the "save" and "save as" windows stopped popping up at all. I'd left click a picture and select "save as" and nothing would happen. I'd go to the menu and select "save" and still no window would pop up. It would just act as if nothing had been clicked. No loading icon or anything and no "save as" window. I've never been able to get it to work. The volunteer in the live support chat typed "That IS weird.." I tried his suggestion but it did nothing. I may have deleted the plist preferences file in the preferences library folder to get it started again after a freeze up threw it out of whack but I've never had this happen before.And i've tried doing that again to see if that would restore it. But the plist always regenerates itself and the "save as " window still never appears when I run Firefox. The "save" window works just fine in every other program on my Mac, but not in Firefox. Weird..

    Leliforever, cheek you list of installed add-ons, the Ask toolbar can be installed without the users knowledge.
    For checking other extensions that may cause this, follow the procedure in this link - https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Need your help with the SaveAs function plz

    Good day everyone, 
    I need your help yet again to figure out if what im trying to acomplish is even possible within Livecycle designer.
    My issue is simple in nature, prevent the SaveAs "open window" to show up when they press the disk icon or use the saveAs option from the File menu if some of my fields are not fill-in.
    To do so, i placed the code into the Pre-save area of my form and that code checks if certain fileds are filled-in are not.
    If there not, i want to tell the user to fix this before the SaveAs occurs.
    But right now, the problem is that the "SaveAs open" window shows up FIRST i have to tell where i will save the file and all that good stuff and THEN my code gets activated.
    I was able to create my onw SaveAs button and it works well, the problem is that i want to also capture any save's that are executed around the form (the disk icon, the SaveAs in the FileMenu and the Ctrl+s)
    Is there a way to do just that? right now i would be ok in just being able to tell Livecycle to cancel the SaveAs action if that was possible, but i cant find anyway of doing that neither
    Your help is always appreciated
    Thanx a lot.

    I am having same problem with a 2011 year tax PDF fill in form I JUST got from IRS website.
    The actual form is the 2011 8829.
    I am running Windows 7 64 bit,   Adobe Reader X version 10.1.4.
    After trying to open the doc (nothing displays) I go to properties, and it says ...
    Title:  2011 Form 8829
    Author:  SE:W:CAR:MP
    Created: 12/23/2008
    PDF Producer:  Adobe LiveCycle DSesigner ES 8.2.
    PDF Version:  1.7 (Acrobat 8.x)
    Tagged PDF: No
    Fast Web View:  No
    Yikes ... was hospitalized last year ... now I have 9 days to file.

  • Can we call a report on the 'SAVE' icon ?

    Hello,
    I want to call a report when i hit the 'SAVE' icon on,lets say 'Create Sales Order screen' or  FB60 .. how can i do that ?  please guide me
    Thanks...
    Shehryar

    Hi Dahar,
       When you want to do some validation for the 'SAVE' icon, in a standard program definitely there will be a save_exit provided, where you can do your own validation. I dont know for which transaction you are using so for your std. transaction pls find the save exit and code accordingly.
    Hope this soves your issue.
    Regards,
    Tushar

  • Validation before Digital Signature

    Hello everybody,
    I created a form in Lifecycle ES working like a charm.
    Now i have added a JavaScript for validating the entries in the Form.
    My idea is to launch the validation before the user enters the signature. When the signature is added the validation must have been passed successfully.
    I have begun with adding an event_enter JS to activate the validation.
    The Problem is that the signature dialogue box opens anyway. How can I get rid of this dialog box?
    Thank you for your kind help
    Best regards
                           Ch. Du Champs

    Please post in the LiveCycle Designer ES forum.

  • Additional validation for the Start investigation in investigation tab

    Hi all ,
    In health safety->overview -> incidents .
    I want to add additional validation for the start investigation based on the custom field values .
    so that the values in the custom field are not entered it should not allow the user to proceed for the investigation .
    In this case i have displayed an error message and return statement In needs_confirmation_method  method but still unable to stop the process . Please suggest any other method .
    Thanks ,
    Venkat Ratnam Naidu

    You can use these solutions:
    1) use the fields control (CMOD), insert a new rule that if the field is empty action is disabled.
    2) insert a custom validation before the action
    3) modify feederclass to on/off the action

  • Need to run php script before the Flash component kicks in

    I have a slide show component in Flash which uses an xml file to load images. The xml file, however, is created dynamically when the user selects which slide show they want to see. How do I run the php script BEFORE the slide show component has a chance to look for it? Usually it begins as soon as the .swf is run.
    thanks,
    chop

    thank you for responding.
    I'm still new at as3 so forgive me for needing details.
    I searched adobe for help and came up with the following to import the component. However, it seemed too easy to be true and so it was. I received errors when I ran it. The component is a commercial one called SlideshowBox and is in my library with that exact name.
    //add a component to the stage
    import fl.controls.SlideshowBox;
    var aSlideshowBox:Button = new Button();
    addChild(aSlideshowBox);
    errors:
    Scene 1, Layer 'Actions', Frame 1, Line 3    1172: Definition fl.controls:SlideshowBox could not be found.
    Scene 1, Layer 'Actions', Frame 1, Line 3    1172: Definition fl.controls:SlideshowBox could not be found.
    Scene 1, Layer 'Actions', Frame 1, Line 4    1180: Call to a possibly undefined method Button.
    thank you, k

  • DDLIMP utility is failing while running the DDL_OLTP.ctl script for Siebel

    DDLIMP utility is failing while running the DDL_OLTP.ctl script for Siebel source on DB2.
    Below is the the log details:
    2021 2012-11-08 03:23:46 2012-11-08 03:25:56 -0700 0000002a 001 003f 0001 09 ddlimp 604 736 C:\OBIA\Upgrade\CTLFiles\DDL_.log
    ContextInit     ContextInit     0     0     2012-11-08 03:23:46     Message Facility failed to init. Siebel Root: C:\DAC\client\utilities
    Trace     Trace     3     0     2012-11-08 03:23:46     Siebel Enterprise Applications ODBC DDL Import Utility, Version 7.7 [18030] ENU
    Trace     Trace     3     0     2012-11-08 03:23:46     Copyright (c) 2001 Siebel Systems, Inc. All rights reserved.
    Trace     Trace     3     0     2012-11-08 03:23:46     
    This software is the property of Siebel Systems, Inc., 2207 Bridgepointe Parkway,
    San Mateo, CA 94404.
    User agrees that any use of this software is governed by: (1) the applicable
    user limitations and other terms and conditions of the license agreement which
    has been entered into with Siebel Systems or its authorized distributors; and
    (2) the proprietary and restricted rights notices included in this software.
    WARNING: THIS COMPUTER PROGRAM IS PROTECTED BY U.S. AND INTERNATIONAL LAW.
    UNAUTHORIZED REPRODUCTION, DISTRIBUTION OR USE OF THIS PROGRAM, OR ANY PORTION
    OF IT, MAY RESULT IN SEVERE CIVIL AND CRIMINAL PENALTIES, AND WILL BE
    PROSECUTED TO THE MAXIMUM EXTENT POSSIBLE UNDER THE LAW.
    If you have received this software in error, please notify Siebel Systems
    immediately at (650) 295-5000.
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:23:46     ddlimp /U SIEBEL /P ***** /C siebel /G SSE_ROLE /F C:\OBIA\Upgrade\CTLFiles\DDL_OLTP.CTL /L C:\OBIA\Upgrade\CTLFiles\DDL_
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:23:46     
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:23:46     Connecting to the database...
    DBCLog     DBCLogError     1     0     2012-11-08 03:23:52     SQL Warning, SQL State 01004, 0, [DataDirect][ODBC DB2 Wire Protocol driver]String data, right truncated.
    DBCLog     DBCLogError     1     0     2012-11-08 03:23:52     SQL Warning, SQL State ”, 40042692, CLog     DBCLogError     1     0     2012-11-08 03:23:52     SQL Warning, SQL State 01004, 0, [DataDirect][ODBC DB2 Wire Protocol driver]String data, right truncated.
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:23:52     Connected.
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:23:52     
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:23:52     Reading tables and indexes from DDL file...
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:23:52     Read 522 tables and 1084 indexes from DDL file...
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:23:52     
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:23:52     Reading existing schema...
    SARMLog     SARMInformation     3     0     2012-11-08 03:23:52     SARM is OFF -change param SARMLevel to enable
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     Read 0 tablespaces, 6137 tables and 24846 indexes from existing schema...
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     Running SQL statements against the database...
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     Merging table S_ETL_COSTLST ...
    SQLError     Statement     0     0     2012-11-08 03:25:56     SQL Statement:
    alter table S_ETL_COSTLST modify
    CONFLICT_ID varchar(15)
    DBCLog     DBCLogError     1     0     2012-11-08 03:25:56     [DataDirect][ODBC DB2 Wire Protocol driver][UDB DB2 for Windows, UNIX, and Linux]ILLEGAL SYMBOL modify; VALID SYMBOLS ARE table S_ETL_COSTLST. ADD
    SQLError     Statement     0     0     2012-11-08 03:25:56     SQL Statement:
    alter table S_ETL_COSTLST modify
    CONFLICT_ID varchar(15)
    DBCLog     DBCLogError     1     0     2012-11-08 03:25:56     [DataDirect][ODBC DB2 Wire Protocol driver][UDB DB2 for Windows, UNIX, and Linux]An error occurred during implicit system action type '2'. Information returned for the error includes SQLCODE '-104', SQLSTATE '42601' and message tokens 'modify|table S_ETL_COSTLST|ADD'.
    SQLError     Statement     0     0     2012-11-08 03:25:56     SQL Statement:
    alter table S_ETL_COSTLST modify
    CONFLICT_ID default '0'
    DBCLog     DBCLogError     1     0     2012-11-08 03:25:56     [DataDirect][ODBC DB2 Wire Protocol driver][UDB DB2 for Windows, UNIX, and Linux]ILLEGAL SYMBOL modify; VALID SYMBOLS ARE table S_ETL_COSTLST. ADD
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     37000: [DataDirect][ODBC DB2 Wire Protocol driver][UDB DB2 for Windows, UNIX, and Linux]ILLEGAL SYMBOL modify; VALID SYMBOLS ARE table S_ETL_COSTLST. ADD
    SQLError     Statement     0     0     2012-11-08 03:25:56     SQL Statement:
    alter table S_ETL_COSTLST modify
    CONFLICT_ID default '0'
    DBCLog     DBCLogError     1     0     2012-11-08 03:25:56     [DataDirect][ODBC DB2 Wire Protocol driver][UDB DB2 for Windows, UNIX, and Linux]An error occurred during implicit system action type '2'. Information returned for the error includes SQLCODE '-104', SQLSTATE '42601' and message tokens 'modify|table S_ETL_COSTLST|ADD'.
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     56098: [DataDirect][ODBC DB2 Wire Protocol driver][UDB DB2 for Windows, UNIX, and Linux]An error occurred during implicit system action type '2'. Information returned for the error includes SQLCODE '-104', SQLSTATE '42601' and message tokens 'modify|table S_ETL_COSTLST|ADD'.
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     alter table S_ETL_COSTLST modify
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     CONFLICT_ID default '0'
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     ;
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     writeExecDDL error (UTLOdbcExecDirectDDL pDDLSql).
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     writeExecDDL error (UTLDbDdlColModify).
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     Error in MainFunction (UTLDbDdlDbMerge).
    SQLDBUtilityLog     SQLDBUtilityLog     3     0     2012-11-08 03:25:56     Error in Main function...
    GenericLog     GenericError     1     0     2012-11-08 03:25:56     (logapi.cpp (167) err=1 sys=126) SBL-GEN-00001: (logapi.cpp: 167) error code = 1, system error = 126, msg1 = (null), msg2 = (null), msg3 = (null), msg4 = (null)

    If you run DAC on a 64-bit windows Operating System, you must create the ODBC data source using the ODBC Administrator tool in %windir%\SysWOW64\odbcad32.exe. for creating the data warehouse tables.
    If helps pls mark

  • How do I close a running .vit using the X button without getting the save VI dialog?

    One solution is to save the running .vit instance to disk before the operator is able to use the X button to close the running VI. This is awkward as I don't need another numerically named copy of the .vit on my disk. Adding a "Quit" button to my .vit front panel is also an option but it would be nice to be able to use the X button instead.

    If you have LabVIEW 6.1 or higher, you can use the Event Structure to capture the click of the 'X' button, and choose to ignore it and close the panel.
    Configure an Event Case to "This VI..Panel Close?" filter event. (note the question mark) On the right side of this new case, there will be a boolean terminal that will let you discard the event. Open a reference to the VIT and pass this out of the main loop, and use a property node on this reference to close the front panel, then close the reference.
    It will go away when you hit the 'X' without prompting to save.
    A simple example is attached. You'll either need ot make a change or copy everything to a new VI and run that to prove it doesn't prompt for saving changes. This is in 7.1, Let me know if you need it in an earlier version.
    EdMessage Edited by Ed Dickens on 03-03-2005 12:58 PM
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.
    Attachments:
    Close without Save Prompt.vi ‏25 KB

  • U201CValid Tou201D date set before the date that the report is run u2013 print u201Cnullu201D.

    Hi Experts
    I had a requirement for  the Query, when we executing the through slection screen we will be giving 0fiscyear "from and to" dates. the "Valid to" (0date)  has to check the relation of the Client partner and contract of relationship, if it is within the current date it should dipslay the report with values , if it is out of current date, it should display in the report as "null".
    Logic : This report is based on the u201CClient Partneru201D and the u201CContact ofu201D relationship. If any of these relationships have a u201CValid Tou201D
               date set before the date that the report is run u2013 print u201Cnullu201D.
    Could anyone of you provide the inputs on this.
    Thanks in advance
    Thanks
    Sekhar.P

    IvanLevo wrote:
    Could not find the /Library/Startup Items.
    Good, it shouldn't be there.
    For your Dock problem,
    Go to your Finder "Go" menu choose "Go to Folder" and enter ~/Library/Preferences. Then delete these files then restart or log out and back in.
    com.apple.Finder.plist
    com.apple.dock.plist
    com.apple.dock.db
    com.apple.dock.extra.plist
    Let us know

Maybe you are looking for

  • Problem with timers in a udp state pattern

    Hi. As a project on my school, i have created a bomberman game, that supports up to 4 players on a network. And it works fine, when there is no network timers involved, that means no packet loss handling. The network part of the game, is build up by

  • Problem while invoking web service.

    Hi, I am migrating plsql web services created in Jdeveloper to Weblogic 9.2 and I am having a jdbc problem. The database driver configure in weblogic is weblogic.jdbcx.oracle.OracleDataSource. And I have a statement in my implementation as below __sJ

  • Excel 2007 Converted to PDF cuts off information

    I am using Acrobat 8.1 and I am having trouble converting the information from Excel 2007. Some of the text in the cells are cut off on the ends. Is there some kind of tweak to stop this? Thanks

  • Passing Opaque Objects from Oracle to Java

    Hi all I am trying to write a stored procedure that needs to be called from different triggers. Each triggers needs to pass a different set of data to the stored procedure. Now the problem is that i need to pack the different set of data into one opa

  • Can't change my telephone number!

    Please help. I have changed my phone number that was linked to my Skype account. I have changed in settings and te old number doesn't appear anymore but when I sen a text message the person who receives responds to that message and it automatically s