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
M

Mridang Agarwalla

@Mridang Agarwalla
About
Posts
289
Topics
206
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Business Dashboards in Sharepoint
    M Mridang Agarwalla

    Hi Everybody, We use Sharepoint in our companies Intranet. I'm trying to build a business dashboard in sharepoint which would fetch information by consuming a web service. Does anyone have any experience with this and can point me in the right direction. I've worked with .NET but my knowledge of Sharepoint is zilch, nada, null. Thanks in advance.

    Web Development

  • RTF to PDF
    M Mridang Agarwalla

    ;P Missed that one. Thanks for the help SunRays.

    C# tutorial question

  • RTF to PDF
    M Mridang Agarwalla

    Hi guys, I have an RTF file on which I do string substitution for mass printing letters. I'd like to convert the output RTF to PDF? Currently I use a dirty trick of printing the RTF to a PDF printer but this seems like a slightly messy option. Is there any 'free' library that I could use to generate a PDF from my RTF? I've tried to Google it but all i could find was a bunch of paid libraries. An small example would be helpful too. Thanks in advance. :)

    C# tutorial question

  • Transleuscent Dialog
    M Mridang Agarwalla

    Hi Guys, Is it possible to create a similar sort of dialog using C#? http://www.bartdesmet.net/images/shutdownblocking02.jpg Although, I've been working with C# for a while, I have no idea where to get started on this. Any help, guys? Damn, it feels good to be back here after this while. :p ...after a year of working with Linux Scripts, Java and Oracle, I'm seriously out of touch.

    C# csharp java oracle linux help

  • Restoring backups between SQL Server 2005 Editions
    M Mridang Agarwalla

    Hi Guys, Is it possible to restore a backup of SQL Server 2005 Enterprise/Standard Edition onto a SQL Server 2005 Express Edition DB. I have a small backup file. its really small. Can someone just restore the backup for me and generate an SQL script from it. I need the script. I'll be lost without it. Thanks in advance everyone.

    Database database sql-server sysadmin tools

  • Crash Reporting
    M Mridang Agarwalla

    Hi guys, I've developed a C# desktop application. I'd like to add some crash reporting features to it. The next time an unhandled exception occurs, I'd like the application to generate a minidump, which it mails me, which I can use to debug the application. Is there and free library avaialble online. I tried Googling but couldn't find anything. All i found was one for VC7 on CodeProject. Thanks in advance guys! Cheerios!

    C# csharp debugging

  • Save Web Pages
    M Mridang Agarwalla

    I wouldnt be able to open the MHT file in a HTMl editor and view the source etc, would I? I want to save them as regular files and not as MHT archive.

    IT & Infrastructure question

  • Save Web Pages
    M Mridang Agarwalla

    Hi guys, I need to save some complex web pages for offline viewing. How do i do this? The IE and FF save feature breaks the formatting of the pages. Is there a nifty little application that i can use?

    IT & Infrastructure question

  • Crash Reports
    M Mridang Agarwalla

    Hey Guys, I'm developing a C# application this time i've decided to include crash reporting. I searched CP and found this See this Its in C++ though. I know i can call the unmanaged DLL from C# but Id prefer one in managed code. Is there a crash reporting library in managed code? I couldn't find any!

    C# csharp c++ com debugging question

  • can't make otbound connections
    M Mridang Agarwalla

    Hi guys, I'm developing a small site for someone who made the mistake of hosting with GoDaddy. I am unable to make any outbound connections for WebRequest and stuff from Godaddy. String strResult; WebResponse objResponse; WebRequest objRequest = System.Net.HttpWebRequest.Create("http://www.google.com"); objRequest.Proxy = new WebProxy("https://64.202.165.130:3128"); //objRequest.Proxy = new WebProxy("https://64.202.165.130:3128"); //objRequest.Proxy = new WebProxy("http://wc-v01.inet.mesa1.gdg:3128"); //objRequest.Proxy = new WebProxy("https://wc-v01.inet.mesa1.gdg:3128"); objResponse = objRequest.GetResponse(); // the using keyword will automatically dispose the object // once complete using (StreamReader sr = new StreamReader(objResponse.GetResponseStream())) { strResult = sr.ReadToEnd(); // Close and clean up the StreamReader sr.Close(); } Response.Write(strResult); I used that code to test f I could make outbound connections. On my IIS it worked fine but when I uploaded it gave "Could not connect kind of error". I did comment out all the Proxy code when I ran it on my IIS. GoDaddy has a Proxy server. I've tried all combinations to make it work but it doesn't. GoDaddy claims its a coding error. Is there a simpler code to test whether I ca n make outbound connections froma particular server or something.

    ASP.NET csharp com sysadmin windows-admin hosting

  • script DB
    M Mridang Agarwalla

    hey guys, i have quite a few SQL databases on my PC. I want to script all the databases into a text file. The script should contain both the data and the structure of the databases. How can i do this? I want to execute this process from a batch file. Is there a tool or something that i could use? I've been hunting for something like this for a long time but I haven't found anything. In MySQL tis is a relatively simple process which can be accomplished by using the mysqldump utility.

    Database database tools question mysql

  • Execute applications from ASP.NET
    M Mridang Agarwalla

    Hi guys, Is it possible to execute Batch files and executable files on the server using ASP.NET assuming i have all necessary and directory permissions. I would also like to be able to pass arguments and get the return code.

    ASP.NET csharp asp-net sysadmin

  • Javascript Image Scroller
    M Mridang Agarwalla

    Hi guys, I need an image scroller for my site. I google around a bit and came across this one This One Its okay apart from a slight problem. I need to to scroll across a particular width and not the whole width of the page. I got around this by placing the scroller inside an iframe. However, I don't want this. i want it to be on main page. Is there any other scroller. I've searched and searched and still haven't found a solutions. Could someone help me out here?

    Web Development help javascript com question

  • SQl Server SP errors in C#
    M Mridang Agarwalla

    I'm executing SQL Server stored procedures from C# and I'm having problem figuring out a few things. My stored procedure have become pretty complex and I need to check whether the SP executed successfully or not. What should I do? Should i use a RAISEERROR in the SP, should i use RETURN or should i use SELECT? Once i find out in my C# code that an error has occurred, i want to display the appropriate message to the user. How do I do this? Would i have to enclose the C# code to execute the SP in a try-catch block? Thanks in advance guys!

    C# database help question csharp sharepoint

  • Develop 1.1 ASP.Net applications in VS2005
    M Mridang Agarwalla

    Hi, I it possible to develop .Net 1.1 web application in VS2005. I don't want to convert them into the VS2005 format. I currently face the problem of keeping two IDEs installed for the same platform.

    IT & Infrastructure csharp asp-net help

  • Javascript with Server Controls queries
    M Mridang Agarwalla

    i have an ASP.net textbox on my form and a dropdownlist too on my form. How can i set the text to "hiii" using JavaScript? IS this correct document.Form1.txtTextBox.value="hiii"; I would also like to set the dropdownlist selected index to 0. How do I do this? As simple as it may sound just bear withe me guys. i really dont know a !@#$ about JavaScript and this is really urgent. I've learnt my lesson though. Tomorrow i'm going to go my self a really good book to teach me this stuff. In the meantime, it'd be great if you could just help me.

    ASP.NET question csharp javascript asp-net database

  • DropDownList onchage event through Javascript
    M Mridang Agarwalla

    I have a dropdownlist server control on my page. Thers a text box on the page to which is disabled. The dropdownlist contains four options - Apple, Orange, Lemons, Grapes. I've programmatically set the the DropDownList in such as way that then Lemons are selected. the text box gets enabled else it gets disabled. Everytime i select Lemons, a post occurs. I order to avoid this im planning on using JavaScript. How do i add JavaScript. I realllly new to JavaScript so if you give me a simple code snippet, it'll give me a head start. What event would i have to write for DropDownList - OnChange?

    ASP.NET question javascript sysadmin

  • retrieve image from database
    M Mridang Agarwalla

    umm..There might be a slight problem and I might even have posted in the wrong forum (my bad). Its a web application in c#. Its and Image control

    C# question database csharp sql-server graphics

  • retrieve image from database
    M Mridang Agarwalla

    Hi guys, I havent done image related stuff in C# as yet but i need to ask a small question. I have stored an image in my database (SQL Server 2000). The image field in the database has a datatype of image. Now, I want to retrieve the image and display it in a image box How do i do that? I have found this code but how do I modify it to show the image in a Imagebox? // Put user code to initialize the page here MemoryStream stream = new MemoryStream (); SqlConnection connection = new SqlConnection (@"server=INDIA\INDIA;database=iSense;uid=sa;pwd=india"); try { connection.Open (); SqlCommand command = new SqlCommand ("select Picture from Image", connection); byte[] image = (byte[]) command.ExecuteScalar (); stream.Write (image, 0, image.Length); Bitmap bitmap = new Bitmap (stream); Response.ContentType = "image/gif"; bitmap.Save (Response.OutputStream, ImageFormat.Gif); } finally { connection.Close (); stream.Close (); }

    C# question database csharp sql-server graphics

  • uploaf files using desktop applications
    M Mridang Agarwalla

    I'm really new to we stuff using .net so it'd be a great help if you could gimme an example. i couldn't find much resources about this.

    C# question com security
  • Login

  • Don't have an account? Register

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