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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
S

Shyam K Pananghat

@Shyam K Pananghat
About
Posts
54
Topics
5
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Disposing variables......
    S Shyam K Pananghat

    A manuall call to GC.Collect is not recommended because it will do a full memmory compaction after the the collection process.. if you are using any heavy objects...Probably you can set is as null after use.. GC will get triggered only when the memmory pressure is more for a particular allocated heap. or when the allocated threashold limit is reached. You can used threading. But only after a good analysis upon your method structure ( that whether it is taking any input from the previus one) and requirement.. Remember Threading is there to use the CPU Idle time.it will take more time if it does't have any.

    Shyam.. My Blog dotnetscoups.blogspot.com

    C# question

  • about the drag & operations in paint application
    S Shyam K Pananghat

    Please go through and obey Chris Maunder's message before posting a question. Explain you question properly or atleast some sense

    Shyam.. My Blog dotnetscoups.blogspot.com

    C#

  • Save Image as pdf file
    S Shyam K Pananghat

    or you can use PDF rasterizer too... also this one is open source i believe

    Shyam.. My Blog dotnetscoups.blogspot.com

    C# help csharp question

  • Specified argument was out of the range of valid values. Parameter name: index.
    S Shyam K Pananghat

    check whether a column exist in the given index.. It says that the collection object doesn't have any items for your given index..

    Shyam.. My Blog dotnetscoups.blogspot.com

    C# help database announcement learning

  • doubt
    S Shyam K Pananghat

    Well said .. :laugh: ;P

    Shyam.. My Blog dotnetscoups.blogspot.com

    C# tutorial

  • Automated email
    S Shyam K Pananghat

    Really good sample.. but remember you cannot catch an unsent or bounce mail info here.. :) It's just about the C# runtime error :laugh:

    Shyam.. My Blog dotnetscoups.blogspot.com

    C# csharp question

  • how to generate an MSI for my excel addin project in c#
    S Shyam K Pananghat

    Create a setup and deployment project. and overrride the Installer class.. There you get the necessary methods to install, commit , or rollback the installation. i belive the namespace is System.Configuration.Install

    Shyam.. My Blog dotnetscoups.blogspot.com

    modified on Wednesday, March 4, 2009 5:31 AM

    C# question csharp tutorial

  • Get only updated and newly record
    S Shyam K Pananghat

    As Christian suggested add a date column. add one more column named flag. Let say flag 1 is for insert and 2 is for delete 3 fro update.. Use Triggers appropiately to insert these flags and date to your extra columns.. Then you can easily compare at a leter point of time.. and should solve your problem... :)

    Shyam.. My Blog dotnetscoups.blogspot.com

    C# csharp database sql-server question

  • How to display multiple repeating records and groupng of that record in HTML Reports
    S Shyam K Pananghat

    Tooo Basic .. Get familiar or atleast go through some Sql basic stuff.. I believe you have to use "GroupBy" and "Orderby" clauses Properly in your query

    Shyam.. My Blog dotnetscoups.blogspot.com

    C# help html database tutorial question

  • [Message Deleted]
    S Shyam K Pananghat

    Yea. true.. But nowadays in from .Net 2.0 onwards i think we are having much more luxury.. that is to use a dropdown button control itself .. in this kind of situations. I belive dropdown button is a part of Menustrip :doh:

    Shyam.. My Blog dotnetscoups.blogspot.com

    C#

  • InvokeMemeber("click") on a messagebox
    S Shyam K Pananghat

    All message boxes will return a value indicating the button clicked. In Javascript it should be a boolean (True or false). Whereas in code like C# or VB (Windows) it will be a DialogueResult Enum value which will denote the result received

    Shyam.. My Blog dotnetscoups.blogspot.com

    C# question php

  • is there in tool available in c#.net to resizeing of images?
    S Shyam K Pananghat

    Please elaborate on your requirement. If you mean to resize or edit icon or Bitmap, Then you can open it in Visual studi editor itself and do it.

    Shyam.. My Blog dotnetscoups.blogspot.com

    C# csharp help question

  • Could you help me to suggest a book for immgrating from C++ to C#, what about Accelerated C# or Illustrated C#,Pro C# 2008 and the .NET 3.5 Platform
    S Shyam K Pananghat

    i Will suggest the book "Applied .Net framework proggramming" written by jeffrey richter. Concept that a pure VC++ programmer should understand is about the "Type and object" fundamentals in .Net world. It's structure and how it is handled.. it is bviously a managed one and governed by CLR. And as Christian Graus said you should go through the Garbage collection fundamentals. GC normaly runs as a low priority thread. You should also keep an eye on safe and unsafe concepts.. which you will surely comethrough when you are reading GC ...

    Shyam.. My Blog dotnetscoups.blogspot.com

    C# csharp c++ collaboration help learning

  • My Regular expression stop at $ sign
    S Shyam K Pananghat

    This will just pick up the whole string and stops.. as per your command .. So why do you need this expression then. Please try to undestand some basics of RegeX here. http://www.codeproject.com/KB/dotnet/regextutorial.aspx[^] :) :-D

    Shyam.. My Blog dotnetscoups.blogspot.com

    C# algorithms regex

  • Remote desktop
    S Shyam K Pananghat

    You cannot share the same User ID to use simultaneously.. And please use the relevant forums to ask your Questions.. This helps you to get quick reply.. :-D

    Shyam.. My Blog dotnetscoups.blogspot.com

    C# question

  • Outlook Add-in to Forward new arrived mails to other computer's Outlook via LAN
    S Shyam K Pananghat

    If my undetstanding is correct. You just want to switch between your Internal mailbox (Which will be configured in your internal exchange server) and external mailbox (which uses internet to access your external mail server). So as said If you have a mail server configured inside your LAN.. in any of your servers then you can just switch between these two mailboxes to achieve your requirement :)

    Shyam.. My Blog dotnetscoups.blogspot.com

    C# csharp visual-studio tutorial question

  • converting
    S Shyam K Pananghat

    i think you have to take some basic lessons on globalisation. Please do some homework yourself or atleast google and get some basic idea about what it is... before posting it here.. or if you are stuck with a real problem the state it clearly :) :doh:

    Shyam.. My Blog dotnetscoups.blogspot.com

    C# csharp

  • how to pass parameters to a delegate
    S Shyam K Pananghat

    If you have the delegate localy.. say delegatename is your delegate then call it like delegatename("parameters")..

    Shyam.. My Blog dotnetscoups.blogspot.com

    C# question tutorial

  • string to datetime conversion ?
    S Shyam K Pananghat

    Yes.. Datetime objects acts according to your globalisation settings in yout machine/Application. The easiest way is to use Datetime.Tostring(yy/mm/dd) whenever you want ot display it :-D

    Shyam.. My Blog dotnetscoups.blogspot.com

    C# help question

  • how to pass parameters to a delegate
    S Shyam K Pananghat

    You can pass it just like in a method call.. Delegate is actually hloding a method pointer.

    Shyam.. My Blog dotnetscoups.blogspot.com

    C# question tutorial
  • Login

  • Don't have an account? Register

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