Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ajikoe

    python remote function calls

    hello erhanbay, Can you explain why you want to do it? if you want to do distributed computing you can use Pyro, you can wrap your function into an object and call it in your client-server network. Sincerely Yours, Pujo
  2. ajikoe

    distributed computing in c#

    Hello, Is anyone has experiance in distributed computing project in C#? I would like to know how we can setup computer (should I use server-client mechanism?) And what C# code enable us to ask the client do what server want. Is there any website/book which discuss about that topic? Sincerely...
  3. ajikoe

    Eof file in binary file

    Hello, How can I read binary file if I know only the offset position and the type of it's element. Suppose all of the element in binary file has the same type. Thanks Pujo
  4. ajikoe

    Unable to catch error.

    Hello All, My program introduce asyncronus thread which combine with file processing. It is a regular app. I found the solution after searching from web site. It is a problem of SP1 .NET framework 1.1 I solved the problem by : 1. uninstall SP1 .NET framework 1.1 2. Uninstall .NET Framework...
  5. ajikoe

    Unable to catch error.

    Hello, I have experianced this error, but not able to catch or know what happened with it. An unhandled exception of type 'System.NullReferenceException' occurred in Unknown Module Please help Sincerely Yours, pujo
  6. ajikoe

    python communicate to server using SSH

    Hello, how can python communicate with a server using SSH protocol? Sincerely Yours, Pujo Aji
  7. ajikoe

    Connect C# to SSH

    Hello, I have problem using Supercomputer which use SSH protocol. My laptop need to run program which is inside the server and take the data from it, How can C# communicate through SSH with the server? Sincerely Yours, Pujo Aji
  8. ajikoe

    threading in multi computer?

    Hello, Can we choose which CPU handle specific thread? Pujo
  9. ajikoe

    threading in multi computer?

    Hello, Is threading in C# able to be handle in multi computer processor ? Sincerely Yours, Pujo
  10. ajikoe

    class method ?

    Hello, How can I call or define a class method (method which is called using class name not object name) For example: class MyCls: def Mymethod(self): print"helo" I want to call: MyCls.Mymethod() #it always generate error Sincerely Yours, Pujo
  11. ajikoe

    Thread.WaitForExit() is not working?

    Hello, I have a program that run notepad like this: ProcessStartInfo myP = new ProcessStartInfo(); myP.FileName = "notepad.exe"; using(Process myp = new Process()){ myp.StartInfo = myP; try{ myp.Start(); myp.WaitForExit(); Console.WriteLine("alles guttes"); } catch{...
  12. ajikoe

    Know if the delete process is finished

    Hello I would like to know when my deleting process finished.For example: public static void Main(){ myDeleteMethod(); //NextMove... } public static void myDeleteMethod(){ //delete something } Question: How can I assure that when it goes to the NextMove the deleting process are already...
  13. ajikoe

    checking the content of files in runtime

    Hello, I run a program (third party vendor) which writing something in a text files. My C# program should know if the text program is finished. How can I know if the thread is finished or clossed without checking the keyword in the text files created by the third party vendor). For example I...
  14. ajikoe

    big number wasting memory?

    Hello, I would like to use a lot of process which will use big numbers variable such as : double.MaxValue int.MaxValue Is it will waste my memory when I do the process? For simple example : public class test{ int i; public test(int inpI){ i = int.MaxValue - inpI } ...
  15. ajikoe

    piped architecture in C#

    anyone knows about the analogy of java.io.PipeReader in C#. This kind of software architecture is beautiful. Sincerely Yours, Pujo Aji
  16. ajikoe

    new keyword wasting memory?

    hallo, If I have a class for example : Class A{ int i; public A(int myi){ i = myi; } } and in my main class I can write: A a1 = new A(1);//assigning a1.i = 1 a1 = new A(2); //assigning a1.i = 2 the question : If I use the above method to change the value of i, is it wasting...
  17. ajikoe

    ArrayList inside ArrayList clone problem

    I would like to make a program which can handle ArrayList in ArrayList so it is able to simulate 2D dynamic Array, it is ok but I have a problem when I would like to do shallow copy in my ArrayList inside ArrayList. Here is my program: ArrayList AA = new ArrayList(); ArrayList temp = new...
  18. ajikoe

    Comment web report and SP2

    helo, I found something, if I degrade the security into medium and click reset button ( I was wrong because I don't click the reset button after changging the security mode), it is working but the firefox still can't able to open it. I guess it is my IE and sp2 security Problem, I still can't...
  19. ajikoe

    Comment web report and SP2

    I can find my site there, infact my site is only file with htm extention which reside in my computer folder. Do you experiance the same problem? Best Regards Pujo
  20. ajikoe

    Comment web report and SP2

    The only information I get is in the bottom there is a sign: Restricted Sites. I have tried to change the security into low but it doesn't have any effect. I also tried using Mozilla browser to open it but it gives almost the same result, in mozilla it shows a panel showing only my class, but...

Part and Inventory Search

Back
Top