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: ahsan786
  • Content: Threads
  • Order by date
  1. ahsan786

    Java Process

    execProcess = rt.exec("cmd /c C:/prg.exe < C:/in.txt > C:/pout.txt",null, "C:/"); while((System.currentTimeMillis() < (startTime + maxAllowTime))){ //for each test case try{ if(execProcess.exitValue() == 0){ break; }else{ break;//terminate the process abnormal??? }...
  2. ahsan786

    Security Paramount

    Hi, There is a server that is designed to take programming files from the client and then run them on the machine. The languages that may be used are: c, c++, java Now the challenge is how to make the system secure. here is some ideas that were introduced through some discussions with some...
  3. ahsan786

    Security Paramount

    Hi, There is a server that is designed to take programming files from the client and then run them on the machine. The languages that may be used are: c, c++, java Now the challenge is how to make the system secure. here is some ideas that were introduced through some discussions with some...
  4. ahsan786

    RMI

    ================== CLIENT SIDE ================== try { srvIntrface = (MyServerInterface) Naming.lookup("rmi://"+server+":1099/Interface"); }catch(Exception e){System.out.println("clientForm, lookup: Error getting the remote service");} byte[] fileData = srvIntrface.getFile()...
  5. ahsan786

    annorying and frustrating problem- please help!!!!

    i have three forms i.e. welcome, login and exit each of them have buttons, 1. welcome button directs to login form and 2. the login button directs to the exit form and 3. then the exit button exits the program The 3rd step does not work. the program just exits the exit form and stays in the...
  6. ahsan786

    MFC show default values

    Hi, I am facing a bit of a difficulty here. does any one know how to show default values in the textbox. for example. there is the name text box when i run the application i want the textbox to show my name into it. i.e. Your name: ahsan786 (the name can be changed by the user) thank you
  7. ahsan786

    MFC create window

    Hi, This is my first message on this forum. so greetings to all of you. Below the function i am facing problems with. i call this function with a checkbox. when the window is created the information displayed on it appears fine but another window is overlapped on it the contents of the...

Part and Inventory Search

Back
Top