Click here to Skip to main content
15,905,782 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to do I Print data Row in Database Table using C#.? Pin
Heath Stewart9-Mar-05 7:09
protectorHeath Stewart9-Mar-05 7:09 
GeneralRetrieving extended file properties Pin
Vlad Judys8-Mar-05 18:30
Vlad Judys8-Mar-05 18:30 
GeneralRe: Retrieving extended file properties Pin
Heath Stewart9-Mar-05 6:41
protectorHeath Stewart9-Mar-05 6:41 
GeneralRe: Retrieving extended file properties Pin
lil dracula9-Mar-05 7:55
susslil dracula9-Mar-05 7:55 
Question[VS .NET] Drag & Drop into Solution Explorer? Pin
spacebass50008-Mar-05 17:59
spacebass50008-Mar-05 17:59 
AnswerRe: [VS .NET] Drag & Drop into Solution Explorer? Pin
Heath Stewart9-Mar-05 6:23
protectorHeath Stewart9-Mar-05 6:23 
GeneralRe: [VS .NET] Drag & Drop into Solution Explorer? Pin
spacebass50009-Mar-05 6:30
spacebass50009-Mar-05 6:30 
GeneralRe: [VS .NET] Drag & Drop into Solution Explorer? Pin
Heath Stewart9-Mar-05 7:48
protectorHeath Stewart9-Mar-05 7:48 
GeneralRe: [VS .NET] Drag & Drop into Solution Explorer? Pin
spacebass50009-Mar-05 8:44
spacebass50009-Mar-05 8:44 
GeneralRe: [VS .NET] Drag & Drop into Solution Explorer? Pin
Heath Stewart9-Mar-05 9:47
protectorHeath Stewart9-Mar-05 9:47 
QuestionHow to do a balloon tip in a tray icon in C# Pin
howardsilver8-Mar-05 17:41
howardsilver8-Mar-05 17:41 
AnswerRe: How to do a balloon tip in a tray icon in C# Pin
TylerBrinks9-Mar-05 6:05
TylerBrinks9-Mar-05 6:05 
AnswerRe: How to do a balloon tip in a tray icon in C# Pin
Kasdoffe9-Mar-05 6:09
Kasdoffe9-Mar-05 6:09 
GeneralExpriences Pin
Toan Thang8-Mar-05 16:49
Toan Thang8-Mar-05 16:49 
GeneralRe: Expriences Pin
Chua Wen Ching8-Mar-05 23:34
Chua Wen Ching8-Mar-05 23:34 
Generalwrap a dll into another dll Pin
ppp0018-Mar-05 15:28
ppp0018-Mar-05 15:28 
GeneralRe: wrap a dll into another dll Pin
mav.northwind8-Mar-05 22:27
mav.northwind8-Mar-05 22:27 
GeneralRe: wrap a dll into another dll Pin
Chua Wen Ching8-Mar-05 23:40
Chua Wen Ching8-Mar-05 23:40 
GeneralRe: wrap a dll into another dll Pin
Heath Stewart9-Mar-05 6:19
protectorHeath Stewart9-Mar-05 6:19 
GeneralListView Pin
Bahadir Cambel8-Mar-05 14:43
Bahadir Cambel8-Mar-05 14:43 
GeneralRe: ListView Pin
Christian Graus8-Mar-05 14:48
protectorChristian Graus8-Mar-05 14:48 
GeneralRe: ListView Pin
Bahadir Cambel8-Mar-05 15:44
Bahadir Cambel8-Mar-05 15:44 
Thanks for the reply ,
May be because of the style of the text , you cant see right , I only add the columns to the listView in the first loop, then I add values to those columns..
well it seems like , the values are ok , by this code..But I guess , I made the ListView nervous , treating like a dataGrid.May be you are right, I was just looking for fun , and develop some UI skills...Laugh | :laugh:
<br />
			StringBuilder s = new StringBuilder();<br />
			foreach (ListViewItem li in this.listView1.Items)<br />
			{<br />
				s.Append(li.Text);<br />
				for(int k =0;k<this.listView1.Items[li.Index].SubItems.Count;k++)<br />
				{<br />
					s.Append(this.listView1.Items[li.Index].SubItems[k].Text);<br />
					s.Append("-");<br />
				}<br />
				s.Append("\n");<br />
				s.Append("------------------------");<br />
				s.Append("\n");<br />
			}<br />
			<br />
			MessageBox.Show(s.ToString());<br />

GeneralRe: ListView Pin
Bahadir Cambel8-Mar-05 16:55
Bahadir Cambel8-Mar-05 16:55 
GeneralRe: ListView Pin
Rob Graham8-Mar-05 18:16
Rob Graham8-Mar-05 18:16 
QuestionHow I can DISABLE the print button of the printPreviewDialog Toolbar. Pin
JeyJey20058-Mar-05 14:40
JeyJey20058-Mar-05 14:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.