Click here to Skip to main content
15,913,854 members
Home / Discussions / C#
   

C#

 
AnswerRe: help regarding crystal report Pin
Harini N K7-Mar-07 23:32
Harini N K7-Mar-07 23:32 
GeneralRe: help regarding crystal report Pin
vijayashanthi8-Mar-07 0:13
vijayashanthi8-Mar-07 0:13 
GeneralRe: help regarding crystal report Pin
Harini N K8-Mar-07 0:19
Harini N K8-Mar-07 0:19 
GeneralRe: help regarding crystal report Pin
vijayashanthi8-Mar-07 0:35
vijayashanthi8-Mar-07 0:35 
QuestionRecording screen activity into video format Pin
jacobxu7-Mar-07 22:55
jacobxu7-Mar-07 22:55 
AnswerRe: Recording screen activity into video format Pin
Pete O'Hanlon8-Mar-07 0:55
mvePete O'Hanlon8-Mar-07 0:55 
QuestionHelp regarding Listview Pin
anu817-Mar-07 22:48
anu817-Mar-07 22:48 
AnswerRe: Help regarding Listview Pin
PS@Codeproj7-Mar-07 23:14
PS@Codeproj7-Mar-07 23:14 
Hi,

At any time you can only specify the width of each column only..And not the width of each item...

For example,let the name of the ListView as "Logs".

You can add the columns like,
Logs.Columns.Add("Column1", 100, HorizontalAlignment.Center); where the second parameter (100) is the width of the first column... You can change this value to any number.

While adding the subitems , first you create a parent item
ListViewItem lList = new ListViewItem("Employee Name");//Parent Listview item

Then add the sub items to teh parent one...
lList.SubItems.Add("ABCD");
lList.SubItems.Add("EFGH"); Etc.,

Finally,
Logs.Items.Add(lList);



Thanks & Rgds,
Sri..

QuestionPlease let me know if it is posssible to use instance of one application into another ? For example, i have one application, I am creatiing a instance for it, I want to access this same instance into other application ? Pin
Mr Perfect7-Mar-07 22:38
Mr Perfect7-Mar-07 22:38 
AnswerRe: use instance of one application into another Pin
Guffa7-Mar-07 23:17
Guffa7-Mar-07 23:17 
GeneralRe: use instance of one application into another Pin
Mr Perfect7-Mar-07 23:42
Mr Perfect7-Mar-07 23:42 
GeneralRe: use instance of one application into another Pin
Pete O'Hanlon8-Mar-07 0:01
mvePete O'Hanlon8-Mar-07 0:01 
GeneralRe: use instance of one application into another Pin
Mr Perfect8-Mar-07 0:11
Mr Perfect8-Mar-07 0:11 
QuestionPrint to a file not on paper Pin
rsgdba7-Mar-07 22:35
rsgdba7-Mar-07 22:35 
QuestionPlease help me out : How to convert "CrystalDecisions.Shared.ExportFormatType.PortableDocFormat" to System.IO.MemoryStream Pin
shanthivasan7-Mar-07 22:20
shanthivasan7-Mar-07 22:20 
AnswerRe: Please help me out : How to convert "CrystalDecisions.Shared.ExportFormatType.PortableDocFormat" to System.IO.MemoryStream Pin
Harini N K7-Mar-07 22:39
Harini N K7-Mar-07 22:39 
GeneralRe: Please help me out : How to convert "CrystalDecisions.Shared.ExportFormatType.PortableDocFormat" to System.IO.MemoryStream Pin
shanthivasan8-Mar-07 0:35
shanthivasan8-Mar-07 0:35 
QuestionTreeNode with CheckBox Pin
stancrm7-Mar-07 22:15
stancrm7-Mar-07 22:15 
AnswerRe: TreeNode with CheckBox Pin
ChandraRam8-Mar-07 1:37
ChandraRam8-Mar-07 1:37 
AnswerRe: TreeNode with CheckBox Pin
Pete O'Hanlon8-Mar-07 2:35
mvePete O'Hanlon8-Mar-07 2:35 
QuestionSetting the names of Textbox's at runtime Pin
RichardContact-17-Mar-07 22:00
RichardContact-17-Mar-07 22:00 
AnswerRe: Setting the names of Textbox's at runtime Pin
\laddie8-Mar-07 23:51
\laddie8-Mar-07 23:51 
QuestionProblem reading mails from Exchange server. Pin
Nitin19817-Mar-07 21:55
Nitin19817-Mar-07 21:55 
AnswerRe: Problem reading mails from Exchange server. Pin
Nitin19817-Mar-07 22:29
Nitin19817-Mar-07 22:29 
QuestionDelete Directory Pin
Radu Sorin7-Mar-07 21:51
Radu Sorin7-Mar-07 21:51 

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.