473,399 Members | 3,832 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

Change The Color

HI Guys
i am developing a Tool which will be compared with two
different files but files data should be same.i am using that below
code it's working and displaying the error into textbox.
but i want highlight that missing word into Richtextbox2 which is
displaying in textbox.

Create two string s1,s2 in main class then
private void button1_Click(object sender, System.EventArgs e)
{
s1 = richTextBox1.SelectedText.ToString();
s2 = richTextBox2.SelectedText.ToString();
CheckString(s1, s2);
}
private void CheckString(string s1, string s2)
{
try
{
string[,] line = new string[500, 2];
string[,] line1 = new string[500, 2];
int i = 0;
for (i = 0; i < 500; i++)
{
line[i, 1] = "0";
line1[i, 1] = "0";
}
i = 0;
char[] fullstop = new char[1];
fullstop[0] = ' ';
string[] AllLine = new string[500];
AllLine = s1.Split(fullstop);

string[] AllLine1 = new string[500];
AllLine1 = s2.Split(fullstop);

string error = " ";

while (i<AllLine.Length && i< AllLine1.Length) //(AllLine[i] != ""
&& AllLine1[i] != "")
{
line[i, 0] = AllLine[i];
line1[i, 0] = AllLine1[i];
string[] word = new string[50];
string[] word1 = new string[50];
int j = 0;
for (j = 0; j < 50; j++)
{
word[j] = null;
word1[j] = null;
}
fullstop[0] = ' ';
word = line[i, 0].Split(fullstop);
word1 = line1[i, 0].Split(fullstop);
int len, len1, min;
len1 = word1.Length;
len = word.Length;

if (word.Length word1.Length)
min = word1.Length;
else
min = word.Length;

j = 0;

while (j < min)
{
if (word[j] != "" && word1[j] != "")
{
if (word[j] != word1[j])//main comparison is taking place
{
error = error + " ," + word1[j];
}
}
j++;
}
if (word1.Length word.Length)
{
for (; j < word1.Length; j++)
error = error + " ," + word1[j];
}
i++;
}
textBox1.Text=error;
}

catch (Exception ex)
{
MessageBox.Show("ex");
}
plz help me
Twinkle

Aug 30 '06 #1
0 1064

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: kchengso | last post by:
One of my printers in my printer.devicename call returns in lower case. Is it possible for me to change it to upper case? I am also wondering how, in the first place, this particular printer...
2
by: Sami | last post by:
I keep getting the famous 'Too Many Connection' Error, and don't know how to change my variables, so they persist even if i have to restart mysql service. Platform: Windows 2003 Server My...
4
by: J.C. Flores | last post by:
Hello all, First of all, I must state that I'm new to SQL Server, but have been a long-time software guy for quite some time. Please excuse the potential simplicity of the solution to my...
8
by: Patrick Kowalzick | last post by:
Dear NG, I would like to change the allocator of e.g. all std::strings, without changing my code. Is there a portable solution to achieve this? The only nice solution I can think of, would be...
3
by: roger beniot | last post by:
I would like to figure out how to detect an IP address change for an XP/Win2K3 machine that is leasing an IP via DHCP (and do it in C#)... Is there any event that indicates an IP address...
1
by: Anthony Boudouvas | last post by:
Hi to all, i have a treeview that i put some nodes in it with their repsective images. If i try to change the image and set it to some other ImageList index, nothing happens. The code i use...
10
by: Fabrizio | last post by:
(Sorry for the crosspost, but I really don't know which is the right newsgroup!) Hi all, I try to change the password to a user that as to change the password at first logon: try {
5
by: who be dat? | last post by:
Hello all. I'm writing an application that is writing trace information that can be viewed in trace.axd. I would like to rename this and use a different name specific to my application. I know...
4
by: active | last post by:
It appears to me that if I change the Control's client size the controls size does not change to agree with the new size. Does it work like the VB6 ScaleWidth and ScaleHeight? That is after I...
3
by: Tom | last post by:
I am writing a Visual basic .Net database application. There are many forms that first let you select and look at a DB record and then when you click a "modify" button you are allowed to change...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.