|
is your file is present int the 3 folder??
if not then you must first transfer you files to the 3 folder...
otherwise compile your file from within the folder where it do exists..
|
|
|
|
|
I have project to tacking the eye, I need the smallest algorithm to use can any body help me with it, or some links that are related.(I need it in C#)
|
|
|
|
|
sanforjackass wrote: Eye tracing algorithm
sanforjackass wrote: I have project to tacking the eye
From Eye 'tracing' and 'tacking' the eye I may safely assume you're asking for a eye tracking algorithm.
Do you know CodeProject has an article search engine [^]?
But, let me do more for you...[^].
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
thank you but it didd not help!!!
any sugestes
|
|
|
|
|
hi,
how i can know if the process die normally or abnormally in c#(if there is boolean variable in c# to it)?
|
|
|
|
|
Use the FormClosing of your main form. It's EventArgs will tell you the reason;
Being one of these;
* ApplicationExitCall
* FormOwnerClosing
* MdiFormClosing
* TaskManagerClosing
* UserClosing
* WindowsShutDown
Enjoy
I are troll
|
|
|
|
|
Yes. Use the above if you are using a windows app
Use "AppDomain.CurrentDomain.ProcessExit" event otherwise. which will get called on th eprocess exit.. This is for the full appdomain
|
|
|
|
|
i'm writing a c# code similar to the windows task manager, and i need to konow if each process in it closed normally or not, how i can do this in c#?
|
|
|
|
|
The task-manager just sends messages to the application, and if it doesn't proces them it 'assumes' that the application is dead.
I doubt that the taskmanager gets the exit-reason of each application.
I are troll
|
|
|
|
|
hi,
how to get user and sys cpu time of a process in c#?
and
how to get total cpu usage of each process in c#?
|
|
|
|
|
|
Environment.MachineName
Environment.osversion
the quieter u become more u hear
|
|
|
|
|
hi,
I am working on a door lock system. i want to read data from each reader.
if coming data is valid card no. then i have to give 'Gy'[G is address of reader] command to that particular reader. i am using axWinsock1 component and using timer control to read data from
reader . it continuously reading from 'G' reader.
private void timer1_Tick(object sender, EventArgs e)
{
lbl_time.Text = System.DateTime.Now.ToString();
try
{
string cmd = "G0";
byte[] msg = Encoding.ASCII.GetBytes(cmd.ToString());
axWinsock1.SendData(msg);
Object objData = new System.Object();
axWinsock1.GetData(ref objData, 8, 1024);
string strData = (string)objData;
if (strData.Trim() != "0")
{
timer1.Enabled = false;
txtDataRx.Text = txtDataRx.Text + "Input Time : "+ System.DateTime.Now.ToString();
txtDataRx.Text = txtDataRx.Text + " Card No. : "+ strData;
cmd = "Gy";
msg = Encoding.ASCII.GetBytes(cmd.ToString());
axWinsock1.SendData(msg);
axWinsock1.SendData(msg1);
txtDataRx.Text = txtDataRx.Text + "Door Open";
timer1.Enabled = true;
}
}
catch(Exception se)
{
//MessageBox.Show ( );
string msg = se.ToString();
}
}
HOW I IMPLEMENT THIS FOR MORE THEN ONE READER ?
|
|
|
|
|
hi dear
i am also working in same RFID passive card using door open system
i have card reader and passive card when i show my card that reader read.
here we are using TCP/IP and c# asp.net
when i show the card the cardId or details i want to display into my asp.page
so i want write event or delegates if u have coding pls mail me its my mail Id jagamca.cs@gmail.com
|
|
|
|
|
card reader to machine
machine to card reader via tcp/ip c# asp.net
how to we fire event or delegate
getting data from reader to asp.net page please if you have send me the tcp/ip method
jagamca.cs@gmail.com
|
|
|
|
|
I try these code, but doesn't work,
string file = @"e:\test.log";<br />
<br />
FileStream fs1 = new FileStream(file, FileMode.Append, FileAccess.Write, FileShare.Read);<br />
FileStream fs2 = new FileStream(file, FileMode.Open, FileAccess.Read); <br />
throw an exception:
System.IO.IOException: The process cannot access the file 'e:\test.log' because it is being used by another process..
how to solve this?
Glad to discuss with you and best wishes.
|
|
|
|
|
FileStream fs1 = new FileStream(file, FileMode.Append, FileAccess.Write, FileShare.ReadWrite);
FileStream fs2 = new FileStream(file, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
TVMU^P[[IGIOQHG^JSH`A#@`RFJ\c^JPL>;"[,*/|+&WLEZGc`AFXc!L
%^]*IRXD#@GKCQ`R\^SF_WcHbORY87֦ʻ6ϣN8ȤBcRAV\Z^&SU~%CSWQ@#2
W_AD`EPABIKRDFVS)EVLQK)JKSQXUFYK[M`UKs*$GwU#(QDXBER@CBN%
Rs0~53%eYrd8mt^7Z6]iTF+(EWfJ9zaK-iTV.C\y<pjxsg-b$f4ia>
--------------------------------------------------------
128 bit encrypted signature, crack if you can
|
|
|
|
|
thanks for your reply, i have tried this, throw the same exception.
i nearly tried all 'FileAccess', 'FileShare' combination
Glad to discuss with you and best wishes.
|
|
|
|
|
well, I check this and its working without any error
TVMU^P[[IGIOQHG^JSH`A#@`RFJ\c^JPL>;"[,*/|+&WLEZGc`AFXc!L
%^]*IRXD#@GKCQ`R\^SF_WcHbORY87֦ʻ6ϣN8ȤBcRAV\Z^&SU~%CSWQ@#2
W_AD`EPABIKRDFVS)EVLQK)JKSQXUFYK[M`UKs*$GwU#(QDXBER@CBN%
Rs0~53%eYrd8mt^7Z6]iTF+(EWfJ9zaK-iTV.C\y<pjxsg-b$f4ia>
--------------------------------------------------------
128 bit encrypted signature, crack if you can
|
|
|
|
|
Sorry for my mistake, i create a test project like the first message, and it works.
but in my real project, it always throw the exception...
I wrote a singleton mode class, Logger class, to write log to file.
This logger class has 'LogLevel' property, the actions like in log4net.
then, i wrote a unit test class to test its LogLevel property setting will work.
...
I use the first FileStream in Logger class, then
I use the second FileStream in Logger Unit Test class, to check log message is corrent.
...
the second FileStream always throw that exception.
Glad to discuss with you and best wishes.
|
|
|
|
|
|
glad, you got it work
TVMU^P[[IGIOQHG^JSH`A#@`RFJ\c^JPL>;"[,*/|+&WLEZGc`AFXc!L
%^]*IRXD#@GKCQ`R\^SF_WcHbORY87֦ʻ6ϣN8ȤBcRAV\Z^&SU~%CSWQ@#2
W_AD`EPABIKRDFVS)EVLQK)JKSQXUFYK[M`UKs*$GwU#(QDXBER@CBN%
Rs0~53%eYrd8mt^7Z6]iTF+(EWfJ9zaK-iTV.C\y<pjxsg-b$f4ia>
--------------------------------------------------------
128 bit encrypted signature, crack if you can
|
|
|
|
|
hi
i want to learn OOP concepts any article or toutorial point to above is highly appericated
where i can learn OOP concepts
Best Regards
|
|
|
|
|
|
Hi,
I have a console application to convert XML to HTML through XSLT.
When I try to execute this exe from server (intranet) I encound the following exception:
Request for the permission of type 'System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed..
Please advice.
Thanks,
HH
|
|
|
|