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
J

jithen_dt

@jithen_dt
About
Posts
22
Topics
15
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Analysing managed C++ [modified]
    J jithen_dt

    I have tried using Ants Profiler but it works on ".Net 2.0 Framework", I want something for ".Net 1.1" These are the cases that I want the profiler to detect. --------------------------------------------------------- Case 1 Reading values at an index that is out or range (using array). Case 2 Writing values at an index that is out or range (using array). Case 3 Reading values at an index that is out or range (using vector). Case 4 Writing values at an index that is out or range (using vector). Case 5 Memory leak. Case 6 Memory overrun using array. Case 7 Memory overrun using malloc Case 8 Access memory that has been deleted

    Every is Illusion

    Managed C++/CLI c++ database performance

  • Analysing managed C++ [modified]
    J jithen_dt

    Hi Is there any tool that could analyze managed C++ code to identify (i am using Visual Studion 2003). 1). memory leaks 2). index out of bounds 3). memory overruns I have seen Devpartner and Rational PurifyPlus but they do not work with managed C++. Thanks in advance. -----------------

    Every is Illusion

    modified on Thursday, August 21, 2008 2:44 PM

    Managed C++/CLI c++ database performance

  • Network programming
    J jithen_dt

    When you are closing the connection i.e when the user at the client closes the application call a function and indicate the server that the client is closing normally, on the form close method (if it is a winform) communicate to the server saying forced application close. You need to handle form close carefully because even under normal application close form close method gets triggered (this can be handled).

    C# sysadmin tutorial

  • C# reverse engineering, [modified]
    J jithen_dt

    Hi I have a few class files that I need to reverse engineer to get UML diagrams. I have Visio Professional 2003 installed on my system , and the Visual Studio version is 2005 Professional. I searched msdn, where i read the below directions, but I am not able to find the Visio option in my Visual Studio, please let me know how do I do this, is there a way to add the Visio component into Visual Studio? -------------- from msdn------------------------- In Visual Studio, in the Solution Explorer, select a solution. On the Project menu, click Add New Item. In the Add New Solution Item dialog box, click Visio Files, and then click UML. Under Templates, click a UML diagram, and then click Open. -- modified at 23:20 Wednesday 6th June, 2007

    Every thing is Illusion

    .NET (Core and Framework) csharp question visual-studio wpf announcement

  • About Webpage Setting
    J jithen_dt

    What are you trying to say?? Please explain in detail.

    Every is Illusion

    C#

  • Word color problem [modified]
    J jithen_dt

    ------------------------------------------------------------------- I am reading pixel by pixel from a image, creating a color object corresponding to that pixels color and witing a "." into a word file and coloring it with the same color as the pixel. But Word.wdColor has only 60 colors I am not able to relate the color object with Word.wdColor enum. -------------------------------------------------------------------

    Every is Illusion

    C# help

  • Kodak Image Edit problem [modified]
    J jithen_dt

    I am trying to display a tif image in KodakImageEdit control using VB6 but it gives an error when I set the DisplayScaleAlgorithm to 2. If I set DisplayScaleAlgorithm to 1 it doesnt display the image properly it shows a black image with white dots. The OS on my system is XP, but when I tryed on Win2000 it gives the same error. Every is Illusion -- modified at 8:10 Wednesday 21st June, 2006

    Visual Basic help

  • C++ and Oracle
    J jithen_dt

    Please can some tell me what are the header files required to write a basic C++ and Oracle programme. A sample code would help a lot. Every is Illusion

    Managed C++/CLI c++ oracle help

  • How to store/retrieve a file in a database ...........
    J jithen_dt

    /* adds image name specified as parameter in Image table (Database GDP) Stru: Images ImageID int IDENTITY FullName varchar(50) ImageData image */ using System; using System.IO; using System.Data.SqlClient; class StoreImage { public void AddImageToDatabase(String strImageName) { SqlConnection cnObj = new SqlConnection("Data Source=tilsrv-dev1;Initial Catalog=GDP;User ID=sa;password=;"); FileStream stream = new FileStream(strImageName, FileMode.Open); byte[] bytBlob = new byte[stream.Length]; stream.Read(bytBlob, 0, (int)stream.Length); stream.Close(); try { cnObj.Open(); SqlCommand cmdInsertImage = new SqlCommand("INSERT INTO Images(FullName, ImageData) VALUES('" + strImageName + "', @Img)", cnObj); cmdInsertImage.Parameters.Add("@Img", bytBlob); cmdInsertImage.ExecuteNonQuery(); } catch(SqlException e) { Console.WriteLine(e.Message); } finally { cnObj.Close(); } } public static void Main(String[] args) { StoreImage obj; if(args.Length == 0) Console.WriteLine("USAGE: StoreImage "); else { obj = new StoreImage(); obj.AddImageToDatabase(args[0]); } } } ENJOY MAADE.

    ASP.NET database tutorial csharp sql-server sysadmin

  • How to store/retrieve a file in a database ...........
    J jithen_dt

    The following ASPX file reads and displays an image from the Pubs database that comes with Microsoft SQL Server. <%@ Import Namespace="System.Data.SqlClient" %> <%@ Import Namespace="System.Drawing" %> <%@ Import Namespace="System.Drawing.Imaging" %> <%@ Import Namespace="System.IO" %> void Page_Load(object sender, System.EventArgs e) { MemoryStream stream = new MemoryStream (); SqlConnection connection = new SqlConnection ("server=localhost;database=pubs;uid=sa;pwd="); try { connection.Open (); SqlCommand command = new SqlCommand ("select logo from pub_info where pub_id='0736'", 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 (); } } ENJOY MAADE

    ASP.NET database tutorial csharp sql-server sysadmin

  • Copy File
    J jithen_dt

    I am trying to copy a file to the Virtual Directory, the source file is on a different system inside a shared folder(This folder is hidden), I am constructing the source file path using the other systems (local IP)IP address But I get a file not found error ???????. What might be the problem Please help. is it because the IIS is on my system and the file is on a different system.

    ASP.NET help windows-admin question

  • Asp.net
    J jithen_dt

    I had almost completed a web application in asp.net, but in between I had to reinstall .net and now when I execute the project I am not able to view the asp.net controls (textbox,buttons) at runtime(i.e in IE), but I am able to view them at design time. please can some one help me. Every is Illusion

    ASP.NET csharp asp-net design help

  • Asp.net Error
    J jithen_dt

    When I try to create new project iam getting an error given below. :confused::confused: Microsoft Development Environment --------------------------- The Web was created successfully, but an error occurred when trying to configure the application root for this Web. Web projects may not operate correctly without an application root. The returned error was: Active Directory Services cannot find the web server. A possible cause for this is an incompatibility between versions of Internet Information Server (IIS) on the client and the server. The usual cause for this error is creating Web projects on a Windows 2000 or newer server from a Windows NT 4.0 client. You can manually configure the application root using the Internet Services Manager. --------------------------- OK Help --------------------------- When I click OK for the above MSG I get an other error MSG given below. --------------------------- Microsoft Development Environment --------------------------- Unable to set the permissions on the 'bin' folder to restrict browse access. Active Directory Services cannot find the web server. A possible cause for this is an incompatibility between versions of Internet Information Server (IIS) on the client and the server. The usual cause for this error is creating Web projects on a Windows 2000 or newer server from a Windows NT 4.0 client. You can manually restrict browse access to this folder using the Internet Services Manager. --------------------------- OK Help --------------------------- :confused::confused::(( Every is Illusion

    ASP.NET windows-admin help csharp asp-net sysadmin

  • Network
    J jithen_dt

    How do I find the list of computers in my network. Using VB 6.0 :confused: Every is Illusion

    Visual Basic sysadmin question

  • IE
    J jithen_dt

    How to get the title of the IE explorer Every is Illusion

    Visual Basic tutorial

  • Inner XML
    J jithen_dt

    Please can some one tell me whats Inner XML and Outer XML Every is Illusion

    XML / XSL xml

  • Creating help file
    J jithen_dt

    You need not write saperate help files for each control, what you can do is create 1 help file which has help info about all controls in your app, and in the control property provide different help keywords. Every thing is MAYA

    Visual Basic help tutorial

  • system name
    J jithen_dt

    :)How can I find the system name in vb.net Every thing is MAYA(Illusion)

    Visual Basic csharp question

  • Dlls
    J jithen_dt

    I want to make use of dlls created in .Net in vb6 is it possible Every thing is MAYA

    C# csharp

  • Doesnt Stop On Break Points
    J jithen_dt

    :confused:When I run ASP.net applications which has break points, the execution doesnt stop at the breakpoints, so every time I have to attach the aspnet_wp.exe to the process manually, this is very tedious, Is there any way to make it attach on its own. But whith my VB.net applications the execution stops on breakpoints properly. Please some one answer me.

    ASP.NET asp-net csharp
  • Login

  • Don't have an account? Register

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