Compartilhe : Porcentagem de um valor function Gerapercentual(valor:real;Percent:Real):real; begin percent := percent / 100; try valor := valor * Percent; finally result := valor; end; end; Compartilhe :
CSS Boas Práticas para Organizar seu Código CSS Compartilhe : Compartilhe :Boas Práticas para Organizar seu Código CSS Neste post, aprenderemos como organizar e estruturar o código CSS, incluindo o… Compartilhe :
Delphi | Desenvolvimento de Software Enviando arquivos para a lixeira Compartilhe : Compartilhe :Enviando arquivos para a Lixeira Para excluir um arquivo, enviando-o para a Lixeira (ao invés de excluí-lo definitivamente), use a… Compartilhe :
HTML Boas Práticas de Acessibilidade em HTML Compartilhe : Compartilhe :Boas Práticas de Acessibilidade em HTML A acessibilidade na web é crucial para garantir que todas as pessoas, independentemente… Compartilhe :
Delphi | Desenvolvimento de Software Compactando tabelas Paradox no Delphi Compartilhe : Compartilhe :Compactando tabelas Paradox no Delphi procedure ParadoxPack(Table : TTable); var TBDesc : CRTblDesc; hDb: hDbiDb; TablePath: array[0..dbiMaxPathLen] of char;… Compartilhe :
Delphi | Desenvolvimento de Software Como Obter Informações da BIOS no Delphi Compartilhe : Compartilhe :No Delphi, podemos acessar informações da BIOS do computador diretamente pela memória. A função abaixo retorna esses dados em… Compartilhe :
Delphi | Desenvolvimento de Software Obtendo a velocidade do processador Compartilhe : Compartilhe :function CPUSpeed: Double; const DelayTime = 500; // divide o tempo em ms var TimerHi, TimerLo: DWORD; PriorityClass, Priority:… Compartilhe :