2005年02月25日 星期五 09:56
你怎么想就怎么做,还发个邮件做什么?你还不是我们关注的焦点 快受不了了 常绍新 写道: >python-chinese,您好! > 水份太大了,这样这个邮件列表已经影响到了我的正常邮箱的使用,要退定,否则就要完全拒收所有来自这里的邮件了。 > > > 致 >礼! > > > 常绍新 > sxchang2003 at 163.com > 2005-02-25 > > >------------------------------------------------------------------------ > >_______________________________________________ >python-chinese list >python-chinese at lists.python.cn >http://python.cn/mailman/listinfo/python-chinese > >
2005年02月25日 星期五 10:03
您好! 使用wx.ListCtrl,已经添加了对每个column排序的功能,但是在每次点击了column之后没有像Windows里常见的有一个向上或向下的小箭头的东西,不知道怎样才能得到? 如果在InsertColumn时设置image,对于左对齐的column,image总是在column的label的左侧,右对齐时又在右侧。我要得到的效果是像用Windows文件管理器的“详细资料”方式看目录一样,那个小箭头总是在column的label的右侧。 不知道大家有没有处理过类似的问题?btw,这个脚本是在windows环境下运行的。 致 礼! Bruce Who whoonline at msn.com 2005-02-24
2005年02月25日 星期五 10:06
Hoxide Ma,您好! 我的apache2安装在"d:/usr/local/"目录下,虚拟目录在:"D:\usr\www" httpd.conf中的相关部分如下:(实际中没有星号) *********************************** * LoadModule python_module modules/mod_python.so ** AddHandler python-program .py * PythonHandler mptest * PythonDebug On * *********************************** 我把测试文件放在"D:/usr/www/python"目录下, 浏览地址为:“http://localhost:8080/python/Mptest.py” ======= 2005-02-24 19:09:41 您在来信中写道:======= >我用的也是publisher~~ >把你apache的配置贴出来看看吧,可能是没把程序的路径加到sys.path里面 > > --- Gerald Lee <leejd80 at gmail.com> 的正文: >> >你肯定没有mptest,使用publisher吧,具体参考啄木鸟社区的modpython中文版。 >> 我的配置: >>>> AddHandler mod_python .py >> PythonHandler mod_python.publisher >> PythonDebug On >> #PythonPath >> "sys.path+['E:/Project/GridGate/Source/sms']" >> #Options MultiViews >> >> >> >> On Thu, 24 Feb 2005 14:31:52 +0800, superxgz >> <superxgz at 163.com> wrote: >> > python-chinese,您好! >> > >> > >> >大家好,想请教一个问题,我安装了python2.3,apache_2.0.53,mod_python-3.1.3,都是在win2000Server下用安装包安装的,配置文件也是按"mod_python中文文档"中所述,python的路径是这样设的: >> > >> > path: >> > C:\Python23\ >> > >> > PYTHONHOME: >> > C:\Python23 >> > >> > PYTHONPATH >> > >> >.;C:\Python23\;C:\Python23\Lib;C:\Python23\Lib\site-packages\mod_python\;C:\Python23\Lib\site-packages\ >> > >> > 报错语句如下: >> > ********************************************* >> > Mod_python error: "PythonHandler mptest" >> > >> > Traceback (most recent call last): >> > >> > File >> >"C:\Python23\lib\site-packages\mod_python\apache.py", >> line 287, in HandlerDispatch >> > log=debug) >> > >> > File >> >"C:\Python23\lib\site-packages\mod_python\apache.py", >> line 454, in import_module >> > f, p, d = imp.find_module(parts[i], path) >> > >> > ImportError: No module named mptest >> > ********************************************* >> > >> > 盼解答,十分感谢 >> > >> > 致 >> > 礼! >> > >> > superxgz >> > superxgz at 163.com >> > 2005-02-24 >> > >> > _______________________________________________ >> > python-chinese list >> > python-chinese at lists.python.cn >> > http://python.cn/mailman/listinfo/python-chinese >> > >> > >> > >> >> >> -- >> My Blog >> http://leejd.cndev.org >> My QQ >> 9847243 >> _______________________________________________ >> python-chinese list >> python-chinese at lists.python.cn >> http://python.cn/mailman/listinfo/python-chinese >> > >_________________________________________________________ >Do You Yahoo!? >150万曲MP3疯狂搜,带您闯入音乐殿堂 >http://music.yisou.com/ >美女明星应有尽有,搜遍美图、艳图和酷图 >http://image.yisou.com >1G就是1000兆,雅虎电邮自助扩容! >http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/event/mail_1g/ >_______________________________________________ >python-chinese list >python-chinese at lists.python.cn >http://python.cn/mailman/listinfo/python-chinese > = = = = = = = = = = = = = = = = = = = = 致 礼! superxgz superxgz at 163.com 2005-02-25
2005年02月25日 星期五 12:51
Bruce Who wrote: >您好! > > 使用wx.ListCtrl,已经添加了对每个column排序的功能,但是在每次点击了column之后没有像Windows里常见的有一个向上或向下的小箭头的东西,不知道怎样才能得到? > 如果在InsertColumn时设置image,对于左对齐的column,image总是在column的label的左侧,右对齐时又在右侧。我要得到的效果是像用Windows文件管理器的“详细资料”方式看目录一样,那个小箭头总是在column的label的右侧。 > 不知道大家有没有处理过类似的问题?btw,这个脚本是在windows环境下运行的。 > > wxPython的Demo中有一个ListCtrl的例子,使用了ColumnSorterMixin实现了你所 需要的基本功能,看一看吧。 -- HONG Yuan Homemaster Trading Co., Ltd. No. 601, Bldg. 41, 288 Shuangyang Rd. (N) Shanghai 200433, P.R.C. Tel: +86 21 55056553 Fax: +86 21 55067325 E-mail: hongyuan at homemaster.cn
2005年02月25日 星期五 13:14
对demo中有,我一直还没有实现。主要是看有些麻烦。 On Fri, 25 Feb 2005 10:03:32 +0800, Bruce Who <whoonline at msn.com> wrote: > 您好! > > 使用wx.ListCtrl,已经添加了对每个column排序的功能,但是在每次点击了column之后没有像Windows里常见的有一个向上或向下的小箭头的东西,不知道怎样才能得到? > 如果在InsertColumn时设置image,对于左对齐的column,image总是在column的label的左侧,右对齐时又在右侧。我要得到的效果是像用Windows文件管理器的"详细资料"方式看目录一样,那个小箭头总是在column的label的右侧。 > 不知道大家有没有处理过类似的问题?btw,这个脚本是在windows环境下运行的。 > > 致 > 礼! > > > Bruce Who > whoonline at msn.com > 2005-02-24 > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- I like python! My Blog: http://www.donews.net/limodou New Maillist: http://groups-beta.google.com/group/python-cn
Zeuux © 2025
京ICP备05028076号