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
A

A R Bhagirathi

@A R Bhagirathi
About
Posts
6
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • COBOL AND MS SQL
    A A R Bhagirathi

    Hi colin Thanks fr your time , i did go thru some sites, actually i don't know cobol at all and i am looking for code logic to access sql databse from cobol and how different it is from access any dbms i am not able to spot any good code refernce i have checked out cobug-cobol users group and some other sites, i need a basic idea that is all Regards Bhagirathi

    Database database question

  • COBOL AND MS SQL
    A A R Bhagirathi

    Hi all I need to get some information on how cobol handles database? and how can we access the MS SQL Database from ACUCOBOL? I would really appreciate if any body can forward links on this topic, Bhagirathi

    Database database question

  • Run time Error
    A A R Bhagirathi

    Hi Try this URL it discuss the same problem u r facing and they have the solution http://www.velocityreviews.com/forums/t71777-quoterror-while-trying-to-run-project-unable-to-start-debugging-on-the-web-serverquot.html

    ASP.NET help debugging

  • Open a PDF file
    A A R Bhagirathi

    hi you can try this : convert the file into byte array,set the Response.ContentType to application/pdf and do a binary write Sample code: string filePath=Request.MapPath("a.pdf"); System.IO.FileInfo ofile=new FileInfo(filePath); System.IO.FileStream fs = ofile.OpenRead(); int filelen=(int)fs.Length; byte[] b=new byte[filelen]; fs.Read(b,0,filelen); Response.ClearHeaders(); Response.ClearContent(); Response.ContentType="application/pdf"; Response.BinaryWrite(b); Response.End(); Response.Flush();

    ASP.NET csharp visual-studio sysadmin

  • problem in creating runtime controls
    A A R Bhagirathi

    hi i could set pranent property in windows application, failed in asp.net sorry did not check out ealier, right method panel1.controls.add

    ASP.NET help question

  • problem in creating runtime controls
    A A R Bhagirathi

    Hi To create controls in the pannel : set the parent property of the control to the pannell that you have created; eg TextBox txtNew = new TextBox(); panel1.Contains(txtNew); txtNew.Parent=panel1; hope this is helpful

    ASP.NET 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