hummmm.....i need 2 fill with color to that total image.... bye just click on button...
nisha 2n
Posts
-
change the image to the color.. -
change an image to the color..hii........plz help .... if i have one image...if i click on buton(i take as buton click event like btngreen_click) i need to change that total image to that green color..can u help me plz.... thanqu fnds...
~anisha~
-
change the image to the color..hii........plz help by use asp.net .... if i hve one image...if i click on some color(i take as buton click event like btngreen_click) i need to change that total image to that green color.. thanqu fnds...
~@nisha~ "The work will teach you how to do it.....!!"
-
Licence key Generatehi...... i want to protect my application with licence key....in Xaml can anyone help mee.... thanquuu...
-
how do i differentiate between the two tableshii,,,,,, yah...im getting multiple tables..... Actualy my proj is on linecount for Word files...... soo 1st im using list view for add some files .when im adding those files i hav to select diff pysician name n date.........it ill stores into data base((convert MS ACCESS data to MS Word)) n then whn im save that data ,then,,it ll b save in single word doc in different tables..by selectd pysician name n date,.. ....BUT iam getting repeating in one table lik... Dr.Name:Dr.Jhon Date:20/12/2009 Sno| FileName |Count 1 Hobbs.doc |36.31 2 Horn.doc |45.72 3 McMillan.doc |41.49 4 Smith.doc |10.72 Dr.Name:Dr.king Date:22/12/2009 Sno |FileName |Count 1 Hobbs.doc |36.31 2 Horn.doc |45.72 3 McMillan.doc |41.49 4 Smith.doc |10.72 .......................................................................... this is actully i want 2 get.... Dr.Name:Dr.Jhon Date:20/12/2009 Sno| FileName| Count 1 Hobbs.doc |36.31 2 Horn.doc| 45.72 Dr.Name:Dr.king Date:22/12/2009 Sno| FileName |Count 1 McMillan.doc |41.49 2 Smith.doc| 10.72
-
how do i differentiate between the two tablesI am trying to create 2 separate tables and print them in word, however I end up with two tables which are attached to each other..how do i differentiate between the two tables?or how do i seperate the two tables?is there a way in which i can insert a paragraph/break between the tables..can anyone please help? 1st of all im adding word files to listview.....with diff pname n date...i need to display in different tables...those files im adding/.... plzz see my code then u ll get idea... private void btnsave_Click(object sender, EventArgs e) { List DoctorNames = new List(); List dte = new List(); List pname = new List(); foreach (ListViewItem litem in listView1.Items) { if (DoctorNames.Contains(litem.SubItems[4].Text) == false) DoctorNames.Add(litem.SubItems[4].Text); } List list1 = new List(); List list2 = new List(); object oMissing = System.Reflection.Missing.Value; object oEndOfDoc = "\\endofdoc"; /* \endofdoc is a predefined bookmark */ Microsoft.Office.Interop.Word._Application oWord; Microsoft.Office.Interop.Word._Document oDoc; oWord = new Microsoft.Office.Interop.Word.Application(); oWord.Visible = true; oDoc = oWord.Documents.Add(ref oMissing, ref oMissing, ref oMissing, ref oMissing); foreach (string name in DoctorNames) { Microsoft.Office.Interop.Word.Paragraph oPara1; oPara1 = oDoc.Content.Paragraphs.Add(ref oMissing); oPara1.Range.Text = name.ToString(); oPara1.Range.Font.Bold = 1; oPara1.Format.SpaceAfter = 24; //24 pt spacing after paragraph. oPara1.Range.InsertParagraphAfter(); Microsoft.Office.Interop.Word.Paragraph oPara2; oPara2 = oDoc.Content.Paragraphs.Add(ref oMissing); oPara2.Range.Text = "Date:" + dte.ToString(); oPara2.Range.Font.Bold = 1; oPara2.Format.SpaceAfter = 24; //24 pt spacing after paragraph. oPara2.Range.InsertParagraphAfter(); string query = "Select FileName,LineCount from tbl where PName='" + name + "'";
-
How to separate word tables for differnet fileshi....now im doing work on Line count for word documents...1st i hav 2 select Dr name n date n then add files in listview and then if i go for save those files will save in ms word table as separately as Different DR name n Date wise in seperate tables... ....BUT iam getting repeating in one table lik... Dr.Name:Dr.Jhon Date:20/12/2009 Sno FileName Count 1 Hobbs.doc 36.31 2 Horn.doc 45.72 3 McMillan.doc 41.49 4 Smith.doc 10.72 Dr.Name:Dr.king Date:22/12/2009 Sno FileName Count 1 Hobbs.doc 36.31 2 Horn.doc 45.72 3 McMillan.doc 41.49 4 Smith.doc 10.72 .......................................................................... this is actully i want 2 get.... Dr.Name:Dr.Jhon Date:20/12/2009 Sno FileName Count 1 Hobbs.doc 36.31 2 Horn.doc 45.72 Dr.Name:Dr.king Date:22/12/2009 Sno FileName Count 1 McMillan.doc 41.49 2 Smith.doc 10.72 Here is my code... private void btnsave_Click(object sender, EventArgs e) { for (int k = 1; k < listView1.Items.Count; k++) { if (listView1.Items[k - 1].Text != listView1.Items[k].Text) { dte.Add(listView1.Items[k - 1].Text); dte.Add(listView1.Items[k].Text); } if (listView1.Items[k - 1].SubItems[3].Text != listView1.Items[k].SubItems[3].Text) { pname.Add(listView1.Items[k - 1].SubItems[3].Text); pname.Add(listView1.Items[k].SubItems[3].Text); } } object oMissing = System.Reflection.Missing.Value; object oEndOfDoc = "\\endofdoc"; /* \endofdoc is a predefined bookmark */ Microsoft.Office.Interop.Word._Application oWord; Microsoft.Office.Interop.Word._Document oDoc; oWord = new Microsoft.Office.Interop.Word.Application(); oWord.Visible = true; oDoc = oWord.Documents.Add(ref oMissing, ref oMissing, ref oMissing, ref oMissing); for (int k = 0; k < dte.Count; k++) { Microsoft.Office.Interop.Word.Paragraph oPara1; oPara1 = oDoc.Content.Paragraphs.Add(ref oMissing); oPara1.Range.Text = pname[k].ToString(); oPara1.Range.Font.Bold = 1; oPara1.Format.SpaceAfter = 24; //24 pt spacing after paragraph. oPara1.Range.InsertParagraphAfter(); Microsoft.Of
-
Binding treeview[urgent plz]hai...Shameel.....yah i tried ..but again it displaying in hierarchy manner...i dont want Dr's name displaying in another same hospital name.... (actuly i given in Data table ,,in same hospital name with 2 Dr's names....but...its displaying in 2 different treenodes...i want 2 show in single hospital name with 2 Dr's names) Apolo|Dr.jhon Image|Dr.Krish Care |Dr.Ram Apolo|Dr.sri Image|Dr.prabhu Care |Dr.san public void TreeviewBind() { query= "Select * from Clinic_tbl"; da = new SqlDataAdapter(query, con); DataSet ds = new DataSet(); da.Fill(ds, "Clinic"); foreach (DataRow row in ds.Tables[0].Rows) { rootNode = treeView1.Nodes.Add(row[0].ToString()); rootNode.Nodes.Add(row[1].ToString()); } } i hope u understod my lang..im new for Dotnet...this is my 1st project.........thanqu:)
-
Binding treeview[urgent plz]hai...sory sory...im new for thees messages ......i dono how 2 write...forgive me yar...:)
-
Binding treeview[urgent plz]hai...sory sory...im new for thees messages ......i dono how 2 write...forgive me yar...:) any ways thanqu for ur reply....:)
-
Binding treeview[urgent plz]hai....help me plz....urgent i create data table for treeview lik dis with hospital name as treenodes|Dr names as subnodes .. Apolo|Dr.jhon Image|Dr.Krish Care|Dr.Ram Apolo|Dr.sri Image|Dr.prabhu Care|Dr.san i want treeview display lik dis.... -.Apolo . . . . . .Dr.jhon . .Dr.sri . -Image . . . . . .Dr.prabhu . .Dr.Krish . -Care . . .Dr.Ram .Dr.san but in treeview it displaying lik dis..it opening in another treenodes with single name.. -.Apolo . . . . . .Dr.jhon . . -Image . . . . . .Dr.prabhu . . -Care . . .Dr.Ram -.Apolo . . . . . . .Dr.sri . -Image . . . . . . .Dr.Krish . -Care . . .Dr.san thanqu....:)
-
How to get Word 2003's count of characters INCLUDING SPACES?hai...... help me plz...i done this prob ..but that count nums displaying in same in file path....i want to dispaly in saparate path .... i took paths lik..|sno|filename|count|...........n i take multiple files which is displaying in sno....but char count was nt dispalying in count path.......its displaying in filename path... plz help me how can i get that count in next path....? thanquuu.:)
-
Merge Word documents into one fileHai.....im anu.. can u ppl help me plzz.......im doing..Merge Word documents into one file...i wrote code lik below...i create a place (D:/destination/new.doc)..wher my documents ill open....in debugging whn i clik on merge button no files showing in "D:/destination/new.doc".... im a fresher 4r dotnet .... hope u ll understnd my lang.... Thanqu .... :) namespace DocMerger { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { List files=new List(); DialogResult dr = new DialogResult(); dr = openFile.ShowDialog(); if (dr == DialogResult.OK) { listView1.Items.Clear(); files.AddRange(openFile.FileNames.ToList()); foreach (string file in files) { listView1.Items.Add(Path.GetFileName(file)); } } } private void button2_Click(object sender, EventArgs e) { DocMerger db=new DocMerger(); string path="D:/source/"; string output="D:/destination/new.doc"; string temp="D:/destination/temp.doc"; db.CopyMerge(temp,path,output); } } }
-
how to design page navigation window form using back and next buttonhai im asking in windows application........
-
How to lock the column width expansion in list view at run timeHow to lock the column width expansion in list view at run time anu gunturi
-
how to design page navigation window form using back and next buttonhi to all..... plz help me in....how to design page navigation window form using back and next button......for exmple...if we take a window like install wizard window..in that v use a button name as next.. if we clik that next ..the next page ill be open ...like ....sooo can u any one send me that source code... @nu Gunturi
-
how to design page navigation window form using back and next button.hi to all..... plz help me in....how to design page navigation window form using back and next button......for exmple...if we take a window like install wizard window..in that v use a button name as next.. for go through the next step...like ....sooo can u any one send me that source code...
-
how to design page navigation window form using back & next buttonhi to all..... plz help me in....how to design page navigation window form using back and next button......for exmple...if we take a window like install wizard window..in that v use a button name as next.. for go through the next step...like ....sooo can u any one send me that source code... @nu Gunturi