Using a VBA project as a Template

Hi, I work in a company where we use a new program called SolidWorks Inspection that takes an Excel Template and a Drawing then
creates an Inspection report on an Excel spread sheet. I wrote a VBA code that will extract information from the user and input them in their places on the spread sheet. I made this VBA code on the Template and saved it. Solidworks Inspection exports
the information into that template creating a spread sheet. i saved my work then opened it back up to run the VBA project but it is not there anymore only the Button that i made to run the program is there but the actual Modual disappeared.
The question here is can I write a VBA code that can be saved as a template so that whenever i use it on anything my code will be ready to go with a click on a button?

When the corporation I work for, changed all PCs to Win7 Pro x64 & office 2010, I had macros disappear after creating new code in personal.xlsb (local VBA project file).   Maybe
a ' trusted document' and or 'Trusted Location' (network folder?) issue
Your IT  department may need change their standard Policy for all users, to allow saving code to a 'trusted location'.
Mark

Similar Messages

  • Using ms project 2007 and vba macro to list all the custom fields used in the project?

    Hi,Using ms project 2007 vba macro, I would like to be able to list all the custom fields used in the project and their corresponding field names. e.g. let us say I create a calculated duration field and name it "expected duration" and the name
    of the field I select is Duration1.
    I am trying to write a macro that will list all the used custom fields such as the result would look like:
    Duration1 ---> "expected duration"
    Text1       ---> "anything"
    Flag1        ---> "....."
    Number1  ---> "..............."
    Can anyone provide me with the solution?
    Regards,
    Chuck

    John,
    I found this module, which provides the the list of custom fields used in the project but does not provide the name given to the field. Here below is the module and hope you could help me achieve this by modifying the macro to list the renamed field.
    ' MSP Checks all Custom Task Fields
    Sub checkfields2()
    'This macro will check and report out which custom task fields are used
    'It requires Project 2002 and above as it relies on the GetField
    'and FieldNameToFieldConstant methods which were not introduced until
    '2002.
    'It does not include resource fields, however it is a simple matter to
    'do it by replacing the pjTask constant with pjResource.
    'Copyright Jack Dahlgren, Oct. 2004
    Dim mycheck As Boolean
    Dim myType, usedfields As String
    Dim t As Task
    Dim ts As Tasks
    Dim i, it As Integer
    Set ts = ActiveProject.Tasks
    usedfields = "Custom Fields used in this file" & vbCrLf
    myType = "Text"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 30
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> "" Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Number"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 20
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> 0 Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Duration"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If Left(ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)), 2) <> "0 " Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Cost"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> 0 Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Start"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> "NA" Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Finish"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> "NA" Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    MsgBox usedfields
    End Sub
    This is what the module gives me. But I would like to have beside Text 1 the name that is shown as below. e.g Text1 is "Test".
    Would you mind helping me achieve this?
    Thanks in advance.
    Chuck

  • Can I convert my VBA project to some sort of batch submitted executable

    Thanks to the help from you all, I have written VBA macros that open huge word documents and pluck out specific information and put it into Excel.  The files I've received have grown in size from 1500 to 3500 pages.  I'm currently running the VBA
    macros by opening the document in word and then clicking "View....Macros...mymacro....Run.  The macro then runs for any where from 10 minutes to 2 hours.
    Is there a way I can convert my VBA project into some sort of executable so that I can "submit" the word file to the executable? Sometimes I run this on a term server.  I'd like to start the job, log off the term server, and then later
    check for the resulting excel file.
    Is there a way to queue up a list of input files for this?

    Hi Denis Backer,
    >>Can I convert my VBA project to some sort of batch submitted executable<<
    Yes, it is possible. We can write an application to automate open the Word documents and run the macro using
    Application.Run. Also we can convert all the VBA project with mange code, however the Office automation is not supported on the server enviroment.
    Microsoft does not currently recommend, and does not support, Automation of
    Microsoft Office applications from any unattended, non-interactive client
    application or component (including ASP, ASP.NET, DCOM, and NT Services),
    because Office may exhibit unstable behavior and/or deadlock when Office is run
    in this environment.
    You can get  more detail about it from link below:
    Considerations for server-side Automation of Office Print Print Email Email
    And here are two helpful links about Office automtaion using C# for your reference:
    C# app automates Word (CSAutomateWord)
    How to automate Microsoft Excel from Microsoft Visual C#.NET
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.
    That is a really curious disclaimer considering the number of options for automation Microsoft itself integrates into its products.

  • URGENT HELP BPC Park N Go does not work when VBA Project is protected

    Hi
    I am using NW BPC 7.5 client sp07 and the park n go feature show a dialog box with the message to disable VBA Protection but I need the protection, is there a work around.
    Urgent help project is meant to be signed off today.
    Thanks

    Hi
    Yes we are using native excel protection but having it protected in excel or not has no effect on the vba project being locked and the trust access with vba option is enabled, the MS version worked with vba password but only after we unlocked it and took the files offline n then online again to get the temp files added to the vba project n then protected it again.  This workaround does not work in NW.
    Thanks for your replies.

  • Edit Motion project as Motion template in FCP timeline?

    Hi,
    I'd like to know is it possible to turn basic Motion project into Motion template in Final Cut Pro timeline? If not possible I think this would be a great feature because it simply takes too much time to copy motion projects for example to 10 edits /library/motion... folder to have them accessible as templates. I know it wouldn't be possible to see preview videos this way but I wouldn't care. Motion templates are a great tool but this way a little bit too slow to use for simple text animations etc.

    In FCP, right-click the Motion project and choose open in editor. In Motion, choose save as template.

  • Adjust changes in Implementation Project  back to Template Project

    Hello All,
    Please can you help with transaction SA_PROJECT_UPGRADE, the case is as follow:
    STEP 1
    - Template project is created including process structure and documents, template is activated
    - Implementation project: is created derived from template project.
    - In Template project: Change in pocess node made: added an new process node
    - Run SA_PROJECT_UPGRADE with checked box "New Version of Original" and chosen project: Implementation project
    - Implementation project:  the yellow boxes appears on the appropriate place and button "adjust to original" is used.
    So far, so good
    STEP 2
    - Implementation project: a new process node is added, project is saved
    - Run SA_PROJECT_UPGRADE with checked box "'Current Version in Project" and chosen project: Implementation project
    - Template project: no changes are visible in SOLAR01 or SOLAR02
    - In SOLAR01: settings -> User specific -> box checked "Dislay changes made in project"
    So far, NOT good.
    Resume:
    - using transaction SA_PROJECT_UPGRADE from Template -> Implementation Project works according documentation
    - using transaction SA_PROJECT_UPGRADE from Implementation Project -> Templates does not work according documentation
    Does anybody recognise this?
    Or do I oversee something?
    System: SSM 4.0 updated to SP13
    Thanks in advance
    Rutger Koppelaar

    Hi Rutger (& all others watching this thread),
    I would like to make certain corrections to one of the points posted by me:
    2) Within a Template Project, any actual changes to the document does not offer itself as a 'change' while doing comparison on Implementation Project. In other words, after a given Scenario and all its associated documentation are copied into an Implementation project, if a given document at a given node needs to be edited, it's better to create a new document and upload it in Template Project than to open & change the same document. If the same document is edited, the Compare and Adjust cannot see that as 'difference'.
    On the above point, I have now see better/different results with my recent work; not sure if this is version/ support package specific.
    Environment:
    SolMan 4.0
    SAP_BASIS - Release 700 Level 0013
    SAP_ABA - Release 700 Level 0013
    ST - Release 400 Level 0014
    Assumption: Both the Template and Implementation Projects are in the same SolMan instance and not a case where the Template is being transported into another instance!
    Findings (please bear with this verbose description; one day I intend creating a Blog instead, to list all these points):
    (1) In General Documentation Tab of Template Project, any changes made is instantly visible in General Documentation Tab of the Implementation project - not even dependent on running SA_PROJECT_UPGRADE transaction
    If you indeed run this transaction - in foreground or background, and later check the Implementation Project, it would not highlight that node as having undergone any change. However, if you double click the document itself, you'd be pleasantly surprosed that it opens the most updated version you maintained in the Template Project. No need for 'Compare and Adjust'.
    (2) In Test Cases Tab - any change you make to Test Document in Template Project is again instantly available for the Implementation Project that had inherited the document, provided no manual changes were done to that document in the Implementaiton Project directly. Again, no need to run SA_PROJECT_UPGRADE transaction or the subsequent 'Compare and Adjust' function
        2a) If, however, the Test Document was altered in Implementation Project subsequently, the chain gets broken (in my understanding so far), and any subsequent changes made in Template Project does not become 'instantly' visible in Implementation Project - the two behave as though they are different documents
              In such a case, if you desire to 'restore' the supremacy of Template Project's contents, run SA_PROJECT_UPGRADE transaction, and after the background job finishes, visit Implementation Project concerned. The node where the Documents differ is not highlighted (unfortunately).  However, if you are aware of that node, and hit  'Compare and Adjust' button the ensuing Window does tell you with a # sign on the right hand panel that the Document has indeed changed in the original. You can 'adjust' that and save.
    Once this is done, and also you vow to not change the document in Implementation Project directly, the link between the two is kind of re-established. Any subsequent alterations you make in the Test Case at Template Project would be instantly visible from Implementation Project, as before !
    I have tried to explain precisely what I experiemented and found. I hope this works consistently
    The ways in which Document linkages are established and pointers to KW object IDs work is rather inscrutable for me, without ABAP support.
    I'll update any further findings here.
    Please keep a watch.
    Thanks and regards,
    Srini

  • Solar_project_admin, projects and specific templates in SCOPE tab

    Hello all,
    I'm searching for a solution to import specific templates in SOLAR_PROJECT_ADMIN > My_Project > Scope tab > Template selection.
    Is there an easy way to upload my owns ?
    Thanks a lot.

    HI ,
    To use the template project you have to first create a template of your own.
    Steps to create and use the Template .
    1.  Create a project in "solar_project_admin" select the project type as TEMPLATE project and create the business senarioes and the solutions that you need to give as template.
    2. Next in solar_project _admin if you go and see in the template tab the above newly created template will be available.
    3. Check the template and save now all the scope and the process you need to add will be available in this .
    Regards,
    Umesh

  • Best way to save a vi that is used in multiple projects?

      Hello,
    I have an archive of vi's that I use in multiple projects.  As an example, I store all my vi's in a folder called 'Archive'.  When I start a new project, I make a new directory, say 'Proj A', and then I drag copies of the original vi's from 'Archive'  into 'Proj A'.  When I launch Proj A, labview always loads the files from their original location ('Archive') instead of 'Proj A'.
    Is there a better or more proper way?  I heard LV8.0 may take care of this issue.
    Thanks,
    Tony.
    P.S.  I apologize for posting two blank threads a few minutes back.  Can't figure out how to delete them.
    Message Edited by TonyO on 10-13-2005 02:02 PM

    User.lib as mentioned by the others is the way to go if you have no issues reagarding sharing the contents of user.lib across multiple machines. The complications I have seen with this is that if I move an application to my customer's machine and some of the VI's were stored in user.lib the application will not find them unless I thought ahead and pulled out the parts the app needs. I also do not want to give away my entire re-use library everytime I include one of the containded functions.
    If you just want to pull out elements from your collection then templates can be of some use.
    If you need to selectively pull out parts of your archieve for use when required, then a "Tree.VI" can help. A Tree.VI is a VI that contains all of the top level and dynamixally loaded VI's used by the function to operate correctly. By opening the Tree.VI and doing a "Save with options"... single prompt preserve hiarchy... the requred VI's are copied to the new location and saved with the relative paths adjusted to point at the new location. This takes care of the cross linking issues.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Using The Slide Show As A Template

    Hello Everyone.
    I have created a Slide Show. It contains 20 Images, and I have applied Different Effects and Different Transforms. Such as Opacity, and Scale.
    I would like to use this Slide Show for my next Photo Shoot Projects. In other words, use this Slide Show as a Template, so I can  Apply my next Images to this Slide Show.
    Technically,  Replacing all the old Images with my New Images
    How can I do that ?
    Thank you very much.

    Mr. Gerard:
    Yes Sir, I did exactly what you told me. I Created a test folder with 10 images named them 1-10, and created a Slideshow, closed After Effects and opened new Images Named them 1-10, and later I did copy 10 Images named 1-10 into that folder and It Is Working.
    Thank you very much for your help

  • How to get a list of file paths for all files used in a project

    I have a project in Premiere Pro CC which has a large number of bins.  A sequence in one of these bins uses files from other bins.  I am trying to find the locations of all each of the files used  in the project.
    1)  Obviously I can select each clip in the timeline and show in finder, but there a lot of clips
    2) The video usage associated with each file in the project would help.  However
               1.  I haven't found a way to display only clips that have video useage if all of the bins have not been expanded.
              2.  Video usage  shows usage for all sequences, so one would have to manually check the pull down for each file to see if it is used in the sequence in question.
    3) I tried exporting the project to final cut pro xml.  The path url gives me the information that I need.  For some reason, however, when I do the export only one clip's information is there, not the information for all of the other clips in the project.
    4) I tired an export for speedgrade and all of the file names are there.  However the paths are not. 
    Basically I want to find all of the files in the project and relocate them to a specific folder for that project.  There's got to be a way to do this but I'm not seeing it ....

    Thanks for the suggestion concerning the file path.  And certainly it would have been nice to have done this before beginning.  However this is a project that has been around for quite a while, and the files have been moved into different bins.  And now the project sequence is being revised.
    So the problem is, worded slightly differently, how can I search all of the bins for the files that are used just by this sequence, ignoring the files which are used by other sequences?  Or, how can I get a list of the file paths of the files that are used in the sequence?

  • Exporting the Browse Sequence XML file for Use in Another Project

    When I generate a browse sequence based on the TOC using zero for the book level, instead of getting A, A1, A2, B, B1, B2, I get A, B, A1, A2, B1, B2.  The TOC runs through all 1st level items first, cycles back through all 2nd level item, then 3rd level, etc.
    My workaround was to auto-create the browse sequence at a 0 level and then manually manipulate it to output according to how my readers would actually read my online book (ie A Aa A1 A1a A1b A2 A2a A2b B B1 etc etc).
    Now that I have my browse sequence in the correct order for this project, I do not want to repeat these steps every time I create a new version of my OLH for the same guide after some minor updates have been made to the FM source.
    There is a file named whbrs.xml inside the output folder and it contains the browse sequence order I specified during my workaround steps.
    Is it possible to export this file to another location for use in another project referencing the same guide?
    This methodology is much preferred as I am working at an enterprise level with multiple documents (some numbering in the hundreds of pages) and do not want to have to manually use my workaround for each project I update over the next few years.

    Hi Kristopher
    You probably wouldn't want to use that particular file as it's an output file. You would likely have better luck using the ProjectName.BRS file as that one should be a source file.
    However, keep in mind that whether (or how well) this will work will entirely depend on having the recipient project using the same identical structure and identical file names.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Imovie on my ipad ...refuses to recognize AVCHD Video. Also when i remove video clips already used in a project, it is unable to recognize missing clips after I've put them back. How do I get around these 2 issues?

    My iMovie refuses to recognize, import, or work with AVCHD Video. It also refuses the same video clips even after I have converted them to Mp4. Also, when I delete a video clip already used in a project, then later import the same clip back to my ipad, the software is unable to recognize and find the clip again! Help! How do I get around these issues?

    Hi Craig,
    I also got the second problem. The storyboard on iMovie trailer has all these missing videos. If I import them on my iPad it doesn't find them.
    If you find a solution it would be much appreciated to share it here ... I'll do the same.
    Thanks,
    Rafael

  • How do I backup movies/clips to use in future projects?

    After burning my first DVD & deleting the iMovie file, I was sad to discover that I could not just pop the DVD into my drive & access the material to use in future projects. (Is there a way to do do this that I don't know about?)
    I'm guessing I need to burn the archived iMovie file onto multiple regular CDs (I have not burned anything that spans several CDs before). This is confusing me because the zipped file is hardly smaller than the original (Is there a better zip program than the one that comes with this system?) I threw away the wrapper for my blank CDs so I don't know how much they hold but I think it is something ridiculously small like 670MB and the iMovie file is 7GB. Is this the only way to save my movie/clips so that I can bring clips into a future movie?
    1.8 GHz Power PC G5   Mac OS X (10.3.9)   256 MB DDR SDRAM

    welcome Novice to the  board ....
    hmm, multidimensional question ...
    DVD is end-of-the-road, not meant for further processing; there are tools, allowing to import DVD to iM, but that is a time-consuming and lossy (=losing pic quality) process, due to the deliver-format nature of DVDs.... search forum for "DVD import"
    iM is by concept not meant to handle a clip in many projects (that can easily been accomplished with pro tools as FC(E), which offer "bins" for imports, offering the content to many sequences/projects).
    there are workarounds, dragging clips from the internal files of an iM project to another... but, as said: you "fumble" the concept: import tape, edit, burn - done.
    a video contains ~13GB of data per hour... and, video is allready highly compressed, no zipper can reduce that dramatically... and, you risk damage of files... yepp, a cd-r fits ~700MB = 3.5min of video......
    recommended workflow:
    * don't store iM projects on -r media (cd/dvd), but firewire connected harddrives..
    * keep the tapes; import clips from tape into project; you can export single clips out of iM/import into another project, I wouldn't do that with "lots" of clips, importing the tape is... more convenient..

  • How can you tell if a file is being used in your project or not?

    How can you tell if a file in your bin is being used in your project or not? My director dragged hundreds of reference files into my project and only used a few of them. I'd like to do some house cleaning and delete the ones that are not in use. This project file has 100 sequences in it, so it would be a tough manual hunt to figure this out.
    In Premiere Pro (or Flash for example), where all the information is in the Project Bin such as in/out times and duration, there is where it tells you how many times that piece of media has been used or if it hasn't been used yet.
    Can FCP tell me this info?
    Thanks for yout time!
    -Monty

    Monty,
    Within FCP, there is a menu item called "Media Manager" (depending on what version you are in). This would be worth your while to look into. It basically organizes your project by moving/archiving any used assets of a project and leaving out un-used assets. It saves a ton of disk space.
    For example, say you have a 5 minute clip with an in/out point that is just 30 seconds. Media Manager will "archive" just that 30 seconds, not the entire clip. There is even a setting that you can add additional "handles" time to the front andd back of the clip if you think you may need to add or change transition.
    Do a google search. I was just watching a few Youtube videos on this myself.
    Jonathan

  • How to get path of a VI used in LV project?

    How can I get the path of a VI used in LabVIEW project?
    Actually I want to replace the VI used in LV project by saome other VI, and I think it can be done if I get the path of the VI already present in project and replace that path with path of the VI which I want to include in that project.

    There are several ways to replace a VI, say "MyFirstVI", with another, say "MySecondVI".  The method you use will depend on several factors, including
    the version of LabVIEW you are running
    whether the VIs are in a LabVIEW Project or not (if they are, I'm assuming they are in the same Project)
    whether you want to replace all MyFirstVI instances with MySecondVI, or selected ones
    the size (number of VIs) of the Project.
    As noted, if you want to replace all of MyFirstVI with MySecondVI in a Project, here is one way to do this:
    Close the Project.  You do not want to do this with Project open.
    Rename MyFirstVI to MyOldFirstVI.
    Rename MySecondVI to MyFirstVI.  If MySecondVI already exists in the Project, you might want to Copy it instead of Rename.
    Open the Project.  Find and open an instance of MyFirstVI, verify it has the code of MySecondVI.
    In Project Explorer, find MyFirstVI and rename it MySecondVI.
    Exit Project.  Rename MyOldFirstVI back to MyFirstVI.
    At this point, all of your VIs have their "original" names, but in, say, Main.vi, wherever MyFirstVI was called, you should see MySecondVI.
    For doing selective Replacement (or even total replacement where you want to actually see all of the instances where replacements are made), you can use QuickDrop to your advantage.  You need to have in memory the VIs that use MyFirstVI, and also have MySecondVI in memory.  With the Project open and the relevant VIs in memory:
    Open any VI that shows MyFirstVI on the Block Diagram.  Right-click it and choose "Find All Instances".
    When the search is done, you need to "visit" each of the found VIs -- use Ctrl-G to do this.
    When you find an instance of MyFirstVI, type Ctrl-Space to activate QuickDrop, start typing MySecondVI until it appears on the Selection line (if you are lucky, you will only need to type MySec and it will find the correct VI), then type Ctrl-P to replace MyFirstVI with MySecondVI.
    Type another Ctrl-G to go to the next instance of MyFirstVI and replace as needed.  When you've replaced all of them (or all that you want to replace), stop.
    Bob Schor

Maybe you are looking for

  • Error processing a page when using AJAX

    hi apex forum. I need your help with a problem that presents me with an application in apex 4.2. I have developed a html screen, in which I have created a table that contains a detailed items and on which the user can enter some values. these data th

  • System preferences, sharing, remote management?

    Hello, Could someone tell me where I can find more information of how to use remote management that is under system preferences, sharing. What is the difference between screen sharing and remote management? It will be a great help as I am learning my

  • Error While importing third party certificate

    Hi, In my application I'm using HTTPS for secure connectivity.For that purpose I signed my midlet using a third Party certificate (GoDaddy's Certificate).But when I'm hitiing the url it is not working. I've done this with generating my own certificat

  • Change in voice commands for Blackberry Assistant with version 10.3.1

    The change in the voice activation commands have a massive impact in my work productivity as I can no longer voice dial without touching the screen while I am driving.  Now with a voice command say "call and a name" it comes back with possible multip

  • JCE strength dynamic selection

    Helo, We would like to configure JCE, because some applications need it. Most of the applications can work with the default US_export_policy.jar and local_policy.jar, but one of them needs the "Unlimited Strength Jurisdiction Policy Files" version, w