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
S

Sendilkumar M

@Sendilkumar M
About
Posts
79
Topics
19
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Is there anyone who use Source Safe recently?
    S Sendilkumar M

    VSS/TFS Source safe is one of the bests in source control system. We will realize the power of this tool only with the team operations(TFS).Looking at the issues SVN and CVS also has their own but the users are least bother since they don't pay.

    M.Sendilkumar

    Free Tools collaboration question

  • A page can have only one server-side Form tag.
    S Sendilkumar M

    My guess is that the custom control what you have inside form is generating form.Debug and see the page controls collection and remove if it has more than on server side form.Only one Form runat server is allowed.

    M.Sendilkumar

    ASP.NET sysadmin help question

  • Cannot implicitly convert type 'string' to 'System.Web.UI.WebControls.TextBox'
    S Sendilkumar M

    CouponName will always contains some string value.Casting it to TextBox is meaningless.If you want to have TextBox based on the value of CouponName use some control logic to get it done.

    M.Sendilkumar

    ASP.NET csharp design sysadmin help announcement

  • load type using config file.
    S Sendilkumar M

    I have some different requirements for my application. My application generates a well formatted XML which needs to be stored in database as string data or as file in some version controlled system. I am planning to create provider factory that will generate an object to interact either database or version control system. I like to control this thru my web.config file. How can I achieve this?

    M.Sendilkumar

    .NET (Core and Framework) question database business collaboration xml

  • Urgent and critical : MOSS 2007 search
    S Sendilkumar M

    Thank you very much

    M.Sendilkumar

    Web Development help sharepoint question

  • Urgent and critical : MOSS 2007 search
    S Sendilkumar M

    Thank you verymuch

    M.Sendilkumar

    Web Development help sharepoint question

  • Urgent and critical : MOSS 2007 search
    S Sendilkumar M

    Urgent and critical In MOSS 2007 site we have document content search configured. Search is working fine. It displays document url which contains the keyword in content. Issue is if I open document from the search result by clicking green colour document link it is opening in read only. Not showing notification for Read-only and Edit. Is there any way to fix this issue with out coding and work around? I want to use Out of Box features. Note: Since i don't find any MOSS or sharepoint message Board i am posting here. :( :( :( :( :(

    M.Sendilkumar

    Web Development help sharepoint question

  • How to attach worker process in .net with Windows server 2003
    S Sendilkumar M

    In your development machine, w3wp might be running under different user account. You need to check. In “Attach to Process” window below the list of “Available Processes” there are two check boxes**.1.Show processes from all users, 2.Show processes in all sessions,** Check both check boxes.You may get the w3wp processes to attach.

    M.Sendilkumar

    LINQ csharp sysadmin windows-admin debugging tools

  • System stored procedures are not available in LINQ to SQL
    S Sendilkumar M

    It is good idea.I tried.It is working for sp_pkeys stored procedure,but not for sp_fkeys.Ok! The issue is,access rights to sysinformation.If the user has enough rights to access sys ,sp_**** procs can be accessed from server explorer to LINQ to Sql DataContext designer.

    M.Sendilkumar

    LINQ csharp sharepoint database linq sysadmin

  • System stored procedures are not available in LINQ to SQL
    S Sendilkumar M

    I want to use "sp_fkeys" system stored procedures inside LINQ to SQL.But all system stored procedures are not available in Server explorer to drag and drop into function pans in LINQ to Sql designer.Please tell me how i can get.

    M.Sendilkumar

    LINQ csharp sharepoint database linq sysadmin

  • Need help on Sharepoint ! i don't know where to post this question.CP doesn't have MOSS message boards.
    S Sendilkumar M

    I am creating MOSS 2007 web site. I have some custom pages which I created using Sharepoint designer. How I can set only the users from the particular group can access. The normal approach that everyone suggested is create audience and set the audience to the link button which is targeting my custom page. But if the user knows the url then he can directly access the page by typing url in address bar.i want to show access denied regardless of how the unauthorized user accessing it.

    M.Sendilkumar

    IT & Infrastructure sharepoint help question

  • CLR
    S Sendilkumar M

    Guys please answer this..Why value type instances are int stack?

    M.Sendilkumar

    .NET (Core and Framework) dotnet data-structures question

  • Why Value types..
    S Sendilkumar M

    Can any one tell me why value type instance is created in Stack?

    M.Sendilkumar

    .NET (Core and Framework) data-structures question

  • Data Entry in DataGridView in winforms.net 2.0
    S Sendilkumar M

    I am using DataGridView to display records. I want to use separate data entry form to enter data instead of DataGridView’s add row. How can I position the data entry form to datagridview’s selected row. Ideas or existing code would be great

    M.Sendilkumar

    C# csharp winforms question

  • Scaling issues in Winforms.net
    S Sendilkumar M

    I am developing a windows based application which has several data entry forms. All I want to develop as user control. User control will be loaded in to the main form when respective menu clicked by the user. Here I am facing some layout and look-n- feel issues. When the main form resized by the user all other UI controls should also be resized. How I can achieve this? Is there any default scaling mechanism available in .net 2.0.? Help me..!

    M.Sendilkumar

    C# csharp winforms design help question

  • Help me to develop cool date picker.[Windows]
    S Sendilkumar M

    Thats what my problem is.I Set the button's left as form's left and button's top+buttons'height as form's top. This is the logic.

    protected override void OnClick(EventArgs e) { SetAutoLocation(); frmCal.Show(); Invalidate(); } private void SetAutoLocation() { Rect rect; GetWindowRect(this.Handle, out rect); Point tergatePoint; tergatePoint = new Point(rect.left, rect.top + this.Height); tergatePoint = new Point(Left, Top + Height); if (rect.left + this.Width - frmCal.Width < 0) { tergatePoint.X = 0; } else { tergatePoint.X = rect.left - frmCal.Width + this.Width; } if (tergatePoint.X + frmCal.Width > System.Windows.Forms.SystemInformation.WorkingArea.Right) { tergatePoint.X = System.Windows.Forms.SystemInformation.WorkingArea.Right - frmCal.Width; } else if (tergatePoint.X < 0) tergatePoint.X = 0; if (tergatePoint.Y + frmCal.Height > System.Windows.Forms.SystemInformation.WorkingArea.Bottom) { tergatePoint.Y = rect.top - frmCal.Height; } if (tergatePoint.Y < 0) { tergatePoint.Y = 0; } if (tergatePoint.X < 0) { tergatePoint.X = 0; } frmCal.Location = tergatePoint; } public struct Rect { internal int left, top, right, bottom; }

    First click form is not positioning well ,but from second click onwards it is working fine. Can you just see that logic is correct or not?

    M.Sendilkumar

    C# help

  • Help me to develop cool date picker.[Windows]
    S Sendilkumar M

    I want to develop a date picker control which will have cool look-n-feel. My control will be derived from “System.Windows.Forms.Control”.On click event I am trying to show the form which has to “Monthcalendar” control. The problem is the form will not display at the correct position. Help me to determine the position to display the form to get exact appearance of the Windows date picker.

    M.Sendilkumar,Bangalore,India.

    C# help

  • Socket Programming [modified]
    S Sendilkumar M

    Use Rich Text box to type message which you want to send.And use RichTextBox1.rtf,not Text.

    M.Sendilkumar

    C# sysadmin

  • Socket Programming [modified]
    S Sendilkumar M

    Yes exactly.

    M.Sendilkumar

    C# sysadmin

  • Socket Programming [modified]
    S Sendilkumar M

    Font and other look-n-feel properties are not the part of message. If you want send those too send as rich text format instead of sending just text.

    M.Sendilkumar

    C# sysadmin
  • Login

  • Don't have an account? Register

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