Search the web
Sign In
New User? Sign Up
codesnips · Code Snippets
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
  Newest  |  < Newer  |  Older >  |  Oldest
Topics   (List as Individual Messages) Messages Latest Post

hi, this is my first post to this group.... its about forcing your app to have only one instance running.. you need to import 2 dlls to find a window and to...
11 Jul 23, 2003
7:53 am

Owais Anwer
owais@...
Send Email

First, turn on custom error reporting in the web.config and name the file you will use as your default handler: <!-- Web.Config --> <configuration> ...
1 May 19, 2003
6:52 am

Nauman Leghari
laghari78
Online Now Send Email

http://msdn.microsoft.com/msdnmag/issues/03/05/CuttingEdge/default.aspx...
1 May 18, 2003
3:48 pm

Nauman Leghari
laghari78
Online Now Send Email

The solution is quite simple: 1. Retrieve all the HTML tags using this pattern: <(.|\n)*?> 2. Replace them with an empty string and return the result Here's a...
1 May 18, 2003
3:47 pm

Nauman Leghari
laghari78
Online Now Send Email

The Scenario In this example I have written a simple WebForm to manage a list of contacts which I have stored in XML. The requirements are simply the ability...
1 Apr 20, 2003
3:50 pm

Nauman Leghari
laghari78
Online Now Send Email

As developers, we can only fix things if we know they're broken. I've been a part of several companies in which the users will encounter a fatal error on a web...
1 Apr 20, 2003
3:35 pm

Nauman Leghari
laghari78
Online Now Send Email

http://www.macromedia.com/support/dreamweaver/technotes.html This TechNote describes a few of the important factors involved in creating a successful MySQL...
1 Apr 19, 2003
2:47 pm

Nauman Leghari
laghari78
Online Now Send Email

using System; using System.Windows.Forms.Design; public class MainClass { public static void Main(string [] arg) { FolderNameEditor ed = new...
1 Mar 18, 2003
8:42 am

Nauman Leghari
laghari78
Online Now Send Email

Using XmlTextWriter to write an Xml file using System; using System.Xml; using System.Text; public class MainClass { public static void Main(string [] arg) { ...
1 Mar 9, 2003
9:31 am

Nauman Leghari
laghari78
Online Now Send Email

Intro: The PageCapturer utility is used to download Web pages programmatically and save them onto hard disk. File: PageCapturer.zip attached with this email. ...
1 Mar 1, 2003
4:06 pm

Nauman Leghari
laghari78
Online Now Send Email

// imports using System; using System.Net; using System.IO; using System.Text; // capture webpage by using HttpWebRequest class and Save into file. File is...
1 Feb 28, 2003
5:25 pm

Nauman Leghari
laghari78
Online Now Send Email

// import import System.Windows.Forms; // get clipboard data and if any then show in MessageBox // Retrieves the data from the clipboard. IDataObject iData =...
1 Feb 28, 2003
5:15 pm

Nauman Leghari
laghari78
Online Now Send Email

// Open an xml file into Internet Explorer Process p = System.Diagnostics.Process.Start( "iexplore.exe" , "index.xml" );...
1 Feb 28, 2003
5:13 pm

Nauman Leghari
laghari78
Online Now Send Email

How to do String formatting ........................... private void Submit_Click(object sender, EventArgs e) { try { string valueToConvert = Value.Text; ...
1 Feb 4, 2003
8:52 pm

Nauman Leghari
laghari78
Online Now Send Email

What are MSN Alerts? MSN Alerts Service is a part of Microsoft .NET My Services Initiative. It enables the service provider to reach its users through Instant ...
1 Dec 3, 2002
5:58 pm

Nauman Laghari
laghari78
Online Now Send Email

http://support.microsoft.com/default.aspx?scid=kb;en-us;Q305140...
1 Dec 3, 2002
2:07 am

Nauman Laghari
laghari78
Online Now Send Email

Here is an example of advanced Numeric Format Specifier , according to exact position of numerals ' Change the number to Telephone number format ...
1 Dec 3, 2002
1:27 am

Asim
asimletters
Offline Send Email

Example of the most Common Decimal Numeric Format. 'Insert Commas after each thousand , with specified number of decimal precision. '//////////////// Dim var...
1 Dec 3, 2002
1:17 am

Asim
asimletters
Offline Send Email

You Can easily Customize the display for your date time. '///////////////////////////////// Dim mydate As DateTime = DateTime.Now Dim show_date As string ...
1 Dec 2, 2002
9:27 pm

Asim
asimletters
Offline Send Email

It is assumed that you have already placed these 2 controls on your winform: 1: TextBox (txt_data) 2: Button (btn_save) Now create an on_click method for...
1 Dec 2, 2002
8:37 pm

Asim
asimletters
Offline Send Email

In many cases you might have come acrooss the situation that IF Enter Key is pressed than do this. For Example, You want to take some Input from a user in a...
1 Nov 29, 2002
1:19 am

Asim
asimletters@...
Send Email

A Typical Socket Server -Steps: 1: Create a TcpListener Object 2: Call Start Method of TcpListener Object (Now the server actually starts looking for any...
1 Nov 23, 2002
1:14 am

Asim
asimletters@...
Send Email

Calling API to bring any window to the Foreground public class TopWindow { [DllImport("user32.dll")] public static extern IntPtr FindWindow(String winClass,...
1 Nov 22, 2002
10:33 am

Nauman Laghari
laghari78
Online Now Send Email

The Article teaches how to create a web service and consuming it in an ASP.NET Page =========================================================== ' //// Code...
1 Nov 20, 2002
10:28 am

Asim
asimletters@...
Send Email

Following piece of code establishes a socks based connection to any server (localhost in this case) as port 13, If at port 13 there is some socks listner...
1 Nov 20, 2002
10:16 am

Asim
asimletters@...
Send Email

Running Following piece of code, opens a port number 13 on localhost, Starts listening the port,accepts any incoming connections (one only I think). After...
1 Nov 20, 2002
10:08 am

Asim
asimletters@...
Send Email

Implement the OnItemCreated event for the datagrid. Then set System.Web.UI.WebControls.DataGridItemEventArgs.Item.Cells[<columnno>].W idth = <width> private...
1 Nov 19, 2002
8:20 am

Nauman Laghari
laghari78
Online Now Send Email

using System; public class Caret { [System.Runtime.InteropServices.DllImport("user32.dll")] public extern static bool SetCaretBlinkTime(uint uMSeconds); ...
1 Nov 18, 2002
8:34 am

Nauman Laghari
laghari78
Online Now Send Email

using System; using System.Diagnostics; public class ShellExecuter { public static void Main() { Process.Start("test.doc"); } }...
1 Nov 18, 2002
8:33 am

Nauman Laghari
laghari78
Online Now Send Email

http://www.macadamian.com/products/sscli/download.html...
1 Nov 18, 2002
6:43 am

Nauman Laghari
laghari78
Online Now Send Email
  Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help