Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
V

VMSSanthosh

@VMSSanthosh
About
Posts
22
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Crystal Reports
    V VMSSanthosh

    i too faced the same problem.. export that report then u will find those in that exported pdf's i think its a bug of crystal reports.. u can achieve it in one more way also insert one more section .. place the image in the first section and in section expert check underlay following sections.. place the chart in the next section.. make sure both the sections are same height.. but this also will not help u.. since i have already tried..

    VMSSanthosh

    ASP.NET csharp visual-studio design help

  • Performance Issue with Crystal Reports and ASP.Net
    V VMSSanthosh

    u have to set the timeout property of ur connection info for ur connection info object like this... Dim attrib As DbConnectionAttributes attrib = connInfo.Attributes attrib.Collection.Add(New NameValuePair2("Connection Timeout", "50"))

    VMSSanthosh

    ASP.NET csharp help asp-net database visual-studio

  • GotDotNet example
    V VMSSanthosh

    http://forums.asp.net/thread/1409803.aspx i think this link may be helpful to u.. Regards Vmssanthosh

    VMSSanthosh

    ASP.NET tutorial com question

  • maintain viewstate of materpage control irrespective of child content page
    V VMSSanthosh

    no its not possible.. to do like that u can play with session

    VMSSanthosh

    ASP.NET question

  • IFRAME
    V VMSSanthosh

    can u explain me what actually u hav to do..

    VMSSanthosh

    ASP.NET question

  • Web Project design problem.
    V VMSSanthosh

    hello u forget to set the autopostback property of the checkbox control... chkAutoPostBack = true; VMSSanthosh

    VMSSanthosh

    ASP.NET csharp visual-studio design help question

  • Runtime Scrollbar in Datagrid
    V VMSSanthosh

    VMSSanthosh

    ASP.NET question

  • Runtime Scrollbar in Datagrid
    V VMSSanthosh

    what why u need javascript for this.. no need of javascript.. just place the datagrid inside div tag

    VMSSanthosh

    ASP.NET question

  • how to change the dsn name in existing crystal reports
    V VMSSanthosh

    is there is any database logon procedure in ur reports ... if not write it first. check this link http://forums.asp.net/thread/1474850.aspx

    VMSSanthosh

    ASP.NET database sql-server sysadmin help tutorial

  • Runtime Scrollbar in Datagrid
    V VMSSanthosh

    its not possible to add scroll bar to a datagrid.. u can do it by placing the datagrid inside div tag and set the style attribute as style="overflow:auto"

    VMSSanthosh

    ASP.NET question

  • DropDownList autocomplete
    V VMSSanthosh

    i too need the same if u got any ideas means just let me know plz.. VMSSanthosh

    Web Development csharp asp-net question

  • can not start debugging on web server
    V VMSSanthosh

    open ur iis manager and check ur system name is there or not if not reinstall iis and then open visual studio command prompt on that run aspnet_regiis -i VMSSanthosh

    C# help sysadmin windows-admin

  • Hi solve this html problem in dynamic control creation
    V VMSSanthosh

    place a panel control before the button.. add the textboxes to that panel ur problem will be solved VMSSanthosh

    ASP.NET help html design question

  • CrystolReports
    V VMSSanthosh

    hey whats ur problem u want to study some report concepts means prepare from some books dont post VMSSanthosh

    C# csharp asp-net tutorial

  • Return Confirm
    V VMSSanthosh

    actually whats ur problem confirm is used for some client side scripting. its a message box like alert. VMSSanthosh

    ASP.NET csharp asp-net tutorial question

  • Displaying data from text file to dataset
    V VMSSanthosh

    how u r expecting a table in a text file... in text files u can't create tables, if u want to do that means seperate the texts with seperators and then get the string from that text file do the operations VMSSanthosh

    C# csharp tutorial question announcement

  • BindingSource: BEFORE CurrentChanged?
    V VMSSanthosh

    instead of binding it in current change event... bind it item databound of that table VMSSanthosh

    C# help question

  • how to format datagrid data in to decimal numbers
    V VMSSanthosh

    i think u want to display in 1000's, 10000's format of ur currency is it?... if its the case means u can't format it by datagrid format options u have to divide it by 1000 or 10000 like that only and then u can format the string by stringvalue.tostring("n2") VMSSanthosh

    C# csharp tutorial

  • Text File
    V VMSSanthosh

    try this.................. Public Function DownLoadMyFile(ByVal sPath As String, ByVal sName As String) Try 'If chkInOut.Checked = False Then Dim pstrFilePath As String pstrFilePath = sPath If IO.File.Exists(pstrFilePath) Then Dim myFileInfo As IO.FileInfo Dim StartPos As Long = 0, FileSize As Long, EndPos As Long myFileInfo = New IO.FileInfo(pstrFilePath) FileSize = myFileInfo.Length EndPos = FileSize HttpContext.Current.Response.Clear() HttpContext.Current.Response.ClearHeaders() HttpContext.Current.Response.ClearContent() Dim Range As String = HttpContext.Current.Request.Headers("Range") If Not ((Range Is Nothing) Or (Range = "")) Then Dim StartEnd As Array = Range.Substring(Range.LastIndexOf("=") + 1).Split("-") If Not StartEnd(0) = "" Then StartPos = CType(StartEnd(0), Long) End If If StartEnd.GetUpperBound(0) >= 1 And Not StartEnd(1) = "" Then EndPos = CType(StartEnd(1), Long) Else EndPos = FileSize - StartPos End If If EndPos > FileSize Then EndPos = FileSize - StartPos End If HttpContext.Current.Response.StatusCode = 206 HttpContext.Current.Response.StatusDescription = "Partial Content" HttpContext.Current.Response.AppendHeader("Content-Range", "bytes " & StartPos & "-" & EndPos & "/" & FileSize) End If HttpContext.Current.Response.AppendHeader("Content-disposition", "attachment; filename=" & sName) HttpContext.Current.Response.WriteFile(Server.HtmlEncode(pstrFilePath), StartPos, EndPos) HttpContext.Current.Response.End() End If Catch ex As OleDb.OleDbException Throw Catch ex As Exception Throw End Try End Function VMSSanthosh

    Database csharp asp-net question

  • OleDbDataReader
    V VMSSanthosh

    what u used is the best method one more thing u can do ie cast the result to string now no error will come but its not correct. checking for null values and then assigning is the proper usage VMSSanthosh

    Database csharp database help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups