1 / 12

FUNCIONES ESPECIALES EN VISUAL BASIC

FUNCIONES ESPECIALES EN VISUAL BASIC. LUIS OCTAVIO BUSTAMANTE DOCENTE TECNOLOGÍA E INFORMÁTICA COLEGIO DE LA UPB. FUNCIÓN TÍTULO (TITLE). Se utiliza para agregar texto en la barra de título de la consola de Visual Basic. Estructura:. Module Module1 Sub Main ()

Télécharger la présentation

FUNCIONES ESPECIALES EN VISUAL BASIC

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. FUNCIONES ESPECIALESEN VISUAL BASIC LUIS OCTAVIO BUSTAMANTE DOCENTE TECNOLOGÍA E INFORMÁTICA COLEGIO DE LA UPB

  2. FUNCIÓN TÍTULO (TITLE) Se utiliza para agregar texto en la barra de título de la consola de Visual Basic. Estructura: ModuleModule1 SubMain() DimZ As String Z= “BIENVENIDOS” Console.Title=Z Dim Z As String Z= “BIENVENIDOS” Console.title=Z

  3. FUNCIÓN TÍTULO (TITLE)

  4. FUNCIÓN SONIDO (BEEP) Se utiliza para agregar un sonido corto al programa. Estructura: ModuleModule1 SubMain() Console.Beep() Console.Beep()

  5. FUNCIÓN COLOR DE FONDOBACKGROUNDCOLOR Se utiliza para colocar un color de fondo a la ventana de la consola de visual basic. Debe agregarse al final de la función un clear para que borre el color anterior y tome el actual. Estructura: Console.backgroundcolor=Consolecolor.White Console.clear

  6. FUNCIÓN COLOR DE FONDOBACKGROUNDCOLOR

  7. FUNCIÓN COLOR DE LETRAFOREGROUNDCOLOR Se utiliza para colocar un color a la letra. Estructura: Console.Foregroundcolor=Consolecolor.White

  8. FUNCIÓN COLOR DE LETRA FOREGROUNDCOLOR

  9. Module Module1 Sub Main() Dimopc As Integer DimZ As String Z= “BIENVENIDOS” Console.Title = Z Console.Beep() Console.BackgroundColor =ConsoleColor.Magenta Console.ForegroundColor =ConsoleColor.Black Console.Clear

  10. CIBERGRAFÍA http://aulaclic.es/visualbasic/spr_12_2_1.htm http://informaticaydesarrollo.blogspot.com/2012/04/tutorial-aplicacion-de-consola-en.html http://mariateresavirtual.jimdo.com/grado-d%C3%A9cimo/material-gr%C3%A1fico-visual-basic/ http://msdn.microsoft.com/es-co/library/sect4ck6.aspx http://ugb.edu.sv/visual-basic.html

More Related