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 Chriss Miller 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 IPOz

  1. IPOz

    Python or Ruby ?

    Ruby is flexible than python. But python has many good modules ... thanks for all your answer ! For me if no rails, i will not know ruby :) garbage in,garbage out
  2. IPOz

    Python or Ruby ?

    hi, friends i have heard both Ruby and Python can do same thing. i evaluated them quickly and i like Python a bit. But i still want to hear more infomation ... any suggestion is appreciated ! garbage in,garbage out
  3. IPOz

    why cannot os.environ be passed to child process ?

    A python CGI program can run on linux but not on windows. By looking at CGIHTTPServer.py, we found out the reason: on windows, the parent cannot pass os.environ to child demonstrated as below: main.py import os, sys, shutil env = {} env["AAA"] = "111" os.environ.update(env) print...
  4. IPOz

    about CGI ?

    hi, friends i am a python newbie. however i like it very much when i first touch it. i tried to build a web site using python. but encountered some problems. 1. the browser cannot receive out Cookie: import cgi, Cookie C = SimpleCookie() C.load('a=1; b=2;') print C.output() 2. at server side...
  5. IPOz

    why can this wireless modem only dial out ?

    Moreover if adding ';'(voice) after atd138xxxyyyzz ,then mgetty can get RING but useless for digital communication, right ? ipo_z@cmmail.com garbage in,garbage out
  6. IPOz

    why can this wireless modem only dial out ?

    hi sir, the following is test environment: (windows)---(modem A)~~~~~~(modem B)---(linux) where, modem A and modem B are different band.And modemB's phone# is 138xxxyyyzz On linux, we can dial windows successfully using minicom.However we can NOT dial linux from windows as below: On linux,run...
  7. IPOz

    How do the dll share the database connection in host exe?

    thank you ! i will test it later ! regards! ipo_z@cmmail.com garbage in,garbage out
  8. IPOz

    How do the dll share the database connection in host exe?

    hi,friends I want to share the BDE database connection .but i donot know how to do it? Now i use a separate TDatabase both in exe and dll :( any suggestion is appreciated ! ipo_z@cmmail.com garbage in,garbage out
  9. IPOz

    Can COM+ be installed on WINDOWS NT 4?

    Thanks for your answers ! My NT version is NT 4.0(Build 1381:service pack 5) . I have searched microsoft web site for new pack but i cannot found chinese pack 6 :( Do you mind telling me a site where i can download chinese NT pack ? thanks in advance ! ipo_z@cmmail.com garbage in,garbage out
  10. IPOz

    Can COM+ be installed on WINDOWS NT 4?

    COM+ is a service on windows 2000 now .Can it run windows NT? regards! ipo_z@cmmail.com garbage in,garbage out
  11. IPOz

    A quick look at Delphi future

    If i need cross-platform i will use jbuilder.If i need to develop native program i will use delphi/kylix ! then i will not use .net because i donot want to lose freedom ! ipo_z@cmmail.com garbage in,garbage out
  12. IPOz

    Can entity bean call stored procedure

    hello,friends It is not recommended to use stored procedure for good portablity.However if you only use one RDBMS,then SP will improve performance greatly. Of course the BMP entity bean can use SP directly.But how about CMP entity bean ? As i know the EJB QL doesnot support to call SP. Is it...
  13. IPOz

    Why donot i use exception handler in dpr ?

    thank you for your quick answer ! if what you said is right then why does the "try ... finally" works in dpr ? By delving the assembly code i find that compiler seems do something for the "try...finally" however nothing for "try...except" ! sorry i donot...
  14. IPOz

    Why donot i use exception handler in dpr ?

    The following is a dpr framework ..... const APP_FLAG = 'LON-METER-READER'; var app_atom : ATOM; begin Application.Initialize; app_atom := globalFindAtom(APP_FLAG); try if app_atom <> 0 then begin //only allow one instance Application.Terminate ...
  15. IPOz

    About TIdHTTP...

    There has been no answer for a long time . Does nobody ever use TIdHTTP component ? regards! ipo_z@cmmail.com garbage in,garbage out

Part and Inventory Search

Back
Top