15 49.0138 8.38624 1 0 4000 1 https://www.alexmedina.net 300 true 0
.Net

ASP.NET AJAX UpdatePanel ScriptManager – Dirigir el Foco hacia un Control

0 Comments
Tradicionalmente cuando queremos dirigir el foco hacia un control hacemos esto: Control.focus(); PERO si trabajamos con ASP.NET AJAX con un ScriptManager y un UpdatePanel al hacer postback asincrono el UpdatePanel , pierde el foco, para que esto no ocurra insertamos esta linea de codigo para lograr tener el foco donde queramos. ScriptManager scriptManager = ScriptManager.GetCurrent(this.Page);…

String Format for Double [C#]

0 Comments
The following examples show how to format float numbers to string in C#. You can use static method String.Format or instance methods double.ToString and float.ToString. Digits after decimal point This example formats double to string with fixed number of decimal places. For two decimal places use pattern „0.00“. If a float number has less decimal…

Modificar el informe Crystal Reports por código (VB.Net)

9 Comments
Imports CrystalDecisions.CrystalReports.Engine Public Class Form1 '.... Private Sub btnInforme_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles btnInforme.Click Dim oInforme As New rptOrders() Dim oCampoInforme As TextObject Dim oDatosInforme As SummaryInfo ' modificar títulos de columnas del informe (campos de texto) oCampoInforme = oInforme.ReportDefinition.ReportObjects.Item("Text1") oCampoInforme.Text = "Pedido" oCampoInforme = oInforme.ReportDefinition.ReportObjects.Item("Text2") oCampoInforme.Text = "Cliente" oCampoInforme…