lunes, 2 de noviembre de 2009
bajar un archivo de forma simple con vb.net
miércoles, 23 de septiembre de 2009
clase customizada de membership no accede al CreateUser
Como obtener el path de inicio desde global.asax
lunes, 14 de septiembre de 2009
Validar valor de un control custom
Public ReadOnly Property Message() As String
Get
Return "My Message"
End Get
End Property
End Class
viernes, 28 de agosto de 2009
Obtener nombre de usuario logueado en un control ascx
como obtener el connection string a traves del nombre
miércoles, 26 de agosto de 2009
MultiView cannot have children of type 'Literal'. It can only have children of type View
Crear Ventana modal para IE y Firefox
lunes, 24 de agosto de 2009
Obtener ultimo id del registro creado en una tabla en SQL Server
viernes, 21 de agosto de 2009
Debo dar dos clicks al boton de cancelar dentro de un ModalPopupExtender para que ejecute
Aparentemente en un modalpopupextender tener validaciones trae problemas y no permite que se ejecuten los botones respectivos.
El Click de un boton en un ModalPopupExtender no funciona
jueves, 6 de agosto de 2009
salir de una ventana modal en .net
Sys.WebForms.PageRequestManagerParserErrorExcepti on: The message received
from the server could not be parsed. Common causes for this error are when
the response is modified by calls to Response.Write(), response filters,
HttpModules, or server trace is enabled
lunes, 1 de junio de 2009
Betfair is the trading name of The Sporting Exchange Ltd.It is the world's biggest betting exchange, with 20% better odds than traditional bookmakers, and a recipient of the Queen's Award for Enterprise.
The Sporting Exchange Limited is registered as a limited liability company in England and Wales, company number 3770548. The Sporting Exchange Limited was founded in August 1999 by Andrew Black and Edward Wray in order to commercialise proprietary betting technology that had been under development for the preceding year.
The technology used by The Sporting Exchange Limited is proprietary and, as well as being protected by copyright, is the subject of several patent applications that have been filed with various jurisdictions.
miércoles, 4 de febrero de 2009
capturar evento de una clase
AddHandler claseExterna.GenerarError, AddressOf metodoGenerarErrorLocal
El metodo que reciba el evento debe tener los parametros necesarios para recibir los datos que envia el evento con los tipos de datos correctos
martes, 3 de febrero de 2009
Name 'ProfileCommon' is not declared
Un ejemplo de declaracion dentro del web.config es (dentro de la seccion system.web):
<profile>
<properties>
<add name="Nombre">
<add name="Apellido">
</properties>
</profile>
ConfigurationManager no esta declarado
- Primero ir a Add Reference del proyecto y agregar una referencia de .Net a System.configuration
- Luego agregar una referencia en la clase en la que se necesita a:
imports System.Configuration
miércoles, 28 de enero de 2009
Insertar imagen en celda de excel con vb.net
Dim imagen = objExcelWks.Pictures.Insert(rutaImagen)
Dim cell = objExcelWks.Cells(coordenadas.First, coordenadas.Second)
'Centro en ancho
Dim ancho As Double = cell.Offset(0, 1).Left - cell.Left
imagen.Left = cell.Left + ancho / 2 - imagen.Width / 2
If imagen.Left < 1 Then imagen.Left = 1
'Centro en alto
Dim alto As Double = cell.Offset(1, 0).Top - cell.Top
imagen.Top = cell.Top + alto / 2 - imagen.Height / 2
If imagen.Top < 1 Then imagen.Top = 1
liberarObjeto(imagen)
liberarObjeto(cell)
End Sub
Liberar memoria objeto COM vb.net
Private Sub liberarObjeto(ByVal objeto As Object)
Try
System.Runtime.InteropServices.Marshal.ReleaseComObject(objeto)
objeto = Nothing
Catch ex As Exception
objeto = Nothing
End Try
End Sub
Como liberar la memoria acumulada por el vb.net
GC.Collect()
manejar o capturar eventos a una funcion en vb.net
AddHandler Clase1.ejecutar, addressof Actualizar
sub Actualizar()
' Poner alguna accion que se quiera ejecutar
end sub
viernes, 23 de enero de 2009
Obtener nombre pagina actual
string pagina = (New System.IO.FileInfo(Page.Request.Url.AbsolutePath)).Name
miércoles, 7 de enero de 2009
Implementar, declarar y lanzar eventos en vb.net
1) Declararlo
Public Event evento as EventHandler
o
Public Event evento(objeto as Control, Cancelar as Boolean)
2) Lanzarlo
dim cancelar as boolean
RaiseEvent evento(me, cancelar)
Como crear una clase que se valide con un validator
Public Class Test
'...
Public Property Valor() As Integer
Get
Return _Valor
End Get
Set(ByVal value As Integer)
_Valor= value
End Set
End Property
End Class
Como aplicar un TargetControl a una clase
Public Class Test
'...
End Class