Clase Botón

27/10/2004 - 19:54 por David Fúnez | Informe spam
Hola;

Estoy tratando de que la propiedad "Bold" de la clase botón sea TRUE, pero
no me acepta lo que indico, importo lo siguientes componenentes en la clase:

Imports System.Windows.Form
Imports System.Drawing
Imports System.Drawing.Font

he probado:
Bold = True
Font.Bold = True
Font.Style = FontStyle.Bold
Font.Style.Bold()

' Clase Botón
Public Class MiBoton
Inherits Button
Public Sub New()
' AQUI VA EL CODIGO PARA BOLD=TRUE
MyBase.New()
Text = "mi botón"
Width = 65
Height = 23
FlatStyle = FlatStyle.System
End Sub
End Class

De antemano muchas gracias.

David Fúnez
Tegucigalpa, Honduras

"La Piratería Mata Las Ideas"
Desarrollador Cinco Estrellas Visual FoxPro

Preguntas similare

Leer las respuestas

#1 David Fúnez
27/10/2004 - 20:52 | Informe spam
Perdón, el código para BOLD=TRUE va después del MyBase.New().

Gracias

David Fúnez
Tegucigalpa, Honduras

"La Piratería Mata Las Ideas"
Desarrollador Cinco Estrellas Visual FoxPro


"David Fúnez" wrote in message
news:
Hola;

Estoy tratando de que la propiedad "Bold" de la clase botón sea TRUE, pero
no me acepta lo que indico, importo lo siguientes componenentes en la


clase:

Imports System.Windows.Form
Imports System.Drawing
Imports System.Drawing.Font

he probado:
Bold = True
Font.Bold = True
Font.Style = FontStyle.Bold
Font.Style.Bold()

' Clase Botón
Public Class MiBoton
Inherits Button
Public Sub New()
' AQUI VA EL CODIGO PARA BOLD=TRUE
MyBase.New()
Text = "mi botón"
Width = 65
Height = 23
FlatStyle = FlatStyle.System
End Sub
End Class

De antemano muchas gracias.

David Fúnez
Tegucigalpa, Honduras

"La Piratería Mata Las Ideas"
Desarrollador Cinco Estrellas Visual FoxPro



Respuesta Responder a este mensaje
#2 Douglas Alarcón
27/10/2004 - 21:23 | Informe spam
Me parece que la fuentes tienes que usarlo como clase, o sea,

Public Class MiBoton
Inherits Button
Public Sub New()
MyBase.New()
Text = "mi botón"
Width = 65
Height = 23
FlatStyle = FlatStyle.System

' ***********************
me.Font = New Font(me.Font, FontStyle.Bold)

' ***********************

End Sub
End Class



"David Fúnez" escribió en el mensaje
news:
Perdón, el código para BOLD=TRUE va después del MyBase.New().

Gracias

David Fúnez
Tegucigalpa, Honduras

"La Piratería Mata Las Ideas"
Desarrollador Cinco Estrellas Visual FoxPro


"David Fúnez" wrote in message
news:
> Hola;
>
> Estoy tratando de que la propiedad "Bold" de la clase botón sea TRUE,


pero
> no me acepta lo que indico, importo lo siguientes componenentes en la
clase:
>
> Imports System.Windows.Form
> Imports System.Drawing
> Imports System.Drawing.Font
>
> he probado:
> Bold = True
> Font.Bold = True
> Font.Style = FontStyle.Bold
> Font.Style.Bold()
>
> ' Clase Botón
> Public Class MiBoton
> Inherits Button
> Public Sub New()
> ' AQUI VA EL CODIGO PARA BOLD=TRUE
> MyBase.New()
> Text = "mi botón"
> Width = 65
> Height = 23
> FlatStyle = FlatStyle.System
> End Sub
> End Class
>
> De antemano muchas gracias.
>
> David Fúnez
> Tegucigalpa, Honduras
>
> "La Piratería Mata Las Ideas"
> Desarrollador Cinco Estrellas Visual FoxPro
>
>
>


Respuesta Responder a este mensaje
#3 Jorge Serrano [MVP VB]
27/10/2004 - 21:25 | Informe spam
Hola David,

prueba algo parecido a:

Public Class MiBoton
Inherits Button
Private MiFuente As New Font("Verdana", 8, FontStyle.Bold)
Public Sub New()
' AQUI VA EL CODIGO PARA BOLD=TRUE
MyBase.New()
Text = "mi botón"
Width = 65
Height = 23
FlatStyle = FlatStyle.System
Font = MiFuente
End Sub
End Class


Un saludo,

Jorge Serrano Pérez
MVP VB.NET

"David Fúnez" wrote:

Hola;

Estoy tratando de que la propiedad "Bold" de la clase botón sea TRUE, pero
no me acepta lo que indico, importo lo siguientes componenentes en la clase:

Imports System.Windows.Form
Imports System.Drawing
Imports System.Drawing.Font

he probado:
Bold = True
Font.Bold = True
Font.Style = FontStyle.Bold
Font.Style.Bold()

' Clase Botón
Public Class MiBoton
Inherits Button
Public Sub New()
' AQUI VA EL CODIGO PARA BOLD=TRUE
MyBase.New()
Text = "mi botón"
Width = 65
Height = 23
FlatStyle = FlatStyle.System
End Sub
End Class

De antemano muchas gracias.

David Fúnez
Tegucigalpa, Honduras

"La Piratería Mata Las Ideas"
Desarrollador Cinco Estrellas Visual FoxPro




Respuesta Responder a este mensaje
#4 David Fúnez
27/10/2004 - 21:43 | Informe spam
Muchas gracias, funcionó Ok.

Pero siento que para ciertas cosas VB.NET le da muchas vueltas al asunto.

David Fúnez
Tegucigalpa, Honduras

"La Piratería Mata Las Ideas"
Desarrollador Cinco Estrellas Visual FoxPro


"Douglas Alarcón" wrote in message
news:
Me parece que la fuentes tienes que usarlo como clase, o sea,

Public Class MiBoton
Inherits Button
Public Sub New()
MyBase.New()
Text = "mi botón"
Width = 65
Height = 23
FlatStyle = FlatStyle.System

' ***********************
me.Font = New Font(me.Font, FontStyle.Bold)

' ***********************

End Sub
End Class



"David Fúnez" escribió en el mensaje
news:
> Perdón, el código para BOLD=TRUE va después del MyBase.New().
>
> Gracias
>
> David Fúnez
> Tegucigalpa, Honduras
>
> "La Piratería Mata Las Ideas"
> Desarrollador Cinco Estrellas Visual FoxPro
>
>
> "David Fúnez" wrote in message
> news:
> > Hola;
> >
> > Estoy tratando de que la propiedad "Bold" de la clase botón sea TRUE,
pero
> > no me acepta lo que indico, importo lo siguientes componenentes en la
> clase:
> >
> > Imports System.Windows.Form
> > Imports System.Drawing
> > Imports System.Drawing.Font
> >
> > he probado:
> > Bold = True
> > Font.Bold = True
> > Font.Style = FontStyle.Bold
> > Font.Style.Bold()
> >
> > ' Clase Botón
> > Public Class MiBoton
> > Inherits Button
> > Public Sub New()
> > ' AQUI VA EL CODIGO PARA BOLD=TRUE
> > MyBase.New()
> > Text = "mi botón"
> > Width = 65
> > Height = 23
> > FlatStyle = FlatStyle.System
> > End Sub
> > End Class
> >
> > De antemano muchas gracias.
> >
> > David Fúnez
> > Tegucigalpa, Honduras
> >
> > "La Piratería Mata Las Ideas"
> > Desarrollador Cinco Estrellas Visual FoxPro
> >
> >
> >
>
>


Respuesta Responder a este mensaje
#5 David Fúnez
27/10/2004 - 21:44 | Informe spam
Gracias por la ayuda.

David Fúnez
Tegucigalpa, Honduras

"La Piratería Mata Las Ideas"
Desarrollador Cinco Estrellas Visual FoxPro


"Jorge Serrano [MVP VB]"
wrote in
message news:
Hola David,

prueba algo parecido a:

Public Class MiBoton
Inherits Button
Private MiFuente As New Font("Verdana", 8, FontStyle.Bold)
Public Sub New()
' AQUI VA EL CODIGO PARA BOLD=TRUE
MyBase.New()
Text = "mi botón"
Width = 65
Height = 23
FlatStyle = FlatStyle.System
Font = MiFuente
End Sub
End Class


Un saludo,

Jorge Serrano Pérez
MVP VB.NET

"David Fúnez" wrote:

> Hola;
>
> Estoy tratando de que la propiedad "Bold" de la clase botón sea TRUE,


pero
> no me acepta lo que indico, importo lo siguientes componenentes en la


clase:
>
> Imports System.Windows.Form
> Imports System.Drawing
> Imports System.Drawing.Font
>
> he probado:
> Bold = True
> Font.Bold = True
> Font.Style = FontStyle.Bold
> Font.Style.Bold()
>
> ' Clase Botón
> Public Class MiBoton
> Inherits Button
> Public Sub New()
> ' AQUI VA EL CODIGO PARA BOLD=TRUE
> MyBase.New()
> Text = "mi botón"
> Width = 65
> Height = 23
> FlatStyle = FlatStyle.System
> End Sub
> End Class
>
> De antemano muchas gracias.
>
> David Fúnez
> Tegucigalpa, Honduras
>
> "La Piratería Mata Las Ideas"
> Desarrollador Cinco Estrellas Visual FoxPro
>
>
>
>
email Siga el debate Respuesta Responder a este mensaje
Ads by Google
Help Hacer una preguntaRespuesta Tengo una respuesta
Search Busqueda sugerida