Avançar para o conteúdo principal

Mensagens

A mostrar mensagens de junho, 2019

Nova aplicação Geometry Calculator

Está na loja já há alguns dias a aplicação de cálculo geométrico. Calculadora de Geometria calcula ou resolve alguns problemas de geometria plana. Para a escola e Engenharia. É uma aplicação com uma interface simples. Por agora calcula: - Distância entre dois pontos, por coordenadas. - Centro de um círculo, por coordenadas de 3 pontos. - Intersecção entre duas rectas. Serão adicionadas mais funcionalidades em breve. Is in the store already a few days ago the application of geometric calculation. Geometry Calculator, calculates some problems of plane geometry. For school or Engineering. Is a simple app, with a simple interface. It now calculates: - Distance between two points by coordinates (distance DeltaX DeltaY Angle). - Center of a Circle by coordinates of three points. - Interseccion between two lines. Will be added soon more calculations. https://play.google.com/store/apps/details?id=com.Coimbras.GeometryCalculator

Apagar todos os comentários no Excel

Como apagar os comentários de uma folha ou livro Excel? Um é fácil, mas todos? É necessário ter conhecimentos de VBA. How to delete Excel comments, from a whorksheet or workbook? One is easy, but all? It´s necessary know VBA. VBA: Delete comments from a worksheet. Sub Remove_All_Comments_From_Worksheet()   Cells.ClearComments End Sub VBA: Delete all comments from the whole workbook Sub DeleteAllComments()   For Each xWs In Application.ActiveWorkbook.Sheets     For Each xComment In xWs.Comments         xComment.Delete     Next   Next End Sub https://www.extendoffice.com/documents/excel/1744-excel-remove-all-comments.html

Listar ficheiros e pastas

Como obter de forma rápida uma listagem, ou visualização das pastas e ficheiros numa determinada localização? How to obtain a fast list, or view of the folders and files in some location? Com o comando tree do MS-DOS. With the tree command from MS-DOS. C:\DESKTOP\TESTE ├───Pasta_1 │   ├───Pasta_1A │   │       Ficheiro_1A.txt │   │       Ficheiro_1A_1.txt │   │ │   ├───Pasta_2A │   │   └───Pasta_2AA │   │           Ficheiro_2AA.txt │   │ │   └───Pasta_3A │       └───Pasta_3AA │           └───Pasta_3AAA └───Pasta_2     ├───Pasta_1A     │       Ficheiro_1A.txt     │       Ficheiro_1A_1.txt     │     ├───Pasta_2A     │   └───Pasta_2AA     │           Ficheiro_2AA.txt     │     └───Pasta_3A         └───Pasta_3AA             └───Pasta_3AAA