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: *

  • Users: ajikoe
  • Content: Threads
  • Order by date
  1. 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...
  2. 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
  3. 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
  4. ajikoe

    python communicate to server using SSH

    Hello, how can python communicate with a server using SSH protocol? Sincerely Yours, Pujo Aji
  5. 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
  6. ajikoe

    threading in multi computer?

    Hello, Is threading in C# able to be handle in multi computer processor ? Sincerely Yours, Pujo
  7. 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
  8. 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{...
  9. 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...
  10. 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...
  11. 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 } ...
  12. 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
  13. 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...
  14. 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...
  15. ajikoe

    Comment web report and SP2

    Hello, I wonder why the result of comment web report shows blank page after I installed sp2 and a vew program like spysweeper. any help is appreciated. Sincerely Yours, Pujo
  16. ajikoe

    c# 2005 and c# 2003

    Hello, I would like to install c# 2005 in my computer which has already Visual C# 2003. Is there any information about everything I should aware of ? Thanks Pujo
  17. ajikoe

    < literal symbol in XML

    Hello, I would like to make XML comment but it include a symbol <. How can I treat it literally? Example: <remarks>Helo <world> </remarks> Thanks Pujo
  18. ajikoe

    visual c# standar Edition works fine with XP SP2

    Hello, I have just installed XP Sp2 in my computer, then I start checking my visual c#, it is working fine, and the NUnit too. But I still have to check more... Good News for new XP SP2
  19. ajikoe

    Is Visual C# unable to update

    Hello, I'm trying to update my Microsoft Visual C# standard edition but unable to update it because it alwalys said there is a problem when downloading the required files. Is this normal for standard edition? Pujo
  20. ajikoe

    service pack 2 XP affect Visual C#?

    Hello, I have heard today that the service pack 2 XP is coming up today, but since I am in Europa may be we will have to wait a few days to get the new service pack. I wonder if this service pack will have a problem with the debugger in Visual C#? Since Visual C# doesn't have a support for...

Part and Inventory Search

Back
Top