Tema: Web App
Pregunta: No trabaja el Debug con mis páginas ASP.Net. Que puedo hacer..?
Respuesta:
http://www.gotdotnet.com/team/csharp...erproblems.doc
| ||||
Tema: Web App Pregunta: No trabaja el Debug con mis páginas ASP.Net. Que puedo hacer..? Respuesta: http://www.gotdotnet.com/team/csharp...erproblems.doc |
| ||||
Tema: General Pregunta: Cuales son las principales diferencias entre C# y VB.net ? Respuesta: http://www.forosdelweb.com/f29/buscas-diferencias-entre-c-vb-net-226540/ |
| ||||
Tema: Windows Forms Pregunta: Mas que pregunta es un site que contiene muchas FAQ´s acerca de windows forms (vale la pena darse una vuelta) Respuesta: http://www.syncfusion.com/FAQ/WinForms/default.asp |
| ||||
Tema: Tips and Tricks Pregunta: Como cambiar los colores de una imágen de manera dinámica: Respuesta: http://www.forosdelweb.com/f29/info-cambiar-colores-imagen-229885/
__________________ Nadie roba nada ya que en la vida todo se paga . . . Exentrit - Soluciones SharePoint & Net |
| ||||
Tema: Web App Pregunta: Como mantener el Scroll en gridlayout Panel: Respuesta: http://www.forosdelweb.com/showpost....03&postcount=4
__________________ El leer te da el poder de mejorar |
| ||||
Tema: Windows Forms Pregunta: Como llenar un combobox con un datareader (usando el clásico do while ) ? Respuesta: http://www.forosdelweb.com/showthrea...893#post816456 Última edición por RootK; 28/09/2004 a las 16:51 |
| |||
Tema: Archivo de Configuración Pregunta: ¿Como puedo modificar un .exe.config y leerlo? Respuesta: http://www.codeproject.com/Purgatory/bfackrellConfg.asp Cambiando el constructor, para pasarle el path del directorio donde esté el .exe.config ya lo tendremos resuelto.
__________________ Charlie. |
| ||||
Tema: Web App Pregunta: Como cambiar el idioma de mi página y/o de todo mi proyecto: Respuesta: http://www.forosdelweb.com/showthrea...727#post846981 |
| ||||
Tema: Web App Pregunta: Crystal Report con Stored Procedures Respuesta: http://www.forosdelweb.com/f29/crystal-reports-stored-procedures-233604/ http://www.forosdelweb.com/f29/prametros-233489/
__________________ :cool: No voy a dejar de hablarle sólo porque no me esté escuchando. Me gusta escucharme a mí mismo. Es uno de mis mayores placeres. A menudo mantengo largas conversaciones conmigo mismo, y soy tan inteligente que a veces no entiendo ni una palabra de lo que digo. Oscar Wilde |
| ||||
Tema: Tips and Tricks (Web App) Pregunta: Que necesito hacer para que pueda hacer un upload de archivos mayores a 4 megas ? Respuesta: Coloca dentro del web.config el siguiente tag: Cita: Donde tamaño proporcionas una cantidad dada en kilobytes <system.web> <httpRuntime maxRequestLength="tamaño" ... ... /> </system.web> </configuration> Ejemplo. <httpRuntime maxRequestLength="4096" /> |
| ||||
Tema: Tips and Tricks (web app) Pregunta: Como hacer para que mi browser acepte browser acepte cookies aun cuando tiene la opcion "No aceptar cookies" Respuesta: http://www.forosdelweb.com/showthrea...ies#post819338 Para mas información: http://www.codeproject.com/aspnet/cookieless.asp |
| ||||
¿Cómo maximiar una ventana en .NET? Tema: web forms y Javascript Pregunta: Cómo simular en .NET que maximizamos el form, ya sea con un botón o al cargarlo Respuesta: Hola!. Ya sé que esto va en el foro de javascript, pero estoy seguro que a todos nos ha surgido esta duda en algún momento, así que os adjunto el código que he pillado en otro foro para hacerlo. En realidad no maximiza, pero sí redimensiona todo lo posible, así que el efecto es correcto. <html> <head> <title>Untitled Document</title> <script language="JavaScript">function maximiza(){ window.moveTo(0,0); if (document.all) { top.window.resizeTo(screen.availWidth,screen.avail Height); } else if (document.layers||document.getElementById) { if (top.window.outerHeight<screen.availHeight||top.wi ndow.outerWidth<screen.availWidth){ top.window.outerHeight = screen.availHeight; top.window.outerWidth = screen.availWidth; } } </script> </head> <body> <button onclick=maximiza()>Maximizar</button> </body> </html> Al oprimir el boton la ventana se maximiza. Si deseas que la vntana se maximize al entrar , pon <body onload=maximiza()>
__________________ Pide lo que quieras...y luego paga por ello Última edición por luiscl; 08/11/2004 a las 20:42 Razón: Error en la estructura de la FAQ |
| |||
Tema: windows form Pregunta: Desarrollar menu principal en una solucion que llame a 2 aplicaciones Respuesta: Lo primero que se hace es que al no poder hacer referencia al proyecto2 pues logicamente deberia de insertar dicha referencia,entonces se inserta la referencia pero esta deberia ser en formato dll,asi que se compila el proyecto 2 como biblioteca de clases y se inserta la referencia creada.Luego se va al proyecto1 y en el menu ya se pude hacer referencia al proyecto2 y dentro del proyecto2 pues elegir el form deseado. Dim form_prueba As New WindowsApplication2.frm_produccion() form_prueba.MdiParent = Me '''si se esta llamando desde un menu en formato mdi form_prueba.Show() |
| ||||
Tema: Tips and tricks (web app) Pregunta: Como crear un calendario para incluirlo en mis páginas haciendolo con javascript Respuesta: http://www.forosdelweb.com/showthrea...=15#post866291 Última edición por RootK; 12/11/2004 a las 16:25 |
| ||||
Tema: General Pregunta: Cuales son los formatos de fecha ? (para obtener minutos, días, segundos, etc) Respuesta: http://authors.aspalliance.com/aspxt...InfoClass.aspx |
| ||||
Tema: Web App Pregunta: Como incluir archivos swf (flash) en mis páginas asp.net Respuesta: http://www.forosdelweb.com/showthrea...ash#post795231 |
| |||
¿Como puedo Leer y Escribir en el AppSettings? (VB y C#) Bueno, acá os dejo una pequeña clase que he creado: Imports System Public Class XMLConfiguracion Private FicheroConfiguracion As String Public Sub New(ByVal Fichero As String) FicheroConfiguracion = Fichero End Sub Public Function DevuelveValor(ByVal Llave As String) Dim FichXml As New Xml.XmlDocument FichXml.Load(FicheroConfiguracion & ".config") Dim Child As Xml.XmlNode = FichXml.DocumentElement.SelectSingleNode("/configuration/appSettings/add[@key=""" & Llave & """]") If Child Is Nothing Then Return Nothing Else Return Child.Attributes("value").Value End If End Function Public Function EstableceValor(ByVal Llave As String, ByVal NuevoValor As String) Dim FichXml As New Xml.XmlDocument FichXml.Load(FicheroConfiguracion & ".config") Dim Child As Xml.XmlElement = CType(FichXml.DocumentElement.SelectSingleNode("/configuration/appSettings/add[@key=""" & Llave & """]"), Xml.XmlElement) If Child Is Nothing Then Return False Else Child.Attributes("value").Value = NuevoValor FichXml.Save(FicheroConfiguracion & ".config") Return True End If End Function End Class
__________________ Charlie. |
| ||||
Tema: Windows Forms Pregunta: Como crear una máscara en mi textbox ? Respuesta: http://www.c-sharpcorner.com/Code/20...ditControl.asp
__________________ Nadie roba nada ya que en la vida todo se paga . . . Exentrit - Soluciones SharePoint & Net |
| ||||
Tema: Tips And Tricks Pregunta: Como buscar palabras que están contenidas en mis documentos de word, excel, etc. ? Respuesta: http://www.forosdelweb.com/showthrea...777#post924777 http://www.forosdelweb.com/f29/proyecto-net-pero-con-problemas-realizar-consula-index-server-278281/ Última edición por RootK; 04/04/2005 a las 10:41 |
| ||||
Visualizar todo el texto en celda Datatgrid, no sólo en modo edición Tema: Windows Forms Pregunta: Como visualizar todo el texto en la celda del datagrid, no sólo en modo edición. Respuesta: 1) Crear una clase: Cita: 2) usarlo en nuestro estilo creado:Class DataGridTextBoxColumnWrap Inherits DataGridTextBoxColumn Protected Overloads Overrides Sub Paint(ByVal g As System.Drawing.Graphics, _ ByVal bounds As System.Drawing.Rectangle, _ ByVal source As System.Windows.Forms.CurrencyManager, _ ByVal rowNum As Integer, _ ByVal backBrush As System.Drawing.Brush, _ ByVal foreBrush As System.Drawing.Brush, _ ByVal alignToRight As Boolean) Dim stringSize As SizeF Dim stringFont As Font Dim columnWidth As Integer Dim stringValue As String Dim stringDisplay As String Dim stringYCoord As Single Dim stringHeight As Single Dim stringArray As ArrayList Dim intStringLoop As Integer g.FillRectangle(backBrush, bounds) 'Paint the rectangle for the cell using the backBrush stringFont = Me.DataGridTableStyle.DataGrid.Font 'Get the font used by the column(style) columnWidth = bounds.Width 'Get the width of the column stringSize = g.MeasureString("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefg hijklmnopqrstuvwxyz1234567890", stringFont) stringHeight = stringSize.Height stringValue = GetText(source, rowNum) 'Get the text to be displayed in the cell stringArray = GetArrayList(g, stringValue, stringFont, columnWidth) For intStringLoop = 0 To stringArray.Count - 1 stringDisplay = CType(stringArray.Item(intStringLoop), String) stringYCoord = bounds.Y + (intStringLoop * stringHeight) g.DrawString(stringDisplay, stringFont, foreBrush, bounds.X, stringYCoord) Next End Sub Public Sub New() ' Initialise the object and set its default properities MyBase.New() Me.NullText = "" Me.ReadOnly = True End Sub Protected Overloads Overrides Sub Edit(ByVal source As CurrencyManager, ByVal rowNum As Integer, ByVal bounds As Rectangle, ByVal readOnly1 As Boolean, ByVal instantText As String, ByVal cellIsVisible As Boolean) ' This particular column will always be readonly and non-editable - therefore do not pass the event over Return End Sub #Region "Helper Methods" Function GetText(ByVal source As System.Windows.Forms.CurrencyManager, _ ByVal rowNum As Integer) As String Dim objValue As Object = GetColumnValueAtRow(source, rowNum) If objValue Is System.DBNull.Value Then Return Me.NullText Else Return CType(objValue, String) End If End Function Function GetArrayList(ByVal g As Graphics, ByVal stringValue As String, _ ByVal stringFont As Font, ByVal columnWidth As Integer) As ArrayList Dim intCurrentChar As Integer Dim stringCurrentChar As String Dim stringDisplay As String Dim intSpace As Integer Dim stringSize As SizeF Dim stringArray As New ArrayList Do Until stringValue = "" For intCurrentChar = 0 To stringValue.Length - 1 stringCurrentChar = stringValue.Substring(intCurrentChar, 1) stringSize = g.MeasureString(stringDisplay & stringCurrentChar, stringFont) If stringSize.Width <= columnWidth Then stringDisplay &= stringCurrentChar If intCurrentChar = stringValue.Length - 1 Then stringArray.Add(stringDisplay) stringDisplay = "" stringValue = "" Exit For End If Else 'Figure out where the first space preceding this location is... intSpace = stringDisplay.LastIndexOf(" ") If intSpace >= 0 Then 'we found the last space intCurrentChar = intSpace + 1 stringDisplay = stringDisplay.Substring(0, intSpace + 1) stringArray.Add(stringDisplay) stringDisplay = "" stringValue = stringValue.Substring(intCurrentChar) Exit For Else stringArray.Add(stringDisplay) stringDisplay = "" stringValue = stringValue.Substring(intCurrentChar) Exit For End If End If Next Loop Return stringArray End Function #End Region End Class Cita: Dim tb4 As DataGridTextBoxColumnWrap tb4 = New DataGridTextBoxColumnWrap tb4.HeaderText = "Item Description" tb4.MappingName = "text" tb4.NullText = "" tb4.Width = 140 tb4.ReadOnly = True ts.GridColumnStyles.Add(tb4) |
| |||
Tema: Windows Form Pregunta: Como saber automaticamente mi direccion ip y el host de cualquier puesto atraves de su ip Respuesta: Código PHP: Código PHP: |
| ||||
Tema: General Pregunta: como puedo hacer un SMPT directo sin utilizar el que trae por default el framework. Respuesta: http://www.forosdelweb.com/f29/hacer-smtp-directo-264937/ |
| |||
Tema: Windows form Pregunta: como puedo imprimir una plantilla de word automaticamente Respuesta: Dim Ruta As String Ruta = AppPath() & "\prueba.doc" Dim MSWord As New Word.Application Dim Documento As Word.Document MSWord.Documents.Open(Ruta) MSWord.ActiveDocument.PrintOut() MSWord.Documents.Close() MSWord.Quit() End sub 'Funcion AppPatch creada por el Guille Public Function AppPath( _ Optional ByVal backSlash As Boolean = False _ ) As String Dim s As String = IO.Path.GetDirectoryName( _ GetExecutingAssembly.GetCallingAssembly.GetName.Co deBase.ToString) ' si hay que añadirle el backslash If backSlash Then s &= "\" End If Return s End Function |
| ||||
Tema: Web Applications Pregunta: Como puedo regresar la fecha de un calendario a un textbox usando una popup. Respuesta: http://www.forosdelweb.com/f29/regresar-fecha-calendario-popup-276207/#post994422 |
| ||||
Tema: General Pregunta: Como generer reportes en PDF´s Respuesta: http://www.forosdelweb.com/f29/crear-reportes-formato-pdf-277791/ |
| ||||
Tema: Design Patterns Pregunta: Donde encontrar los applications Block Respuesta: http://www.microsoft.com/resources/practices/code.mspx |
| ||||
Tema: Web Forms Pregunta: Cuando usar un DataList, un Datagrid o un Repeater ? Respuesta: http://www.forosdelweb.com/f29/datagrid-datalist-repeater-cuando-usarlos-280199/ |
| ||||
Ejemplos sencillos pero útiles con asp.net Tema: Tips and tricks. Respuesta: http://www.elquintero.net/codigof.aspx?Cat=1&SubCat=2 |
| ||||
Tema: Web app Pregunta: Como crear una carpeta virtual en el IIS por código ? Respuesta: http://www.forosdelweb.com/f29/crear-carpeta-virtual-iis-codigo-288256/ |
Etiquetas: |