Saturday, September 17, 2011
ASP.NET:: Maestro Detalle
Referencias:
[1] http://tydw.wordpress.com/2008/02/14/asp-net-formulario-maestro-detalle-aplicable-a-vb-y-c/
[2] http://sqlserversamples.codeplex.com/
[3]http://www.asp.net/data-access/tutorials/using-the-formview-s-templates-cs
[1] http://tydw.wordpress.com/2008/02/14/asp-net-formulario-maestro-detalle-aplicable-a-vb-y-c/
[2] http://sqlserversamples.codeplex.com/
[3]http://www.asp.net/data-access/tutorials/using-the-formview-s-templates-cs
Wednesday, September 14, 2011
Creating .XLS and .XLSX with C#
Code samples:
Visual Studio 2008 C# ASP.NET MVC Web Application
http://sites.google.com/site/leniel/blog/ExcelWriterMvcProject.zip
References:
ExcelPackage: Office Open XML Format file creation
http://excelpackage.codeplex.com/
ExcelPackage binaries download
http://excelpackage.codeplex.com/Release/ProjectReleases.aspx
NPOI
http://npoi.codeplex.com/
Visual Studio 2008 C# ASP.NET MVC Web Application
http://sites.google.com/site/leniel/blog/ExcelWriterMvcProject.zip
References:
ExcelPackage: Office Open XML Format file creation
http://excelpackage.codeplex.com/
ExcelPackage binaries download
http://excelpackage.codeplex.com/Release/ProjectReleases.aspx
NPOI
http://npoi.codeplex.com/
Manual del Conductor
http://www.drtcsanmartin.gob.pe/documentos/manual_conductor/
http://www.mtc.gob.pe/portal/normas_transito/BALOTARIO.pdf
http://www.touringperu.com.pe/info/codigo_transito/balotario.pdf
Accidente Rey latino Bateas Caylloma
https://www.hbanoticias.com/arequipa-volcadura-de-bus-rey-latino-deja-un-fallecido-y-29-heridos-en-caylloma-relacion-de-heridos/
http://www.mtc.gob.pe/portal/normas_transito/BALOTARIO.pdf
http://www.touringperu.com.pe/info/codigo_transito/balotario.pdf
Accidente Rey latino Bateas Caylloma
https://www.hbanoticias.com/arequipa-volcadura-de-bus-rey-latino-deja-un-fallecido-y-29-heridos-en-caylloma-relacion-de-heridos/
Friday, September 09, 2011
Wednesday, September 07, 2011
Saturday, September 03, 2011
ASP.NET::Error de la validación del estado de vista MAC.
Agregar en el archivo web.config lo siguiente:
<pages enableviewstatemac="false">
<pages enableviewstatemac="false">
Friday, September 02, 2011
Tuesday, August 30, 2011
Bakup SQL Server 2008 to SQL Server 2005
http://www.hyper-v-mart.com/HowTo/Convert_SQL_Server_2008_to_SQL_Server_2005.aspx
Resources:
[1]Microsoft SQL Server 2005 Express Edition Toolkit (223.9 MB)
http://go.microsoft.com/fwlink/?LinkId=65111
Resources:
[1]Microsoft SQL Server 2005 Express Edition Toolkit (223.9 MB)
http://go.microsoft.com/fwlink/?LinkId=65111
Saturday, August 20, 2011
Wednesday, August 10, 2011
Power Builder::Tips
DropDown ListBox
http://kell-developer.blogspot.com/2009/09/cargar-una-tabla-un-dropdownlistbox-de.html
Clear datawindow
long ll_i, ll_rc
ll_rc = dw_1.RowCount()
for ll_i = 1 to ll_rc
dw_1.deleterow(1)
next
dw_1.AcceptText()
dw_1.Update(True, True)
--or--
dw_1.Reset() //will never delete the rows from DB, It will just clear the datawindow buffers.
Work with dates
========================================================
dt_today = today()
li_maand = month(dt_today )
li_jaar = year(dt_today )
li_dag = day(dt_today )
apply filter
========================================================
ls_filtro = "columna1 > 100 and columna2 > 30"
dw_1.SetFilter(ls_filtro)
dw_1.Filter( )
references
[0] http://powerbuilder-undiaalavez.blogspot.com/
[1] Tutorial Power Builder 9.0 http://edyovando.galeon.com/INICIO.HTML
[2] Trucos datawin
http://infolenguajes.galeon.com/datawin.htm
[3] http://kell-developer.blogspot.com/2009/09/cargar-una-tabla-un-dropdownlistbox-de.html
[4] List of Functions Available in Datawindow Expressions
http://pbbraindump.wordpress.com/2008/05/15/list-of-functions-available-in-datawindow-expressions/
[5] http://solocodigofuente.com/ejemplos-de-codigo-fuente-en-visual-basic-net/uso-del-control-dropdownlistbox-listbox-listview-de-power-builder/
[6] http://powerbuilder-undiaalavez.blogspot.com/2011_02_01_archive.html
http://ingpcastillo.com/personal/Manual/MANUAL_DE_POWER_BUILDER.pdf
http://sergioor.blogspot.com/2008/02/funciones-principales-de-un-datawindows.html
http://www.todoexpertos.com/categorias/tecnologia-e-internet/programacion/power-builder/respuestas/2317534/datawindows-avanzado
http://sergioor.blogspot.com/2008/02/funciones-principales-de-un-datawindows.html
http://es.scribd.com/doc/6878574/Powerbuilderuso-de-Cursores
http://groups.google.com/group/sybase.public.powerbuilder.database/browse_thread/thread/159c2bf7ef4f114e?pli=1
http://kell-developer.blogspot.com/2009/09/cargar-una-tabla-un-dropdownlistbox-de.html
Clear datawindow
long ll_i, ll_rc
ll_rc = dw_1.RowCount()
for ll_i = 1 to ll_rc
dw_1.deleterow(1)
next
dw_1.AcceptText()
dw_1.Update(True, True)
--or--
dw_1.Reset() //will never delete the rows from DB, It will just clear the datawindow buffers.
Work with dates
========================================================
dt_today = today()
li_maand = month(dt_today )
li_jaar = year(dt_today )
li_dag = day(dt_today )
apply filter
========================================================
ls_filtro = "columna1 > 100 and columna2 > 30"
dw_1.SetFilter(ls_filtro)
dw_1.Filter( )
references
[0] http://powerbuilder-undiaalavez.blogspot.com/
[1] Tutorial Power Builder 9.0 http://edyovando.galeon.com/INICIO.HTML
[2] Trucos datawin
http://infolenguajes.galeon.com/datawin.htm
[3] http://kell-developer.blogspot.com/2009/09/cargar-una-tabla-un-dropdownlistbox-de.html
[4] List of Functions Available in Datawindow Expressions
http://pbbraindump.wordpress.com/2008/05/15/list-of-functions-available-in-datawindow-expressions/
[5] http://solocodigofuente.com/ejemplos-de-codigo-fuente-en-visual-basic-net/uso-del-control-dropdownlistbox-listbox-listview-de-power-builder/
[6] http://powerbuilder-undiaalavez.blogspot.com/2011_02_01_archive.html
http://ingpcastillo.com/personal/Manual/MANUAL_DE_POWER_BUILDER.pdf
http://sergioor.blogspot.com/2008/02/funciones-principales-de-un-datawindows.html
http://www.todoexpertos.com/categorias/tecnologia-e-internet/programacion/power-builder/respuestas/2317534/datawindows-avanzado
http://sergioor.blogspot.com/2008/02/funciones-principales-de-un-datawindows.html
http://es.scribd.com/doc/6878574/Powerbuilderuso-de-Cursores
http://groups.google.com/group/sybase.public.powerbuilder.database/browse_thread/thread/159c2bf7ef4f114e?pli=1
Friday, August 05, 2011
SQL Server::Collation
SQL Server::Identificar versión y edición
Cómo determinar la versión de SQL Server
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
SELECT @@VERSION
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
SELECT @@VERSION
Friday, July 22, 2011
Wednesday, July 20, 2011
Obtener operador al cual pertenece el número telefónico (fijo)
Obtener operador al cual pertenece el número telefónico (fijo)
Lima
http://www.mtc.gob.pe/portal/comunicacion/concesion/registros/numeracion/fija/lima.pdf
Provincias
http://www.mtc.gob.pe/portal/comunicacion/concesion/registros/numeracion/fija/prov.pdf
Obtener cantidad de numeros por DNI (Claro moviles)
http://www.claro.com.pe/wps/portal/pe/pc/hogar/movil/prepago
Lima
http://www.mtc.gob.pe/portal/comunicacion/concesion/registros/numeracion/fija/lima.pdf
Provincias
http://www.mtc.gob.pe/portal/comunicacion/concesion/registros/numeracion/fija/prov.pdf
Obtener cantidad de numeros por DNI (Claro moviles)
http://www.claro.com.pe/wps/portal/pe/pc/hogar/movil/prepago
Saturday, July 16, 2011
Wednesday, July 13, 2011
php photo gallery::without database
http://phpgraphy.sourceforge.net/
http://www.sgal.org/
http://sourceforge.net/projects/ifoto/
http://yapig.sourceforge.net/
http://qdig.sourceforge.net/
http://www.sgal.org/
http://sourceforge.net/projects/ifoto/
http://yapig.sourceforge.net/
http://qdig.sourceforge.net/
Tuesday, July 12, 2011
Remove Administrator Password on Windows (Remover contraseña de Administrador)
Thursday, July 07, 2011
Tuesday, June 28, 2011
C.C. Catch::You Shot A Hole In My Soul
He's a midnight dream romancer
He's the only lonely dancer
Oh, only love breaks my heart
He's the nearest thing to heaven
Stole my heart and tried to say then
Oh, only love breaks my heart
You shot a hole in my soul
It's the kind out of love I know
You shot a hole in my soul
Hold on tight, don't let go
You get always what you want from me
You can make it easy, can't you see
You shot a hole, hole, hole
Hole in my soul
Dreams go on forever and ever
Good things do not last forever
Heaven can wait but I can't
But I'd do it once again, babe
I think tomorrow it's too late, babe
Oh, only love breaks my heart
He's the only lonely dancer
Oh, only love breaks my heart
He's the nearest thing to heaven
Stole my heart and tried to say then
Oh, only love breaks my heart
You shot a hole in my soul
It's the kind out of love I know
You shot a hole in my soul
Hold on tight, don't let go
You get always what you want from me
You can make it easy, can't you see
You shot a hole, hole, hole
Hole in my soul
Dreams go on forever and ever
Good things do not last forever
Heaven can wait but I can't
But I'd do it once again, babe
I think tomorrow it's too late, babe
Oh, only love breaks my heart
Subscribe to:
Posts (Atom)
-
Resources: [1] Hela https://ome.grc.nia.nih.gov/iicbu2008/hela/index.html
-
en inglés se llama “A potentially dangerous Request.Form value was detected from the client”. varias páginas indican dos cosas: 1. agrega...
-
mas plugins http://devsnippets.com/reviews/using-jquery-to-style-design-elements-20-impressive-plugins.html http://www.extjs.com/deploy/dev/...
Odoo 17 - Custom adds
[1] Diario/Seq https://apps.odoo.com/apps/modules/17.0/sequence_for_journal