bellas Posted December 23, 2016 Share Posted December 23, 2016 Selam çok araştırmama ragmen bulamadim.. bir konuda yardımıza ihtiyacım var... bir makale özgünleştirme programı yapiyorum proje büyük ölcüde bitti yalniz takıldığım bir konu kaldi.. burasinida alttaki gibi yapacam ama bunu listwievden nasil alacam.. bu konuda yardımcı olursanız sevinirim.. Quote Link to comment Share on other sites More sharing options...
Extended Posted December 23, 2016 Share Posted December 23, 2016 foreach(ListViewItem item in listView1.Items) richTextBox1.Text.Replace(item.SubItems[1].Text, item.SubItems[2].Text); Şöyle bişey mi? Quote Link to comment Share on other sites More sharing options...
bellas Posted December 23, 2016 Author Share Posted December 23, 2016 olmadi hocam Quote Link to comment Share on other sites More sharing options...
Extended Posted December 23, 2016 Share Posted December 23, 2016 (edited) foreach (ListViewItem item in listView1.Items) richTextBox1.Text = richTextBox1.Text.Replace(item.SubItems[1].Text, item.SubItems[2].Text); Değiştirdiğimiz metni geri yazmayı unutmuşuz böyle deneyin bir de (SubItems id leri vs farkı olabilir düzeltirsiniz onları.) Edited December 23, 2016 by Extended Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.