Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 1.0 > C#
|
C# Programming questions specific to the Microsoft C# language. See also the forum Beginning Visual C# to discuss that specific Wrox book and code.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old September 9th, 2005, 08:21 AM
PT PT is offline
Authorized User
 
Join Date: Jun 2005
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Default Adding items to datagrid/Uploading files

hey all
2 qiestions:

1 => i want to add items to a data grid from a textbox
i tried to use to add a item:
      DataGridItem dgitem = new DataGridItem(1, 1, ListItemType.Item);
      ItemsGrid.Controls.Add(dgitem);
and to add a column:
      DataTable dt = new DataTable();
      DataRow dr;

      dt.Columns.Add(new DataColumn("2", typeof(string)));
      dr = dt.NewRow;
      dr[0] = "TEST";

but nothing seems to work...
----------------------------------"-----------------------------------

2 => i wanna filter files extentions(pdf and tiff) in the Web Config file... im searchig for a file using the UploadFile input

can someone help me?

tkz in advance

/PT







Similar Threads
Thread Thread Starter Forum Replies Last Post
adding items to list box using javascript k.manisha ASP.NET 1.0 and 1.1 Professional 3 February 16th, 2007 06:32 AM
Adding Menu Items using VB SamuelP ASP.NET 2.0 Professional 0 October 23rd, 2006 08:01 AM
Adding items to datagrid at runtime hisham_abu General .NET 1 August 24th, 2005 02:11 AM
Adding Items to the combobox from the second form Raghavendra_Mudugal C# 7 May 12th, 2005 06:12 AM
Adding items to ListBox on the client. chessgame General .NET 4 August 7th, 2004 12:05 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.