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.

Messages

  Messages Help
Advanced
Messages 1 - 30 of 48   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1
// previous email is changing the color of each cell // this one is about chaning the complete column color change see the ItemCreated event same database file...
Nauman Laghari
laghari78
Offline Send Email
Nov 18, 2002
6:38 am
2
http://www.dotnetjunkies.com/printtutorial.aspx?tutorialid=224 <http://www.dotnetjunkies.com/printtutorial.aspx?tutorialid=224>...
Nauman Laghari
laghari78
Offline Send Email
Nov 18, 2002
6:38 am
3
See the ItemBound event of datagrid. Database: biblio.mdb Table: Publishers ... <%@ Page language="c#" Codebehind="PRowColor.aspx.cs" AutoEventWireup="false"...
Nauman Laghari
laghari78
Offline Send Email
Nov 18, 2002
6:39 am
4
In the aspx file <asp:datagrid id="gridPub" runat="server" AutoGenerateColumns="False" OnSelectedIndexChanged="PubGrid_SelectedItemChange"> <SelectedItemStyle...
Nauman Laghari
laghari78
Offline Send Email
Nov 18, 2002
6:39 am
5
Database: Biblio.mdb -- Table: Publishers aspx Page: <%@ Page language="c#" Codebehind="PItemCommand.aspx.cs" AutoEventWireup="false"...
Nauman Laghari
laghari78
Offline Send Email
Nov 18, 2002
6:39 am
6
<%# DataBinder.Eval(Container.DataItem,"Name") %><%# DataBinder.Eval(Container.DataItem,"Address") + " " + DataBinder.Eval(Container.DataItem,"City") + ""...
Nauman Laghari
laghari78
Offline Send Email
Nov 18, 2002
6:41 am
7
<asp:HyperLinkColumn HeaderText="more..." DataTextField="pubId" DataTextFormatString="More about {0}" DataNavigateUrlField="pubId" ...
Nauman Laghari
laghari78
Offline Send Email
Nov 18, 2002
6:41 am
8
<asp:datagrid id="gridPub" runat="server" AutoGenerateColumns="False"> <Columns> <asp:TemplateColumn HeaderText="Row Number"> <ItemTemplate> <%#...
Nauman Laghari
laghari78
Offline Send Email
Nov 18, 2002
6:42 am
9
http://www.macadamian.com/products/sscli/download.html...
Nauman Laghari
laghari78
Offline Send Email
Nov 18, 2002
6:43 am
10
using System; using System.Diagnostics; public class ShellExecuter { public static void Main() { Process.Start("test.doc"); } }...
Nauman Laghari
laghari78
Offline Send Email
Nov 18, 2002
8:33 am
11
using System; public class Caret { [System.Runtime.InteropServices.DllImport("user32.dll")] public extern static bool SetCaretBlinkTime(uint uMSeconds); ...
Nauman Laghari
laghari78
Offline Send Email
Nov 18, 2002
8:34 am
12
Implement the OnItemCreated event for the datagrid. Then set System.Web.UI.WebControls.DataGridItemEventArgs.Item.Cells[<columnno>].W idth = <width> private...
Nauman Laghari
laghari78
Offline Send Email
Nov 19, 2002
8:20 am
13
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...
Asim
asimletters@...
Send Email
Nov 20, 2002
10:08 am
14
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...
Asim
asimletters@...
Send Email
Nov 20, 2002
10:16 am
15
The Article teaches how to create a web service and consuming it in an ASP.NET Page =========================================================== ' //// Code...
Asim
asimletters@...
Send Email
Nov 20, 2002
10:28 am
16
Calling API to bring any window to the Foreground public class TopWindow { [DllImport("user32.dll")] public static extern IntPtr FindWindow(String winClass,...
Nauman Laghari
laghari78
Offline Send Email
Nov 22, 2002
10:33 am
17
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...
Asim
asimletters@...
Send Email
Nov 23, 2002
1:14 am
18
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...
Asim
asimletters@...
Send Email
Nov 29, 2002
1:19 am
19
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...
Asim
asimletters
Offline Send Email
Dec 2, 2002
8:37 pm
20
You Can easily Customize the display for your date time. '///////////////////////////////// Dim mydate As DateTime = DateTime.Now Dim show_date As string ...
Asim
asimletters
Offline Send Email
Dec 2, 2002
9:27 pm
21
Example of the most Common Decimal Numeric Format. 'Insert Commas after each thousand , with specified number of decimal precision. '//////////////// Dim var...
Asim
asimletters
Offline Send Email
Dec 3, 2002
1:17 am
22
Here is an example of advanced Numeric Format Specifier , according to exact position of numerals ' Change the number to Telephone number format ...
Asim
asimletters
Offline Send Email
Dec 3, 2002
1:27 am
23
http://support.microsoft.com/default.aspx?scid=kb;en-us;Q305140...
Nauman Laghari
laghari78
Offline Send Email
Dec 3, 2002
2:07 am
24
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 ...
Nauman Laghari
laghari78
Offline Send Email
Dec 3, 2002
5:58 pm
25
How to do String formatting ........................... private void Submit_Click(object sender, EventArgs e) { try { string valueToConvert = Value.Text; ...
Nauman Leghari
laghari78
Offline Send Email
Feb 4, 2003
8:52 pm
26
// Open an xml file into Internet Explorer Process p = System.Diagnostics.Process.Start( "iexplore.exe" , "index.xml" );...
Nauman Leghari
laghari78
Offline Send Email
Feb 28, 2003
5:13 pm
27
// import import System.Windows.Forms; // get clipboard data and if any then show in MessageBox // Retrieves the data from the clipboard. IDataObject iData =...
Nauman Leghari
laghari78
Offline Send Email
Feb 28, 2003
5:15 pm
28
// imports using System; using System.Net; using System.IO; using System.Text; // capture webpage by using HttpWebRequest class and Save into file. File is...
Nauman Leghari
laghari78
Offline Send Email
Feb 28, 2003
5:25 pm
29
Intro: The PageCapturer utility is used to download Web pages programmatically and save them onto hard disk. File: PageCapturer.zip attached with this email. ...
Nauman Leghari
laghari78
Offline Send Email
Mar 1, 2003
4:06 pm
30
Using XmlTextWriter to write an Xml file using System; using System.Xml; using System.Text; public class MainClass { public static void Main(string [] arg) { ...
Nauman Leghari
laghari78
Offline Send Email
Mar 9, 2003
9:31 am
Messages 1 - 30 of 48   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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