枫下论坛 /枫下论坛主坛 /工作学习/学科技术讨论 历史区 第 11 页 -ROLIA.NET 相约加拿大网上社区
- 那位大侠知道TD BANK 做的Web Banking所用的硬软件配置,据我看,里面有不少Servlet,不知用的什么application sever和开发工具。 -cloud2001(坐看云起); 2001.11.13 17:36 (#260265)
- weblogic + JBuilder -bigrice(大米); 2001.11.13 18:24 (#260298)
- 我发现原来,TD的LOGIN的FORM是"GET"后来改成"POST".为什么会这样? -urfr(urfr); 2001.11.13 18:36 (#260307)
- For security purpose...
Get you can modify the url, post, you can't.
TD Online Banking is the best among all the banks!! -jeffrey815(Smartiecat); 2001.11.15 14:36 (#262674)
- 其实我更不懂为什么j2ee(jsp, sevlet...)做出来的site都喜欢用get,教材里的也一样。一来安全性差, 二来request string太长,阅读不方便。而微软的文档都是建议用post的,我就喜欢用post -zhihaoxx(Dilbert*XP); 2001.11.15 14:42 (#262677)
- 闲来无事, 出道ORACLE SQL的题考考大家. 这是在下几个月前工作中遇到的问题, 看似简单, 其实不然. -contact(Contact); 2001.11.13 16:30 (429 bytes. #260222)
- 为什么只能用一句STATEMENT?用PROCEDURE是很好做的 -bigrice(大米); 2001.11.13 16:57 (#260233)
- That is the difficult part. Because the stupid third party software only takes statement. -contact(Contact); 2001.11.13 17:07 (#260241)
- 哈哈, 和我的一样. 其实也不太难. -contact(Contact); 2001.11.13 17:20 (#260249)
- a piece of cake! -cloud2001(坐看云起); 2001.11.13 17:22 (#260252)
- But since you used sub-query, you lose the benefits of index. -contact(Contact); 2001.11.13 17:29 (#260258)
- DX, is that possible to get the data set without sub-query? That is beyond my ablity, please tell me. Thanks. -cloud2001(坐看云起); 2001.11.13 17:39 (#260268)
- Thank you! We all learned something! I am really glad to see that. -contact(Contact); 2001.11.15 17:13 (#262832)
- So do I. : ) -abba(Spitfire); 2001.11.15 18:37 (#262892)
- How come you are named as "walk to the edge of fortune" -- "XING DAO SHUI JIN SHU"? passing away from a luck of falling into love? -lottery(©_©); 2001.11.14 00:27 (#260738)
- 不过是一般的SQL的问题罢了。 -checkme(checkme); 2001.11.13 17:26 (#260254)
- 对, 但在当时下一开始让我们的DBA写, 居然写不出. 所以在下只能自己写. 在此出题纯属好玩. -contact(Contact); 2001.11.13 17:34 (#260262)
- 让DBA写SQL有点象让网管写程序,有点不相干。 -checkme(checkme); 2001.11.13 17:49 (#260273)
- 在北美做DBA这么简单的东东都不知道哪行!. 不过你也能看出去年硅谷雇人多么机不择食, 什么烂人都能当然DBA. -contact(Contact); 2001.11.13 18:32 (#260305)
- 不敢苟同。如果他写不出这个SQL STATEMENT,我会怀疑他对数据库的理解,进而影响他对数据库结构的设计。 -abba(Spitfire); 2001.11.13 18:35 (#260308)
- 我的见解 -sameway(sameway); 2001.11.13 23:21 (128 bytes. #260617)
- 同意 -benbendan(笨笨蛋); 2001.11.18 19:56 (#266311)
- Will this work?
select A, B from (select A, B, lag(A, 1) over (order by A) as A1, lead(A, 1) over (order by A) as A2 from T) where A = A1 or A = A2 -fromztoa(fromZtoA); 2001.11.14 00:43 (#260764)
- Can you answer my question? -hongri(hongri); 2001.11.14 13:12 (#261165)
- If you change into and B=a.B, you can find different ,but I don't know why -hongri(hongri); 2001.11.14 13:21 (#261180)
- select T.A, T.B from T join (select A,count(B) CNT from T group by A Having count(B) > 1 ) Z on T.A = Z.A -tianqi21(); 2001.11.14 13:38 (#261202)
- Why you guys make it so complicated?
select * from t group by a having count(*) >1 order by a -aabbcc(abc); 2001.11.14 16:20 (#261370)
- 哥们,你试过吗?其实cyt的答案,我最喜欢,性能最好, 两者并无不同。还可以:select * from T t1 where exists(select 1 from t t2 where t1.a=t2.a having count(0)>1); -onewayticket(onewayticket); 2001.11.14 19:55 (#261589)
- 高人! -abba(Spitfire); 2001.11.14 22:34 (329 bytes. #261909)
- 谢指教! -abba(Spitfire); 2001.11.15 14:20 (119 bytes. #262662)
- db2exfmt, db2expln, visual explain, db2vexp, etc -onewayticket(onewayticket); 2001.11.15 20:28 (#262981)
- Thanks! -abba(Spitfire); 2001.11.15 21:30 (#263022)
- 谢谢你的论据,我也只是凭经验。很希望和大家多交流,特别是几种不同database 的比较。我在用Oracle 和SQL Server。希望了解一些DB2和Sybase. Please send me mail, I'd like to share you my phone number. -cyt(会飞的鹿); 2001.11.14 22:56 (#261955)
- YES. Is there any problem with that statement? -aabbcc(abc); 2001.11.15 18:11 (#262875)
- 能列出我你的sql语句吗? -onewayticket(onewayticket); 2001.11.15 13:12 (#262622)
- I answered part of your question in #262621. As far as HAVING, please get any SQL book and look into the chapter of GROUP BY for greater details. -contact(Contact); 2001.11.15 13:16 (#262626)
- Absolutely -contact(Contact); 2001.11.15 14:35 (#262673)
- Do you know any bbs or community which discuss application server or java middleware solution, I can not find a good one! Thanks. -cloud2001(坐看云起之山尽水穷); 2001.11.15 15:14 (#262702)
- I don't think any is really good. Try google to search. We wrote our own framework at our workplace instead of using an application server. For J2EE, you may take a look Orion server. -contact(Contact); 2001.11.15 17:18 (#262833)
- 要是T-SQL就太容易了:
"select T1.A,T1.B from T T1 join T T2 ON T1.A=T2.A anf T1.B <> T2.B Group By T1.A,T1.B" -benbendan(笨笨蛋); 2001.11.18 19:55 (#266310)
- 更正一下:select T1.A,T1.B from T T1 join T T2 on T1.A=T2.A Group By T1.A , T1.B Having count(T1.A)>1 -benbendan(笨笨蛋); 2001.11.18 20:26 (#266339)
- 各位大虾:哪能搞到Crystal Reports -simon2001(simon2001); 2001.11.13 16:08 (#260211)
- 我公司里有。 -bloor(不老); 2001.11.13 17:44 (#260272)
- 哪位大侠对Firewall有研究?能不能给我讲讲Firewall的工作原理? -goodbaby(小宝); 2001.11.13 15:35 (#260188)
- How to identify my computer's IP address? Thanks -xxu999(xxu999); 2001.11.13 14:07 (#260141)
- On Linux--ifconfig, On windows--ipconfig -hongxian(Hongxian); 2001.11.15 01:24 (#262170)
- Need Java 2 certified programmer study guide book. and other computer books about Visual C++, Java, VisualAge, MQseries, etc. Good price.
Write me at duanjinpeng(&)hotmail.com, or call me at 416-2648479 -rudy2000(臭鱼烂虾); 2001.11.13 14:02 (#260137)
- I have call me 416-6903205 if you want (leegeyu@yahoo.com email as well) -uid(㊣Miracle); 2001.11.13 19:21 (#260337)
- http://jxsoft.onchina.net,不看不行,大量好东西。 -karl888(小丁); 2001.11.13 13:42 (#260116)
- 哪位朋友知道什么地方下载 GNU C COMPILER ?请告诉一下,在这里先感谢了 -guest-toronto(toronto); 2001.11.13 13:39 (#260113)
- it should be in any Linux distro CD, you also can download from Page Link -canadapassenger(独在异乡为异客); 2001.11.13 14:14 (#260152)
- 请教WEB开发高手! 关于application server和前台Java开发工具 -cloud2001(坐看云起); 2001.11.12 16:02 (255 bytes. #259129)
- BEA Weblogic and Borland AppServer. 这两公司都派人来on-site training. BAS市场占有率不高,但有些思想比较先进(如每个EJB container在独立的process中运行,互不影响). 开发我用VAJ, 但公司里用Jbuilder -eglington(eglington); 2001.11.12 16:12 (#259142)
- IBM Websphere 中的Application Server问题多多,我觉的很不好使。但VAJ是不错 -rabbitbug(兔八哥); 2001.11.12 16:24 (#259162)
- 不同公司的application server和前台Java开发工具混用,会不会有类似硬件系统的“兼容”问题? -cloud2001(坐看云起); 2001.11.12 16:40 (#259186)
- 用VAJ开发时,会要用到IBM自带的库,Server用其它公司的要把这些库倒出来,还要注意路径 -rabbitbug(兔八哥); 2001.11.12 19:52 (#259344)
- As far as I know, most popular three are , WebSphere, WebLogic, iPlant. IBM为GNU贡献了一个新的Java开发工具, 你可以在eclips.org下载,它和VAJ很象, 但Much faster,还有很好的debug -uid(㊣Miracle); 2001.11.12 19:58 (#259354)
- Pc tools expert? where are you?
Urgent , can you help me? -daoxueh(michael); 2001.11.12 10:03 (554 bytes. #258843)
- you can try NORTON DISK DOCTOR, IF it doesn't help, format it. -slon(胜龙); 2001.11.12 15:15 (#259083)
- do you have these kind of experience before?
thank you for your reply! -daoxueh(michael); 2001.11.13 09:30 (#259879)
- In Oracle, What is DUAL? what info can I get from DUAL? -xxu999(xxu999); 2001.11.12 00:20 (#258523)
- whatis.com -wjiang(☆激昂☆); 2001.11.12 00:26 (#258531)
- I think it could be useful when you are lazy and want SQL to do some calculation for you: "select some_date + 280 days from dual". Right? -abba(Spitfire); 2001.11.12 19:19 (#259319)
- yes,it's true. u r smart. -laotang(laotang); 2001.11.12 23:47 (#259637)
- select to_date('my departure day','yyyymmdd') + 182 from dual; 算什么时候必须再入境,就更有用了。 -yifan(yifan); 2001.11.13 01:48 (#259711)
- SELECT sysdate FROM dual; -bluelamp(蓝灯); 2001.11.12 21:36 (#259454)
- What if I deleted the dual accident? -cyt(会飞的鹿); 2001.11.13 12:47 (#260086)
- you can not delete it! -laotang(laotang); 2001.11.13 13:28 (#260110)
- It can be deleted. (delete from dual; note: dual belongs to sys) But why you delete it. -onewayticket(onewayticket); 2001.11.13 13:41 (#260115)
- Just to do a test for fun. Is it posible for me to recover it? -cyt(会飞的鹿); 2001.11.13 23:38 (#260646)
- For fun, you can try to insert another row into this table, hehe. -mickeymouse(㊣Oracle); 2001.11.13 23:45 (#260656)
- hehe! Try it before you leave your office and be prepared to explain the failed night jobs to your manager next morning. -abba(Spitfire); 2001.11.14 00:15 (#260711)
- Wow! It's so easy. I just inserted that record. Thanks, glad to know all you database guys here. Don't worry for me. I never do any test on the database other than the one only for me to play with. -cyt(会飞的鹿); 2001.11.14 12:48 (#261131)
- It can't be droped. -onewayticket(onewayticket); 2001.11.13 13:42 (#260117)
- 各位DATABASE大侠,有Oracle方面的工作机会别忘了我! -mickeymouse(㊣Oracle); 2001.11.14 19:21 (#261542)
- 在用java 写compiler时,怎样用javax.swing中的功能create a box to select source file for compilation?
最好提供大概框架code. 另,请用中文解释一下在从file中read/write an object 时,serilization 是怎么回事? -potato(土豆); 2001.11.11 20:24 (202 bytes. #258229)
- 能不能说说你用JAVA 写什么样的编译器?你搞编译方面的工作吗?你要是做这方面的,希望和你交流一下。 -guest-toronto(toronto); 2001.11.15 01:32 (#262192)
- 急!!!请问高手:怎样将PDF文件存到MS SQL SERVER上, 我5年以前曾把JPG文件寸到FOXPRO FOR WIN 上, 很顺, 但现在又忘了, 多谢了 -iseekgirl(英雄本色); 2001.11.11 15:23 (#257959)
- up! -iseekgirl(英雄本色); 2001.11.11 16:08 (#257987)
- up!up!up! -iseekgirl(英雄本色); 2001.11.11 17:14 (#258017)
- up第三次, 再没人理我就哭! -iseekgirl(英雄本色); 2001.11.11 18:37 (#258135)
- 哭吧。 -mrviceroy(㊣十步杀一人); 2001.11.11 18:51 (#258163)
- 干嘛非得把PDF源文件村在SQL里,一般对BLOB的做法是把他放在文件服务器上并把路基村在SQL里,如果坚持的话,可用二进制存取入SQL -bigdesk(滑雪去乐); 2001.11.11 18:52 (#258164)
- 两种措施。 -simonp(simonp); 2001.11.12 19:01 (595 bytes. #259302)
- LINUX能用CABLE上网吗? -mickeymouse(㊣Oracle); 2001.11.11 01:01 (#257496)
- 能。Netscape 6还将就,IE好用的多 -heian(㊣天使); 2001.11.11 01:10 (#257517)
- some of the LInux distributions will dump Netscape, what a pity! -rootbear(不是熊也不是啤酒); 2001.11.11 10:15 (#257813)
- 应该有Linux-2.2.1x 的目录吧? 重新编译即可. -meidaoli(石门晚照); 2001.11.11 20:41 (#258240)
- Please help me, urgently for PcMagic proficient user! I can't open the file after operation. -daoxueh(michael); 2001.11.11 00:39 (348 bytes. #257436)
- 能否制作Windows 2000P的光盘启动盘? -david9908(David9908); 2001.11.10 14:19 (195 bytes. #256882)
- 有一个SHARING FOLDER 在 WIN2000 PROFESSIONAL 上, 当有较多的用户连接时, 得到错误: No more connection can be made to this remote computer at this time. -walleyecn(walleyecn); 2001.11.10 12:04 (152 bytes. #256762)
- 没办法解决, 换Server了 -miketany(MIKE老狼); 2001.11.10 13:37 (#256830)
- check the sharing property of the shared fold and change the sharing to allowe "maxi." -huimin(huimin); 2001.11.10 15:20 (#256921)
- 我已经设置成 allow maxi 了, 但还是不行. -walleyecn(walleyecn); 2001.11.11 21:45 (#258308)
- 如果3个出错,设4个,不成就应该不是你的问题了吧? -rootbear(不是熊也不是啤酒); 2001.11.11 22:01 (#258328)
- Help! I got a warning on the screen when I turn on my computer this morning: "..stack overflow. Increase the setting of MinSPs in -tsinghua(tsinghua); 2001.11.10 11:40 (602 bytes. #256746)
- Help, please! Now my screen is fulling of small squres that should be Chinese characters because I can not open the Cstar. It reminds me the Matrix. -tsinghua(tsinghua); 2001.11.10 12:05 (#256763)
- 三台电脑各有Rogers@home单独分配的IP地址(一个额外的IP Rogers收9.95), 连在HUB上, -skywalker(sky88); 2001.11.10 01:46 (167 bytes. #256506)
- 俺有个问题,一直百思不得其解。URL是个BBS,半个月前升级到SUSE 7.4,用APACHE 1.20。web服务器的设置文件一点没有变 -heian(忘记备份的天使); 2001.11.9 22:55 (379 bytes. #256273)
- up -heian(忘记备份的天使); 2001.11.9 23:11 (#256286)
- TCP端口大全【转自精品】 -heian(忘记备份的天使); 2001.11.9 20:50 (56268 bytes. #256125)
- Nimda蠕虫报告__转自绿盟科技论坛(中标的好好看看这个文章) -heian(忘记备份的天使); 2001.11.9 20:48 (11851 bytes. #256120)
- Windows系统文件名详解 -heian(忘记备份的天使); 2001.11.9 20:45 (20940 bytes. #256115)
- Mac OS X 开发经典著作下载(转贴) -heian(忘记备份的天使); 2001.11.9 20:37 (1604 bytes. #256103)
- 各位DX,本人下周有一个有关NT管理的面试,NT和NOVELL较多,请教面试都问什么样的技术问题? -athe_hu(藏花); 2001.11.9 13:20 (41 bytes. #255357)
- 我做的是NT。上次面试的时候被问到的技术问题不多,主要就是我以前工作过的环境,当时侃了一通,后来就被录取了。前两天老板对我说,当时录取我就是因为我描述的环境和这里的网络环境一摸一样,以为。。。(言下之意不言自明,HOHO), -yellow(yellow); 2001.11.9 13:34 (#255399)
- 还是要因人而已、因时而异,有的人喜欢喜欢自己的人aggressive,有的人就喜欢一个听话的人,随机应变吧。就像您老人家,一会儿要自杀,一会儿又想找工作似的 -yellow(yellow); 2001.11.9 14:08 (#255481)
- 没准。。。 -yellow(yellow); 2001.11.9 14:10 (#255485)
- 有一辆cool car的yellow?:) -sunmetal(恋恋风尘); 2001.11.9 14:13 (#255491)
- 你怎么不把握婚姻的主动权呢 -redbird(RedBird); 2001.11.9 15:08 (#255615)
- 你知道吗?我非常佩服老外的敬业精神。。。
痛定思痛,痛何如哉。。。
如果我做老公有一点敬业精神,老婆也不会跑了。。。
呜呜呜呜呜呜呜呜呜呜 -sunmetal(恋恋风尘); 2001.11.9 15:09 (#255619)
- 看来你“批评”告一段落,可以开始“自我批评”了。 -redbird(RedBird); 2001.11.9 15:19 (#255634)
- 我印象中记得您似乎说过因为老板因为同情您老人家的遭遇,才把OFFER给您的呀!想象一下这样一个人:一会儿在老板面前装可怜,一会儿一副天下舍我其谁的样子教训别人。是不是有点点....,嘿嘿 -yny(Bibi); 2001.11.9 15:59 (#255715)
- 我哪个工作是我自己凭本事来的,这个labor工作是人家同情我的遭遇。。。 -sunmetal(恋恋风尘); 2001.11.9 16:03 (#255724)
- sunmetal, 看你这个贴子觉得你这人真不错。多多保重, 你会遇到好女人的。 -nokidding(nokidding); 2001.11.10 09:00 (#256666)
- 求救啦!我的一朋友现在电脑染毒,病毒不断的复制垃圾文件,试了一些杀毒软件,无任何效果。因上面有一年的心血,不忍放弃,但无能为力,各位大侠有何良策??? -tyman(tyman); 2001.11.9 13:02 (#255309)
- 重装windows。然后得花点功夫了,人工删掉拉圾文件。前两天我的电脑才惨遭不幸,就用这个笨办法搞定的。看样子,应该是一样的问题,希望这个办法对你有用。 -epoch(epoch); 2001.11.9 13:54 (#255446)
- 非常感谢,我让他照此办理!看看有没有效果 -tyman(tyman); 2001.11.9 14:43 (#255567)
- JAVA还有没有前途! -icelee(ice); 2001.11.9 05:20 (#254885)
- 这年月,前途不是靠钱途决定的吗?不能创造金钱终究要被淘汰!
那些大侠在使用JAVA呀?主流技术和应用领域是什么? -icelee(ice); 2001.11.10 07:14 (#256642)
- J2EE,e-commerce, 应该是发展方向,不然Microsoft也不会老神去搞个.net 去和SUN抢市场 -happy_4_7(人参果-阿香婆的最爱); 2001.11.10 10:51 (#256721)
- .net不是要和J2EE抢市场了, -miketany(MIKE老狼); 2001.11.10 13:42 (#256836)
- .NET的目标就是何J2EE争夺。微软放出话来,要消灭JAVA!
嘻嘻,大家还折腾个啥? -icelee(ice); 2001.11.11 19:15 (#258179)
- 我个人认为JAVA还是很好的!初学的映象 -icelee(ice); 2001.11.15 05:20 (#262379)
- IT 就业市场何时再辉煌!我们的春天何时到来? -icelee(ice); 2001.11.18 20:59 (#266378)
- Java is just a tool, I think it more important to figure out something new in the application layer. -hongxian(Hongxian); 2001.11.15 01:31 (#262189)
- 那位大侠有JBUILDER4(5)的开发资料吗?最好是中文!小弟急需!先谢了! -icelee(ice); 2001.11.15 05:13 (#262378)
- unformat hdd -xmlfan(xxx); 2001.11.9 00:52 (384 bytes. #254663)
- 请教ORACLE问题,我的JAVA程序需要做一个TRANSACTION,在我COMMIT之前程序CRASH了。有没有SQL*PLUS的指令可以UNLOCK那个被由于需要TRANSACTION被LOCK的TABLE?(我现在只能重新启动ORACLE) -urfr(urfr); 2001.11.8 23:49 (#254546)
- 谢谢! -urfr(urfr); 2001.11.9 15:16 (#255629)
- Anybody has experience of installing CheckPoint-1 on NT platform? I meet some problems and ask for help. thanks in advance! -songl(风); 2001.11.8 22:59 (#254427)
- tell me your problem -speedw(鬼子进村了!); 2001.11.8 23:23 (#254488)
- Sorry forgot to get back to you. What OS? Win2k or NT4? -dennis2(Dennis); 2001.11.8 23:46 (#254540)
- win2k -songl(风); 2001.11.8 23:53 (#254555)
- Yeah that's the problem. Sorry I forgot to tell you that FW-1 4.1 doesn't support Win2k. Try it with NT4, see this link. Page Link -dennis2(Dennis); 2001.11.9 00:11 (#254596)
- Thank you so much, do you have Linux version, in that case, I'd like rather install Linux than NT4. -songl(风); 2001.11.9 21:17 (#256158)
- 急需一个PDF的writer,能编辑PDF文件,或者能把它转成Word的工具。那位大哥知道下载的地方?多谢!!! -bluej(小J); 2001.11.8 21:22 (#254262)
- Acrobat 5.0, pdfmaker, pdf writer can make pdf file -aix_ca(天生好学); 2001.11.10 10:47 (#256710)
- 找找昨天的帖子,才贴了的 -heian(忘记备份的天使); 2001.11.10 11:04 (#256732)
- 那位大虾有Microsoft的DotNet B2版借用用?我的邮箱是patrickship@hotmail.com 也希望有志于此开发的能多多交流。 -patrickchen(papas); 2001.11.8 21:20 (#254261)
- Interested in C#? Please contact me: aiattendant@hotmail.com -aiattendant(aiattendant); 2001.11.8 21:29 (#254270)
- 我不懂什么DOTNET. 但我也有兴趣. -greybluesky(SLK320); 2001.11.8 21:35 (#254277)
- i have and u can bring 4 blank cd-r come to my home,i burn it for u,write e-mail for me and leave u r number ,i will call u ASAP -aix_ca(天生好学); 2001.11.10 10:49 (#256714)
- I created a public chat room in Yahoo chat. Please join. Categories: Computers&internet->UserRooms->.net. PS: continue-希望搞电脑的朋友都能掌握北美流行的技术! -aiattendant(aiattendant); 2001.11.8 09:56 (#253226)
- aiattendant你真是功德无量! -zcaken(zcaken); 2001.11.8 17:27 (#254019)
- 怎么没人去? -aix_ca(天生好学); 2001.11.8 20:12 (#254185)
- How do you know? -aiattendant(aiattendant); 2001.11.8 21:15 (#254256)
- Are there anyone know hardware here now? -congcaiwei(Jacky); 2001.11.8 06:17 (#253148)
- I wanna know the chip about convertting TTL to CMOS? -congcaiwei(Jacky); 2001.11.8 06:18 (#253149)
- Come on,anybody major in hardware here? -congcaiwei(Jacky); 2001.11.8 06:19 (#253150)
- 从老兄发贴的连续性来看,咳咳……够急脾气的,快赶上刘宝瑞的相声里说的那位了。//别急,再等两三个小时,等大家都起了床上了班儿再说。 -dnc(Danny); 2001.11.8 06:24 (#253152)
- I am working now! -congcaiwei(Jacky); 2001.11.8 06:25 (#253153)
- 请教ORACLE高手,我用JAVA程序写入一个 JAVA OBJECT 到BLOB 的COLUME 由于INITIALSIZE是4000所以我只能写<4000的东西,如何解决这个问题? -urfr(urfr); 2001.11.7 12:54 (#251795)
- 9行小程序可以使Windows XP/2000系统完全崩溃 -bm_guest(JERICHO); 2001.11.7 12:24 (1024 bytes. #251778)
- Who has the legal CD key for Windows 2000 Server -mhan(Murphy); 2001.11.7 00:48 (#251338)
- I have the site licensed version. no need cd key. -jeffrey815(Smartiecat); 2001.11.15 14:53 (#262685)
- Win2K中文专业标准版:PQHKR-G4JFW-VTY3P-G4WQ2-88CTW;简体中文服务器版;H6TWQ-TQQM8-HXJYG-D69F7-R84VM;简体中文高级服务器版:52273-270-4304442-09134 -doudougao(豆豆); 2001.11.16 02:38 (#263414)
- server: H6TWQ-TQQM8-HXJYG-D69F7-R84VM
AD SERVER: RBDC9-VTRC8-D7972-J97JY-PRVMG
P : PQHKR-G4JFW-VTY3P-G4WQ2-88CTW ; 另一套同AD Server -calgarywei(新移民接待站); 2001.11.16 02:54 (#263420)
- Hi everyone, thank you all. I think you'd better you message. -mhan(Murphy); 2001.11.29 15:20 (#280087)
- 请教:Office2000,ACCESS不能用“OPEN”,不能“EXPORT”,EXCEL创建新文件后不能保存,请问怎样解决。 -lilyba(Sunshine); 2001.11.7 00:46 (34 bytes. #251337)
- my computer has been attacked by nimda, after I fix it, this problem still exist. Help. -lilyba(Sunshine); 2001.11.7 01:06 (#251364)
- Maybe you should reinstall the office 2000. -with2001(with2001); 2001.11.7 04:42 (#251548)
- I reinstall office2000, reinstall window me, but the problem still exist. -lilyba(Sunshine); 2001.11.7 10:14 (#251650)
- up -lilyba(Sunshine); 2001.11.7 10:46 (#251685)
- What did you mean? -anno(烦人); 2001.11.7 11:15 (#251714)
- HELP, HELP, OR I have to format my computer, I hate it. 555555 -lilyba(Sunshine); 2001.11.7 13:25 (#251847)
- 你安装完后有没有打开一些什么文件啊。是不是那些文件中有病毒啊?否则即使你格式化后再装可能也是一样的。 -with2001(with2001); 2001.11.7 20:21 (#252485)
- Anyone who is interested in Siebel? -howru(How are you?); 2001.11.6 18:31 (#250831)
- 《TCP-IP详解卷1:协议》《TCP-IP详解卷3:TCP事务协议,HTTP,NNTP和UNIX域协议》URL下载,保留至明天中午。 -heian(忘记备份的天使); 2001.11.6 18:12 (274 bytes. #250809)
- thanks. 辛苦了 -kevin2000(流星雨-人生在于折腾); 2001.11.6 19:06 (#250863)
- 我帮顶楼那位往上顶! -lemondy(爱吃豆制品_麋鹿_肉食); 2001.11.6 19:41 (#250894)
- Thank you!But it said "There was an error processing a page. The encoding (CMap) specified by a font is missing or corrupted" opening the file. Hope it is something wrong with my system. I am using acrobat reader 4.0 -linmeimei(林妹妹); 2001.11.6 19:47 (#250898)
- me too.是英文环境缺中文字体。在家里我用中文windows98就能看。可能需要下载acrobat中文字体。 -kevin2000(流星雨-人生在于折腾); 2001.11.6 19:54 (#250903)
- Thank you,流星雨 -linmeimei(林妹妹); 2001.11.7 11:31 (#251733)
- 速度增快,才2分钟就全部下完 -ottawa(ottawa); 2001.11.6 19:57 (#250909)
- 好人啊,您干嘛叫黑暗呢?应该叫“光明天使”才对呀:)非非非非非非常感谢!!!!!!!!!!!!!!!! -gaoguo(gaoguo); 2001.11.6 20:15 (#250941)
- 一个好天使,thx -happy_4_7(人参果-阿香婆的最爱); 2001.11.6 20:33 (#250969)
- 好人!真好人呀!!! -onewayticket(onewayticket); 2001.11.6 20:36 (#250978)
- Thanks! But I prefer to read English materials. Do you have such kind? We really appreciate your kindness. -zhu(猪头); 2001.11.6 20:51 (#251005)
- By the way, if someone would like to get some basic idea about the internetworking, you can check the website of cisco. The documents there are pretty powerful. Page Link -zhu(猪头); 2001.11.6 20:54 (#251009)
- 好天使!如果要找 第2卷的 向我要,我不只哪可上传。 -haah(Haah); 2001.11.6 23:57 (#251237)
- 报告天使:三卷已全部备份完毕;以后还有什么好东东别忘了叫咱再备份。 -alang(阿朗); 2001.11.6 23:59 (#251239)
- 可以再UPLOAD第二卷吗?这几天没空来,错过了好东西。多谢。 -it2it(IT2IT); 2001.11.7 00:50 (#251342)
- (#251237) -heian(忘记备份的天使); 2001.11.7 13:07 (#251817)
- 黑暗,我还没download完,能不能多留一会儿? -iceman(【老虎也得学英语】); 2001.11.7 13:02 (#251806)
- 我现在在学校,晚上我再通知你 -heian(忘记备份的天使); 2001.11.7 13:06 (#251812)
- thanks a lot :) -iceman(【老虎也得学英语】); 2001.11.7 13:46 (#251874)
- GBTS…………… -danieldu(天马行空); 2001.11.7 14:36 (#251912)
- HELP! 怎样解开w2k中某个用户加密的目录? -aboat(aboat); 2001.11.6 08:35 (223 bytes. #250324)
- 55555没人知道吗?黑暗天使,请帮帮忙!谢谢啦! -aboat(aboat); 2001.11.8 22:11 (#254318)
- 噢,但是你现在的权限应该可以TAKE OVER以前用户加密的目录,
可以吗? -rootbear(不是熊也不是啤酒); 2001.11.9 01:03 (#254678)
- 可是是在另外一个w2k中呀。我想不知道有没有人知道w2k加密的机制是什么。我知道原来用户的密码,希望可以解开被加密的目录。 -aboat(aboat); 2001.11.9 02:03 (#254760)
- 那你还能不能进原来的Win2k?如果不能,先用安装盘修。修好了之后,用Administrator登录,然后改掉那个用户的password,再以那个用户登录应该就行了。先声明,我可没试过,不一定灵。 -dennis2(Dennis); 2001.11.9 01:24 (#254712)
- 我重新安装以前的w2k,到register组件时就死掉。不知是什么原因? -aboat(aboat); 2001.11.9 02:00 (#254757)
- I don't know if you've solved the problem, but the attached link has some more information and some useful links. Page Link -dennis2(Dennis); 2001.11.12 02:29 (#258647)
- Thank you all for your help. Finally I fixed it. It was caused by the virus ---worm. I used rising killed the virus, then everything is restored. -aboat(aboat); 2001.11.14 09:57 (#260951)
- Use Lc3, it can search local and whole network's machines. -lhs(Dou e); 2001.11.14 16:38 (#261392)
- 问个JDBC的问题,我想把一个SERIALIZED OBJECT 存到RDB(主要是ORCALE)的好办法。我现在的办法是先SERIALIZED到一个ByteArray, 再用PrepareStament 的setBinaryStream写到BLOB总觉得不太地道,更直接的办法吗? -urfr(urfr); 2001.11.6 01:24 (#250176)
- 这里有搞Oracle Development的朋友吗?我在多伦多,主要从事 Oralce Develop Suit 6i (PL/SQL, Forms, Reports..)的开发工作。想找几个同道的交流经验。。 -wendywang168(wendy); 2001.11.5 20:23 (#249736)
- 你找到工作了吗?我在国内也是做这些,不知到了加拿大好不好找工作。 -yifan(yifan); 2001.11.5 20:43 (#249754)
- 请问高手,关于网络管理的面试题。。。 -tjchjf(Jeff); 2001.11.5 13:58 (578 bytes. #249419)
- and Acknowledge number. sq number start with a random number to guarantee no conflict. -urfr(urfr); 2001.11.5 19:06 (#249676)
- yah -lottery(©_©); 2001.11.5 19:18 (329 bytes. #249688)
- I think you are right. I must have been out of my mind... -dennis2(Dennis); 2001.11.5 22:41 (#249924)
- That could be a mistake. Remember session layer is upper than transportation layer in OSI model. You will find in in protocol design. -lottery(©_©); 2001.11.6 00:44 (#250146)
- ip/port is essential, you still need sq and ack number .The session is between SYN and FIN. -urfr(urfr); 2001.11.6 00:56 (#250154)
- I think you are more right. Your 2nd sentence hit the point. So I wasn't completely out of my mind. :-) -dennis2(Dennis); 2001.11.6 01:24 (#250177)
- 哇,真考试啊!! 别的题你能提供出来吗?谢谢啊! -firephoenix(雨后会出现彩虹吗?); 2001.11.5 15:46 (#249523)
- 2/1不是NETBIOS吗? -avacao(吃草的大老虎白白胖胖); 2001.11.5 22:40 (#249919)
- I think only connected socket (which has a unique ip associated with it) together with TCP port and sequence number can be used as a session identifier, not listenning socket. -dennis2(Dennis); 2001.11.10 03:46 (#256609)
- What does \\\"listening paskets\\\" mean? Did you refer to the \\\"SYN packects\\\"? Anyway, TCP packets only have one fixed packet structure. -cute(cute); 2001.11.10 04:32 (#256619)
- Listenning pockets are VISUAL sockets and are not really tranferred on the networks. The concept of it is especially designed for API programming and does not exit in the standard TCP/IP. -cute(cute); 2001.11.11 00:37 (#257431)
- I think SOCKET is raw form of TCP packet. -urfr(urfr); 2001.11.11 00:39 (#257435)
- Where did you get the term "VISUAL sockets"? I've never heard of it. Anyway, Socket API is part of Posix standard, right? -dennis2(Dennis); 2001.11.11 17:37 (#258047)
- In got it from my garbage English! I meant \"virtual packet\" not \"Visual packets\". -cute(cute); 2001.11.11 22:00 (#258327)
- Argh no, don't look down upon yourself too much! Actually I think I was being too picky, sorry. -dennis2(Dennis); 2001.11.12 00:25 (#258529)
- UP yi xia. -jzwang(hello); 2001.11.11 00:35 (#257427)
- First question:
I believe the TCP session is identified by socket: (source IP, source TCP port, dest IP, dest TCP port)
Hope my answer is right -cjun(cj); 2001.11.12 08:21 (#258809)
- Second question
Normally, when TCP peer established a connection, when either side is going to close the connection, it will send out the a packet with the RST bit set in the TCP header. -cjun(cj); 2001.11.12 08:23 (#258810)
- I don't think so. Normal TCP termination should be 2 pairs of FIN/ACK from both client and server. RST is for aborting the connection. -dennis2(Dennis); 2001.11.12 18:56 (#259295)
- Third question:
The NetBios should be the answer, if specially talking about the TCP/IP, it should NetBios over TCP/IP. -cjun(cj); 2001.11.12 08:25 (#258811)
- Forth question:
the 192.168.0.1/24 is not a network address
the interface A ip address can be 192.168.0.1~192.168.0.127
the interface B ip address can be 192.168.0.129~192.168.0.254 -cjun(cj); 2001.11.12 08:26 (#258812)
- 《TCP-IP详解卷2:实现》URL下载,保留至明天下午。 Page Link -heian(忘记备份的天使); 2001.11.5 13:38 (#249404)
- 可惜我是dial-up的,对我来说太大了。哎。。。 -iceman(【老虎也得学英语】); 2001.11.5 14:00 (#249422)
- 才10几个MB,2个多小时就能下完 -heian(忘记备份的天使); 2001.11.5 14:02 (#249423)
- ZIP them into a big file ba! -eglington(eglington); 2001.11.5 14:11 (#249431)
- 进了网页,在空白地方点右健,选“用网际快车下载全部链接”可以一次搞定。昨天晚上就是因为ZIP文件都快把我折腾4了,怕了这回 -heian(忘记备份的天使); 2001.11.5 14:13 (#249433)
- Netant doesn't work.... make a zip for me ba! -eglington(eglington); 2001.11.5 14:20 (#249443)
- 这个空间有限,反正你用high speed,今晚从我机器里面下吧。 -heian(忘记备份的天使); 2001.11.5 14:24 (#249452)
- 对不起,看错了,这个第II卷是最大的,有30多MB,不过一晚上也够了。俺当年用猫还下过3张光盘的游戏呢。。。好像用了一个多星期。。 -heian(忘记备份的天使); 2001.11.5 14:16 (#249436)
- i 服了u, 好,今天晚上跟你的主页斗一回。thanks -iceman(【老虎也得学英语】); 2001.11.5 14:20 (#249445)
- 3光盘?DIABLO2?当年我一同学在日本,下DIABLO2,下了2个多星期呢(晚上到凌晨某段时间无限量拨号上网的服务) -dragon1976(飞龙在天); 2001.11.5 14:20 (#249447)
- 我倒!用netant,差不多3分钟就全下来了,仔细一看,我原来就有! -lemondy(麋鹿_插翅难飞※); 2001.11.5 15:50 (#249527)
- 好书啊,多谢了。有卷1吗?有英文版吗? -fisher38(Fisher); 2001.11.5 15:39 (#249519)
- 昨天放了卷一,空间有限,已经删了。明天我再一起放吧 -heian(忘记备份的天使); 2001.11.5 15:41 (#249520)
- 多谢,多谢。错过昨天了。明天请再放一次。 -fisher38(Fisher); 2001.11.5 15:43 (#249522)
- 好人啊。正想管你要卷一呢。 -kevin2000(流星雨-人生在于折腾); 2001.11.5 15:46 (#249524)
- Thank you. -mhan(Murphy); 2001.11.5 16:11 (#249538)
- 我顶顶 -heian(忘记备份的天使); 2001.11.5 18:57 (#249667)
- 多谢好人,我又可以多带点光盘过去了 -sargee(sargee); 2001.11.5 21:03 (#249784)
- 再放一次第二卷吧 -wooway(wooway); 2001.11.7 02:15 (#251457)
- 多谢天使兄,文件已成功存入硬盘。 -iceman(【老虎也得学英语】); 2001.11.7 09:28 (#251631)
- 请教各位DX,现在学Network Security 是否有前途?主要应该掌握那些?都有那些证书?请大家给个意见。先谢过了。 -bertha(seed); 2001.11.4 19:01 (#248504)
- 没有人知道吗?我在等各位的高见。 -bertha(seed); 2001.11.4 20:03 (#248597)
- 好失望啊!难道没人感兴趣? -bertha(seed); 2001.11.4 22:22 (#248756)
- 嗨,风! 你有没有安装SOLARIS在PC机上过?最近下了好几天才一半,还不知道可否安装上呢!另外,听说你有房子SHARE可否告知道地理位置及条件,我往你在ROLIA上的信箱发信了,请查收!谢谢啊~~ -firephoenix(雨后会出现彩虹吗?); 2001.11.5 00:18 (#248869)
- I had installed it. No proble. If you need, I have the CDs in my home. -feishazounai(飞沙走奶); 2001.11.16 16:26 (#263990)
- give me a call please, I need it also. -songl(风); 2001.11.16 17:27 (#264074)
- Thank you very much. -bertha(seed); 2001.11.4 23:51 (#248894)
- How about IDS, Cisco router and PKI? -bertha(seed); 2001.11.5 00:13 (#248918)
- could you narrow your requirements. for example, you mentioned about Cisco router, what info do you want, Routing, Switching or BPG, OSPF, etc. I can't throw all stuff I have (4GB) bomb your box. -songl(风); 2001.11.5 00:26 (#248929)
- 感谢。 -bertha(seed); 2001.11.4 23:52 (#248898)
- 我也很想搞这个,还有个ip telephony也有前途 -avacao(吃草的大老虎白白胖胖); 2001.11.5 22:47 (#249930)
- 有人在做IP telephony吗? -meteo(流星雨-反朴归真); 2001.11.16 17:37 (#264083)
- Cute! -cute(cute); 2001.11.18 22:09 (#266462)
- Furthermore, If you have hands-on experience with H.323, Softswitching and TCL programming please give me a hand. I am strugging on these kinds of stuff. -cute(cute); 2001.11.18 22:20 (#266471)
- Checkpoint Certified Administrator -jeffrey815(Smartiecat); 2001.11.15 14:54 (#262686)
- 还有其他的吗? -andy2060(胖胖猴想开飞机); 2001.11.16 20:01 (#264218)
- 这里还有一个问题,许多涉及系统安全的职位不仅要求公民身份,还要有政府部门的工作经历. -netee(netee); 2001.11.16 20:12 (#264229)
- 考个CCIP或者CISCO QUALIFIED SPECIALIST - SECURITY现在比较吃香(相对其他CCNP/CCDP而言) -avacao(吃草的大老虎白白胖胖); 2001.11.18 22:12 (#266466)
- "a talent university guy, invaded my Internet PPP server by using a software loaded from Internet although he knew nothing of Unix at that time" -- That's called a script kiddy, not a real hacker. -dennis2(Dennis); 2001.11.18 22:42 (#266496)
- I cannot agree with you more but did I entitle him as a hacker? -cute(cute); 2001.11.18 22:53 (#266508)
- No, you didn't. I was just being picky again :-) -dennis2(Dennis); 2001.11.20 03:10 (#267899)
- I think it will be the most hot in the future and you should contact some professional school to learn it. -smilin(drible); 2001.11.19 19:46 (#267406)
- 急问:那位朋友有使用 WorkShop debug core file的经验吗?我遇到一个问题,能帮我看看吗?.请进... -qiuqiu(秋秋); 2001.11.4 12:26 (811 bytes. #248310)
- Anybody know it? Thanks in advance... -qiuqiu(秋秋); 2001.11.4 13:41 (#248347)
- 非常感谢! 非常有用! -qiuqiu(秋秋); 2001.11.4 18:35 (#248480)
- hlp文件无法显示!请帮忙。 -karl888(小丁); 2001.11.3 21:11 (222 bytes. #247882)
- 兄弟信箱:kding1127@home.com -karl888(小丁); 2001.11.3 21:17 (#247888)
- 请各位帮忙啊!!!! -karl888(小丁); 2001.11.6 07:46 (#250313)
- Rogers Cable老是掉线,请各位帮忙。兄弟住在Victoria Park / Lawrence。IP手动设定无效,DNS多加几个无效 -karl888(小丁); 2001.11.3 19:30 (#247815)
- Win2000 Pro, Simplified Chinese. No firewall installed. Some other interesting info see my reply to I myself. Thanks. -karl888(小丁); 2001.11.3 20:59 (#247871)
- I had win98, win2k and linux. win2k was very very unstable. I am not saying hackers won't be a possibility here. MAC address, modem s/n, is not something one can't change... -ztech(ztech); 2001.11.4 14:45 (#248369)
- 除“用户名”外,我想Modem的硬件序列号也是识别信号之一。楼上那位不知是否也是用的TERAYON品牌的Mdeom,如果是,估计这款Modem有问题。 -faquir999(行者); 2001.11.3 22:03 (#247914)
- 果然是TERAYON -karl888(小丁); 2001.11.3 22:26 (#247924)
- Woops! USB adapter上联接计算机的端口拔出来再接上就好了!另一方面,用网卡死活不行,联不上网,TCP/IP设置跟USB一模一样。 -karl888(小丁); 2001.11.3 21:03 (#247873)
- 为什么呢?我的@Home已经用了半个月了,没掉过一次线。我住DOWNTOWN。 -forex(我认为); 2001.11.3 21:11 (#247883)
- maybe you have some good luck, congratulations! -karl888(小丁); 2001.11.3 21:13 (#247885)
- 我的一个客户有过老掉线的情况,他的计算机没大约10分钟就掉一次线,然后需要重起。fighting against 了好几天,最后发现是modem的问题,换了一个,一切都好了。 -forex(我认为); 2001.11.4 16:14 (#248403)
- 还是SAMSUNG的modem好用,虽然象块砖头,质量特好。 -heian(忘记备份的天使); 2001.11.4 16:19 (#248408)
- 我曾经断线近半个月,开始以为是modem的问题,后来发现是cable线缆的问题。 -lemondy(麋鹿_插翅难飞※); 2001.11.4 16:21 (#248411)
- 我整天打ROGERS的技术电话,他们那两下子我基本都摸熟了。从他们的计算机可以做远程的回路响应测试,可以PING你的MODEM,还可以PING你的计算机。因此从他们那里很容易查出问题的。我要是有那套设备,也就做他们的技术支持中文热线了。 -forex(我认为); 2001.11.4 16:28 (#248418)
- PING机器?我把IMCP关了都还能ping? -heian(忘记备份的天使); 2001.11.4 16:31 (#248420)
- ROGERS的CABLE上网,同时使用MODEM的序列号和CLIENT ID进行身份验证。 -forex(我认为); 2001.11.4 16:16 (#248405)
- 问一下,我申请cable,但是不喜欢@home的modem能不能用自己买的?买的modem是通过了@home的认证的。 -heian(忘记备份的天使); 2001.11.4 16:28 (#248416)
- 请问在温哥华的朋友,哪位有Oracle或Informix, Sybase等在Linux或在Windows下的安装盘?想借用安装,谢先。 -xxjjs(东方射日); 2001.11.3 03:45 (#247429)
- 我有Oracle 8i (for Windows),就是版本老一些,8.1.5的。还有8.1.6 for Solaris Intel,被流星雨借走啦。新版本的(for win and linux)应该可以从Oracle download。如果你当楼有困难,我可以当下来给你刻张盘。 -dennis2(Dennis); 2001.11.3 18:56 (#247800)
- (趋前,握手)同志,终于盼到你了!怎么联系? -xxjjs(东方射日); 2001.11.4 01:31 (#248111)
- You can register a userid under Oracle Technology Network! Then you will be able to download Oracle software as long as it is not for business use. Click on membership -> sing up Page Link -neatbook(neatbook); 2001.11.4 02:54 (#248161)
- i think u can download oracle 9.1 from oracle, it seems to be free. I don't know why. -blaise(会爬树的老虎); 2001.11.4 23:24 (#248851)
- Please help to solve this problem about Oracle8i and Windows2000. Thanks. -xxu999(xxu999); 2001.11.2 23:51 (364 bytes. #247253)
- 各位,怎样才能增加SQL Server允许的连接数?(也就是用sp_who 看到的logins)记得好象用啥系统的存储过程来设?多谢了 -xiaozhu(zhutou); 2001.11.1 21:29 (#245753)
- Which version are you using? In SQL Server 7. from Enterprise Manager, right click the server you're dealing with---->Propertities---->Connections tab, you'll see it there. -cyt(cyt); 2001.11.2 13:16 (#246641)
- Tks, I use Sybase 12 -xiaozhu(zhutou); 2001.11.2 18:43 (#246918)
- change the parameter in configuration file , restart the database server. -ca010406(shasha); 2001.11.2 19:12 (#246941)
- The sisters here are so technically strong. Just curious. -pyramid(金字塔); 2001.11.2 19:44 (#246959)
- Do you mean change values in sql.ini? Thank you. -xiaozhu(zhutou); 2001.11.2 20:44 (#247003)
- find the directory where sybase server located, find a file named like XXX.cfg, it is an txt file actually, there is a user connection parameter for your sybase dataserver. -ca010406(shasha); 2001.11.2 20:48 (#247006)
- Coolness, it helps. -xiaozhu(zhutou); 2001.11.5 21:31 (#249831)
- Pls use the following store procedure on isql:
sp_configure,"number of user connections",this is a static parameter.
you can use "select @@max_connections" to view the max connections -hank12345(土老坎); 2001.11.5 21:42 (#249845)
- 哪儿能找到免费的VB6用的IP的控件: 域名解析,Telnet,Ftp? -ottawa(ottawa); 2001.11.1 21:07 (6 bytes. #245703)
- 我想在我的机器上装 RedHat Linux7.1,但装不上,是不是 现在的 Linux 系统不认 IBM 的 40G 硬盘? -haah(Haah); 2001.11.1 16:15 (#245384)
- Any errors? details? redhat probably is the best for hardware support -redplanet(March the 1st); 2001.11.1 16:28 (#245403)
- ?我SUSE 7.3都装了40G的硬盘。不会的。肯定是别的问题。 -heian(忘记备份的天使); 2001.11.1 16:37 (#245419)
- 我的系统原来有 WinME 和 Win2000, 把前面的空间都占用了,在写引导区时不成功。 -haah(Haah); 2001.11.1 16:55 (#245445)
- 如果什么都不想动的话,就做一张引导软盘好了。我就这样干的,因为领导不喜欢lilo的引导界面 -miketany(kat); 2001.11.1 18:00 (#245520)
- 对对,俺以前硬盘小就是这么干的。不过现在就让SUSE独占一个。LILO这东西不太好配,不过网上不少资料可以查,尤其是RH的 -heian(忘记备份的天使); 2001.11.1 19:16 (#245576)
- 我遇到过这个问题。在1024柱面之内划一个很小的区作BOOT区即可。 -mickeymouse(米奇); 2001.11.1 17:03 (#245458)
- 怎么划? 我不想破坏原来的 Windows 系统,里面还有一些软件。 -haah(Haah); 2001.11.1 17:33 (#245496)
- partition magic. if window server 2000, then u hv to get the powerquest server suite -yellow(yellow); 2001.11.1 17:37 (#245500)
- 应该没有问题 -netee(netee); 2001.11.1 19:29 (23 bytes. #245582)
- 可以了,用 RedHat 7.1 的图形安装就可以了。 另: 可以用 Linux + USB + Cable Modem 上网吗 ? 怎么配置 ? -haah(Haah); 2001.11.2 00:10 (#246072)
- USB NIC不一定支持,除非你能找到for linux的驱动。不过一般的RTL卡都没有问题。cable上网建议使用DHCP,其它就不用啥设置了吧?我没用过RH,不过操作应该很简单。 -heian(忘记备份的天使); 2001.11.2 00:14 (#246081)
- 天使,如果要找驱动,是找 USB Adapter 的还是 Modem 的呢? -haah(Haah); 2001.11.2 10:47 (#246510)
- 当然是USB NIC的 -heian(忘记备份的天使); 2001.11.2 17:02 (#246831)
- LINUX起始柱面好像需要在1024以内 -aix_ca(天生好学); 2001.11.2 21:17 (#247037)
- Does anyone know Sybase IQ? I have some question . -blackswan(uglyduck); 2001.11.1 15:27 (#245329)
- 请教一个Java编译的问题。 -smallwhale(外有引力); 2001.11.1 12:36 (524 bytes. #245116)
- 这个没用。Catch了Exception后打出来的和不Catch由系统自己打出来的是一样的一段话。还是说是Compiled Code。 -smallwhale(外有引力); 2001.11.1 14:01 (#245246)
- 高手都睡觉了吗? -smallwhale(外有引力); 2001.11.1 21:23 (#245739)
- i remember there's a debugger in forte which is free for download in
java.sun.com. jbulider and visual cafe should also have their own
debuggers... -breathe(breathe); 2001.11.1 23:08 (#245927)
- Print your code -javaj(JavaJ); 2001.11.1 23:55 (#246037)
- The easiest solution is install Sun's JDK 1.3.x. If you have to use 1.2.2, then use runtime option to set java.compiler to NONE. -contact(Contact); 2001.11.2 01:22 (#246201)
- Windows NT/2000. What's the difference between MANUAL and DISABLED in the Services? AUTOMATIC is easy to understand. tks. -howru(How are you?); 2001.11.1 10:24 (#244990)
- 多大的区别!Manual是指你需要手动启动这个service,Disabled是指目前这个service的状态是不能用,disabled. -luoboyang(萝卜秧); 2001.11.1 10:31 (#244995)
- Thank you, Luo. I'm concerning: I can always change the status from DISABLED to MANUAL (vice verse). The only aim for a Disable is to give us more trouble to start a service, isn't it? I'm wondering. -howru(How are you?); 2001.11.1 12:46 (#245138)
- how to add exe file to the service? -weibing(Chris); 2001.11.1 15:13 (#245317)
- Manual-- 可以运行程序启动,Disable-不行,Automatic:系统服务 -ottawa(ottawa); 2001.11.1 21:10 (#245713)
- 懂Apache的朋友进来 -bluej(小J); 2001.10.31 15:27 (173 bytes. #244062)
- ftp和Apache是两回事。管理用户账号要用root登陆主机管理。建立虚拟目录修改/etc/httpd/httpd.conf。Apache只是web服务器,和站点管理没有关系。 -action(将guest进行到底); 2001.10.31 15:34 (#244068)
- You need some authority on the server. At least you can modify the directory under the Apache -javaj(JavaJ); 2001.11.1 23:58 (#246041)
- Help: a problem with ODBC when I install project2000: -lilyba(Sunshine); 2001.10.31 12:50 (329 bytes. #243918)
- Thanks, i will try it. -lilyba(Sunshine); 2001.10.31 13:20 (#243950)
- 1.check the version of your mdac component. (http://www.microsoft.com/data/download.htm#CCinfo)
2. download the latest mdac (http://www.microsoft.com/data/download.htm) -yangn(Raymond); 2001.10.31 13:29 (#243959)
- VB6的问题:图形的叠加 -ottawa(ottawa); 2001.10.30 13:57 (170 bytes. #242779)
- set border=0 -luoboyang(萝卜秧); 2001.10.30 14:01 (#242783)
- set .bordercolor=你的背景色。 -luoboyang(萝卜秧); 2001.10.30 14:32 (#242797)
- 可能没有说清楚,小图形是方的,中间有个圆,在园的外围是红色的,在贴图时,不要红色显示。 -ottawa(ottawa); 2001.10.30 16:08 (#242978)
- 我猜就是这么回事儿!你原来没说清楚。这样的话,在.bmp里面只有一个layer的话,是无法区分的。你需要用别的软件photoshop做一下,然后用vb里的'picturebox' control可以有叠加的效果。 -luoboyang(萝卜秧); 2001.10.30 16:12 (#242987)
- 多谢!我的硬盘又要受累。
试了另外一个Gif文件,确实可以。多谢! -ottawa(ottawa); 2001.10.30 18:58 (#243153)
- 大家好,请教一个问题.我的\"猫\"为什么只能跑288啊?最大才能311?这是怎么回事情?是从IT computer store买的,型号是INTER HAM DATA FAX VOICE.
商店是是电话线路太旧了,所以速度上不来.他们的这个解释成立吗?请高人指教....谢谢 -111111(快乐老家); 2001.10.29 23:15 (#242162)
- 这应该是电话线路的原因,我原先住的地方用56K的猫情况也与你相同,搬新家后现在速度可达48000bps。 -xiaojh(提木霍顿); 2001.10.29 23:19 (#242170)
- 各位大侠请帮忙,我家电脑近日一直反复出现HELP。VBS那个DOWNLOAD提示,关掉了又反复出现。到底是不是病毒,如果是,如果杀死它。多谢 -luck(luck); 2001.10.29 18:06 (#241664)
- 如何杀病毒,哪个网站可以下载杀病毒的东东。谢谢 -luck(luck); 2001.10.29 18:11 (#241669)
- www.symantec.com -mildkiller(温柔杀手); 2001.10.29 22:26 (#242053)
- HELP!!! A VB project needs be localized in chinese(ºº化). most of them worked (button, lable, text, tooltip ...) but the title bar only worked under win98 not win2000, any suggestion? -netwind(网风); 2001.10.29 16:25 (#241575)
- Because Win2000 use Unicode, while Win98 use MBCS. -mrviceroy(杀人者Daniel是也); 2001.10.29 16:32 (#241581)
- thanks! what should i do? -netwind(网风); 2001.10.29 16:37 (#241583)
- i used Spy to see the windows title it displayed correct and even the tooltip was right.(under winder2000) -netwind(网风); 2001.10.29 16:41 (#241585)
- I am doing this kind of job. You can send me your exe file, and i will do the translation for you. -mrviceroy(杀人者Daniel是也); 2001.10.29 16:43 (#241586)
- i haven't got my exe file yet. i did test on my test code. thanks anyway. -netwind(网风); 2001.10.29 16:59 (#241596)
- help:有人知道WINDOWS下面EXE文件的二进制格式吗?或者在哪里可以找到相关信息。多谢。 -mrviceroy(杀人者Daniel是也); 2001.10.29 14:40 (#241486)
- msdn?? -pasu(InTheSky); 2001.10.29 15:42 (#241522)
- Did you recieve my email? -littleboat(小舟); 2001.10.29 16:02 (#241558)
- 请问:用linksys router 共享上网rogers cable, 如何配置使用@HOME email -simon2001(simon2001); 2001.10.29 00:47 (#241093)
- 初级java问题请教... -breathe(breathe); 2001.10.28 15:47 (372 bytes. #240542)
- Why not post your source code? -sailor(Sailor); 2001.10.29 11:17 (#241349)
- 可能是临时文件在做怪吧。浏览器发现曾经有过这个文件,就可能不会加载新版本的文件,而使用缓存的旧版本 -miketany(kat); 2001.10.29 15:12 (#241509)
- 原因很简单啊,因为你必须那么做。 因为你的程序编译后有多个文件组成, 如果不把当前路径加进去, 它不会自己到这个目录下去找的。 这是Java的一个特点, 有点像unix -miketany(kat); 2001.11.3 08:40 (#247469)
- 请问那里可以找到“Crystal Reports "的资料,谢谢 -lxh(lxh); 2001.10.27 22:20 (#239807)
- TRY THIS ONE:http://support.crystaldecisions.com/fix/ask.asp -lilyba(Sunshine); 2001.10.27 22:27 (#239820)
- 我这里。 -jzwang(hello); 2001.10.27 22:30 (#239823)
- 这是一个著名的作报表的软件,你要什么资料?到他的网站看看。 -luoboyang(萝卜秧); 2001.10.27 22:30 (#239824)
- 谢谢各位的答复,但那里的资料是收费,那里可下载资料和试用软件呢? -lxh(lxh); 2001.10.27 22:48 (#239841)
- i download some information about crystal report, if you need, please email me. -lilyba(Sunshine); 2001.10.29 13:05 (#241431)
- 我的Modem老死机,拔掉电源再上电才能恢复。Rogers@Home的技术支持简直是在混饭吃,一点不能指望。有谁碰到同类问题?是否有好的解决方法?请众人指点。 -faquir999(行者); 2001.10.27 16:23 (#239490)
- 什么型号的modem? -heian(被吹的东倒西歪的天使); 2001.10.27 17:48 (#239578)
- Cabel Modem:TERAYON.谢谢老黑关心! 我请求换Motorola Modem,Rogers@Home说服务器端和家里用的Modem要配套,没法换。 -faquir999(行者); 2001.10.27 18:29 (#239598)
- 俺一直都用SAMSUNG的,老型号,但是是我用过最稳定的。重量是最重的。有次拆开看,里面有个不锈钢内壳把电路板全包起来。 -heian(被吹的东倒西歪的天使); 2001.10.27 18:51 (#239613)
- 我用 Motorola 的 Modem, 最近也老出现此问题,重装了系统也没用,今天早上打了个电话问 Rogers, 说最近这片地区都这样,叫我不要担心,他们正在找原因。唉,Rogers 也真水。 -haah(Haah); 2001.10.31 10:30 (#243796)
- 你们都在哪儿?我本来还想要换cable modem呢,我的是TERAYON,今早把ROGERS的软件全删了,重新启动。 -tracyhp(Tracy); 2001.10.31 10:39 (#243802)
- Help: Connot create /var/adm/utmpx on Solaris 8 -benz(Ben); 2001.10.26 13:15 (328 bytes. #238108)
- JetSuite Pro 2.1 Wanted -tracyhp(Tracy); 2001.10.26 12:09 (364 bytes. #238047)