Excel VBA - Sistema

  • - Acesso Livre
  • Documentos

    Ordenar por : Nome | Data | Acessos [ Ascendente ]

    vba sistema data e hora retorna msgbox vba sistema data e hora retorna msgbox

    popular!
    Adicionado em: 27/11/2010
    Modificado em: 27/11/2010
    Tamanho: Vazio
    Downloads: 930

    Retorna os formatos de data e hora
    Saberexcel - dicas microsoft excel vba macros

    Estas funções e declarações do aplicativo microsoft excel vba, retornam os formatos de data hora


    Declare Function GetLocaleInfo Lib "kernel32" Alias "GetLocaleInfoA" _
    (ByVal Locale As Long, ByVal LCType As Long, _
    ByVal lpLCData As String, ByVal cchData As Long) As Long

    Sub testando_formatos_dia_hora()
    MsgBox DateCourte, vbInformation, "Saberexcel - site das macros"
    MsgBox DateLongue, vbInformation, "Saberexcel - site das macros"
    MsgBox FormatoHorario, vbInformation, "Saberexcel - site das macros"
    End Sub

    Function DateCourte()
    Dim tmp$
    With Application
    tmp = .Substitute(GetParam(&H1F), "d", .International(xlDayCode))
    tmp = .Substitute(tmp, "m", .International(xlMonthCode))
    tmp = .Substitute(tmp, "y", .International(xlYearCode))
    End With
    DateCourte = tmp
    End Function

    Function DateLongue()
    Dim tmp$
    With Application
    tmp = .Substitute(GetParam(&H20), "d", .International(xlDayCode))
    tmp = .Substitute(tmp, "m", .International(xlMonthCode))
    tmp = .Substitute(tmp, "y", .International(xlYearCode))
    End With
    DateLongue = tmp
    End Function

    Function FormatoHorario()
    Dim tmp$
    With Application
    tmp = .Substitute(GetParam(&H1003), "h", .International(xlHourCode))
    tmp = .Substitute(tmp, "m", .International(xlMinuteCode))
    tmp = .Substitute(tmp, "s", .International(xlSecondCode))
    End With
    FormatoHorario = tmp
    End Function

    Private Function GetParam(LocalParam As Long) As String
    Dim buf As String
    buf = Space$(255)
    GetLocaleInfo 0, LocalParam, buf, Len(buf)
    GetParam = Application.Trim$(Mid$(buf, 1))
    End Function

    Function SepDec()
    SepDec = Application.International(xlDecimalSeparator)
    End Function

    Function SepMil()
    SepMil = Application.International(xlThousandsSeparator)
    End Function

    Faça o download do exemplo de planilha microsft excel vba



    vba sistema retira repoe barra tarefas windows vba sistema retira repoe barra tarefas windows

    popular!
    Adicionado em: 27/11/2010
    Modificado em: 27/11/2010
    Tamanho: Vazio
    Downloads: 816


    Saberexcel - O Site das Macros
    Essas macros com declarações do Aplicativo Microsoft Excel VBA, ocultam e ou mostram a barra de tarefas do Windows, ferramenta tarefa

    Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
    Public Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal x As Long, ByVal y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long

    Option Explicit
    Const SWP_HIDEWINDOW = &H80
    Const SWP_SHOWWINDOW = &H40

    Sub Ocultar_barra_tarefa_windows()
    SetWindowPos FindWindow("Shell_traywnd", ""), 0, 0, 0, 0, 0, SWP_HIDEWINDOW
    End Sub

    Sub Mostrar_barra_tarefa_windows()
    SetWindowPos FindWindow("Shell_traywnd", ""), 0, 0, 0, 0, 0, SWP_SHOWWINDOW
    End Sub


    Aprenda Aplicativo Microsoft Excel VBA ---((SaberExcel ))---



    Página 2 de 2

    PROMOÇÃO DIDÁTICOS SABEREXCEL



    Adquira já o Acesso Imediato
    à Area de Membros

    Compra Grantida --- Entrega Imediata

    Aprenda Excel VBA com Simplicidade de 
    códigos e Eficácia, Escrevendo Menos e
    Fazendo Mais.

    '-------------------------------------'
    Entrega Imediata:
    +  500 Video Aulas MS Excel VBA
    +  35.000 Planilhas Excel e VBA
    +  Coleção 25.000 Macros MS Excel VBA
    +  141 Planilhas Instruções Loops
    +  341 Planilhas WorksheetFunctions(VBA)
    +    04 Módulos Como Fazer Excel VBA
    +  Curso Completo MS Excel VBA
    +  Planilhas Inteligentes


    Pesquisa Google SaberExcel

    Publicidade Google

    <script type="text/javascript"><!--

    google_ad_client = "ca-pub-2317234650173689";

    /* retangulo 336 x 280 */

    google_ad_slot = "0315083363";

    google_ad_width = 336;

    google_ad_height = 280;

    //-->

    </script>

    <script type="text/javascript"

    src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

    </script>

    Publicidade

    RSFirewallProtected


    Google Associados

    Depoimentos

    Adicione Saberexcel Favoritos

     
     

    Aprenda tudo sobre o Aplicativo Microsoft Excel VBA

    Aprenda tudo sobre o Aplicativo Microsoft Excel VBA(Visual Basic Application), sozinho, com baixo custo, praticando com os produtos didáticos Saberexcel,


       Sobre as WorksheetFunctions Funções de Planilhas que retornam valores do VBA