Hello again. Had yet another problem.
This is the following log:
Maalinger: Node: 1 Dato og KL: 2013-05-03 14:10:57 Puls: 554 Blodtrykk: 376 Kroppstemperatur: 20 Respirasjonsrate: 20$
Maalinger: Node: 1 Dato og KL: 2013-05-03 14:11:07 Puls: 554 Blodtrykk: 376 Kroppstemperatur: 20 Respirasjonsrate: 20$
Maalinger: Node: 1 Dato og KL: 2013-05-03 14:11:17 Puls: 554 Blodtrykk: 376 Kroppstemperatur: 20 Respirasjonsrate: 20$
Maalinger: Node: 1 Dato og KL: 2013-05-03 14:11:27 Puls: 554 Blodtrykk: 376 Kroppstemperatur: 20 Respirasjonsrate: 20$
Maalinger: Node: 1 Dato og KL: 2013-05-03 14:11:37 Puls: 554 Blodtrykk: 376 Kroppstemperatur: 20 Respirasjonsrate: 20$
Maalinger: Node: 1 Dato og KL: 2013-05-03 14:11:47 Puls: 554 Blodtrykk: 376 Kroppstemperatur: 20 Respirasjonsrate: 20$
Maalinger: Node: 1 Dato og KL: 2013-05-03 14:11:57 Puls: 554 Blodtrykk: 376 Kroppstemperatur: 20 Respirasjonsrate: 20$
Maalinger: Node: 1 Dato og KL: 2013-05-03 14:12:07 Puls: 554 Blodtrykk: 376 Kroppstemperatur: 20 Respirasjonsrate: 20$
Maalinger: Node: 1 Dato og KL: 2013-05-03 14:12:17 Puls: 554 Blodtrykk: 376 Kroppstemperatur: 20 Respirasjonsrate: 20$
Please disregard the norwegian. :P
So this is my current function, part of a wfa, btn click.
private void btnSearch_Click(object sender, EventArgs e)
{
try
{
DateTime FromTime, ToTime;
string Line;
int lognr;
bool FoundStart = false;
bool Writing = false;
bool FoundEnd = false;
FromTime = dateTimePickerFra.Value;
ToTime = dateTimePickerTil.Value;
lognr = Convert.ToInt32(txt_SokNr.Text);
StreamReader _in;
StreamWriter _out;
_out = File.CreateText("Searched in log");
_in = File.OpenText("Log " + lognr + ".txt");
while(Writing ==false) //
{
Line = _in.ReadLine();
if (Line != null)
{
FoundStart = Line.Contains(FromTime.ToString("yyyy-MM-dd HH:mm:ss"));
}
if (FoundStart)
{
_out.WriteLine(Line);
Writing = true;
}
}
while (Writing == true)
{
Line = _in.ReadLine();
_out.WriteLine(Line);
if (Line != null)
{
FoundEnd = Line.Contains(ToTime.ToString("yyyy-MM-dd HH:mm:ss"));
}
if (FoundEnd)
{
Writing = false;
}
}
_in.Close();
_out.Close();
System.Diagnostics.Process.Start("notepad.exe", "Searched in log");
}
catch
{
MessageBox.Show("Remember to choose a log to search in");
}
So, if i search between lets say 2013-05-03 14:10:37 and 2013-05-03 14:11:47 the code works great. But what if i write 2013-05-03 14:10:00 to 2013-05-03 14:12:00, it obviously wont work since "Contains" needs the spesific time.
So my question is, how can i find the first value greater then the given time. (Or equal too, of course).
Thanks in advance, Asotop