Avançar para o conteúdo principal

Mensagens

A mostrar mensagens de fevereiro, 2020

Primeiro curso Udemy - Programação Lua

Foi aprovado hoje o meu primeiro curso na plataforma Udemy! O único em português de Portugal. A qualidade de vídeo e audio poderia ser melhor, mas o hardware é limitado, poderei tentar melhorar para o próximo. https://www.udemy.com/course/iniciacao-a-programacao-e-a-linguagem-lua/?referralCode=5955FDD193DCA3E9E8F7

ISPOL - Obras de Drenagem

O ISPOL permite desenhar obras de drenagem - PHs de diversos formatos. Exportar em 3D para CAD ou BIM.

Bentley Power Rail Track - Errors

A sample of the many errors i encounter in this software... no pacience... Two axis, named Eixo1 and Eixo2, Eixo 2 does not appears in turnout creation... Select Eixo1 and the drawing is at Axis2...

Count Blocks in Autocad

It´s simple, just enter the "Extract Data" option in Insert Menu, and follow the steps. In my case i want to list / count how many blocks of each type i have in may drawing.

Javascript - Hide Divs

Today i will show how to hide/show a Div in Javascript. Fist you need to have a ID inside a DIV: Then for example, this function show ("none", shows if hidden before) other DIV with ID "MenuHelp" and hide "MenuPrincipal": function VaiMenuPrincipal() {    document.getElementById("MenuPrincipal").style.display = "block";    document.getElementById("MenuHelp").style.display = "none"; }