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
H

h s n

@h s n
About
Posts
61
Topics
35
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Hyperlink and AJAX ModalPopup
    H h s n

    hi everyone :) I have used hyperlink to show ModalPopup Panel through AJAX Toolkit ModalPopupExtender. Hyperlink is image only but i have assigned no targeUrl but associted with ModalPopupExtender. Hyperlink image shows ModalPopup panel very well but doesn't change the cursor from pointer. Please tell me how i can solve this problem? Thank you.

    ASP.NET help question

  • Reteriving data from database
    H h s n

    hi everyone please give me hint how i can do following: I have inserted data into database using textboxes and database gets updated. Each record contains 5 fields. When I submit data from textboxes I want next page appear and show data. But wait ......... i need each record as below Name: abc address: def street phone: 1234 email: a11111@gmail.com above is one record. I want to if i feed new data in form text boxes. This new page show block of data of each record (new at the top) as given above. Please guide me how can i do that ... if any article in this regard on code project please mention. Thank You.

    ASP.NET database com tutorial question

  • Without O(n2)
    H h s n

    I want to find first duplicate occurence in an array. Can I do it without O(n2) ???

    C# data-structures question

  • Guest book using Asp.Net
    H h s n

    I am new to ASP.Net I have visual studio 2005 to be used as development tool. Can anyone guide me how to make a guest book that simply add a new guest and also we can view all the guest in grid view. What should I do ? Whether I should create a database? I should use disconnected connection? When should I update original database? Please guide me. Thank you.

    ASP.NET csharp tutorial css asp-net database

  • New to ASP.Net
    H h s n

    Hi everyone! I am new to ASP.Net technology. I want to know what should I use as a development tool for ASP.Net application. Currently I am using Windows Notepad for simple exercises. Thank you.

    ASP.NET csharp asp-net

  • Regular Expression
    H h s n

    Thank you ............ it helped alot

    C# regex

  • Regular Expression
    H h s n

    Hi everyone! Please tell me what below statement mean Regex regex = new Regex(@"[:_.\w]+\s*=\s*(""[^""]*"")|('[^']*')\s*"); Thanks

    C# regex

  • FormClosingEvent
    H h s n

    oooh very thanks. :) I am still new with C# after 2 months :)

    C#

  • FormClosingEvent
    H h s n

    Thank u. FormClosedEventArgs ev = new FormClosedEventArgs(/*??? */); MainForm_FormClosed(sender, ev); Please tell me how can i call? What to write in argument, wat to write in CloseReason?

    C#

  • FormClosingEvent
    H h s n

    I have File-Exit Menu. In this menu I want to invoke FormClosingEvent. Please tell me how can call that event from From File-Exit Menu. I dont know what to write in enum CloseReason. private void FileExit_Click(object sender, EventArgs e) { //here i want to call FormClosing event } private void MainForm_FormClosing(object sender, FormClosingEventArgs e) { if (dirty == true) { DialogResult res = SaveDialog(); if (res == DialogResult.Yes) { SaveFile(); e.Cancel = false; } if (res == DialogResult.No) { e.Cancel = false; } if (res == DialogResult.Cancel) { e.Cancel = true; } } }

    C#

  • Finding TreeNodes using Modeless dialog
    H h s n

    Hi everyone! I have questions ... How can i search treeNodes in an treeView using treeNode.Name property? How can i highlight resultant nodes? Please need some idea. Thanks.

    C# question

  • icons images
    H h s n

    From where we can get or download Microsoft office 2003 or Viusal Studio 2005 toolbar images, like undo, redo etc. Thanks

    C#

  • How to associate Cut, Copy, Paste
    H h s n

    Hi everyone! Please tell me how to associate include cut, copy, paste in application. Specially alongwith treeView nodes. Also how undo, redo operations can be added. Very thankful for any hint or guidance. h@s@n

    C# tutorial

  • Only One Child Window in MDI
    H h s n

    please tell me how one child can be shown if Parent Mdi has Main MEnu and Toolbar. I create Mdi child it doesn't fills whole client area of MdiParent. Also when i close the MdiParent icon bar of child takes space up on the MdiParent Main Menu for a while and form closes although i have disabled child control box.

    C# question

  • Only One Child Window in MDI
    H h s n

    Thanks. I have used this in my application. I have made "Multiple Single Document Interface" for the Main Form of my application. But now that Main Form is an MDI Parent Form. If I open first instance of application that gives me option to create a new file under the "File Menu". Now I want that file to show only close button in Menu bar and take all the MDI parent client space. Is that possible? I have made my Main Form as MDI Parent. I used to create new file using file menu, but how i can emit minimize and restore button in the menu bar. I want to show only close option.

    C# question

  • Only One Child Window in MDI
    H h s n

    Hi everyone! Please tell me how can i restrict only one child window in MDIParent? Does Microsoft Word 2003 use MDI with only child window? I have made child window and made it Maximize and Minimze button "false" and its window state "Maximized" but it doesn't give desired results. It shows Minimize and restore button in Main Menu bar. Please tell me what to do ? Thanks

    C# question

  • MDI - Question
    H h s n

    Please tell me how can we make multiple SDI application to show one child window .... that can not maximized or minized.

    C# question

  • Multiple-SDI Application
    H h s n

    I want my application to behave like MSWord 2003. i.e. Multiple-SDI Application. I am facing problem with the code that first window always close all other windows. Please identify changes. //TopLevelForm.cs using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.IO; namespace MultipleSDI { public partial class TopLevelForm : Form { string fileName; static int formCount = 0; public TopLevelForm() { InitializeComponent(); MultiSDIApplication.Application.AddTopLevelForm(this); MultiSDIApplication.Application.AddWindowMenu(this.windowToolStripMenuItem); ++formCount; this.Text += ": " + formCount.ToString(); } public static TopLevelForm CreateTopLevelWindow(string fileName) { // Detect whether file is already open if (!string.IsNullOrEmpty(fileName)) { foreach (TopLevelForm openForm in Application.OpenForms) { if (string.Compare(openForm.FileName, fileName, true) == 0) { // Bring form to top openForm.Activate(); return openForm; } } } // Create new top-level form and open file TopLevelForm form = new TopLevelForm(); form.OpenFile(fileName); form.Show(); // Bring form to top form.Activate(); return form; } private void openToolStripMenuItem_Click(object sender, EventArgs e) { if (this.openFileDialog.ShowDialog() == DialogResult.OK) { TopLevelForm.CreateTopLevelWindow(this.openFileDialog.FileName); } } void OpenFile(string fileName) { this.fileName = fileName; if (!string.IsNullOrEmpty(fileName)) { using (StreamReader reader = new StreamReader(fileName)) { textBox.Text = reader.ReadToEnd(); } } else this.fileName = "untitled" + formCount.ToString(); t

    C# graphics help

  • Form Layout SDI or MDI
    H h s n

    Thank you again. Can u look at code I am using for the purpose?

    C# tutorial question

  • Xml Indentation in RTB
    H h s n

    I have XmlNodeList as result from Xpath query to already XmlDocument. This node list can get "Attributes", "Element Nodes" etc. I want to show that XmlNodeList in properly indented form in a richtextBox. I have found a XmlReader setting in which i can set indentation true. But how i will use it with XmlNodeList. Please guide. Thank you.

    C# xml database 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