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!

Recent content by ajikoe

  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

Part and Inventory Search

Back
Top