Tag/
共39个网摘 [
1 2 ]
下一页 |
AppZ收录,使用标签:p2p, learn, collect, source,时间:2008-6-11 12:32:26 | 相关网摘,我也收藏
Current Version:1.1.0
Welcome to ApexDC.net, the home of an innovative Direct Connect client based on the StrongDC++ modification. ApexDC++ is actively developed and provides a user-friendly interface, unique features, unlimited customisation and a dedicated support team.
ApexDC++ is, and always will be, free from all forms of malware. The project is managed and developed by veterans of the P2P scene and as such we feel we are in touch with the opinions, wishes and requirements of our users.
http://www.apexdc.net/
JavaMarker收录,使用标签:source, code, 源码,时间:2008-5-9 12:16:37 | 相关网摘,我也收藏
优秀网站源码、编程源码下载网站大集中
1.51源码:http://www.51aspx.com/
2.源码之家:http://www.codejia.com/
3.源码网:http://www.codepub.com/
4.虾客源码:http://www.xkxz.com/
5.多多源码:http://www.morecode.net/
6.洪越源代码:http://www.softhy.net/
7.锋网源码:http://www.fwvv.net/
8.代码爱好者:http://www.codefans.com/
9.爱源码:http://www.aiyuanma.com/
10.酷源码:http://www.kyuanma.com/
11.搜源码:http://www.soucode.com/
12.拉基源码:http://www.lajicode.com/
13.源码开发网:http://www.codedn.com/
14.源码天空:http://www.codesky.net/
15.源码吧:http://www.asp88.net/
16.绿色源码:http://code888.cn/
17.9号源码中心:http://www.9code.com/
18.网馨源码:http://www.asppsa.com/
20.源码天下:http://www.pccode.net/
21.需要源码:http://www.needcode.cn/
22.华夏源码:http://www.haocpu.com/
23.天新网:http://codes.21tx.com/
24.源码网:http://www.yuanma5.com/
25.无忧源码:http://www.5uym.com/
26.中国下载站:http://www.cnz.cc/
27.资源吧:http://www.ziyuan8.com/
28.启明星源码:http://www.codewww.com/
29.我要源码:http://www.xia51.com/
30.清秋源码:http://www.asp678.com/
……
累死了,需要一个个加链接,不加了,凑合吧~
http://topic.csdn.net/u/20080501/12/45ab4636-6566-4ffe-8ec0-b99da747ea5b.html
stickyman收录,使用标签:asynchronous, dynamically, Firefox, JavaScript, opera, Safari, Source, synchronization,时间:2008-2-10 23:49:11 | 相关网摘,我也收藏
Most of the time, Firefox, Safari and Opera work without much effort and differences between the 3. However, throw IE into the mix and you’re in a whole different world.
http://ntt.cc/2008/02/10/4-ways-to-dynamically-load-external-javascriptwith-source.html
yong_ly收录,使用标签:abap, to, search, for, strings, in, ABAP, source, code, includes.,时间:2008-2-10 8:46:56 | 相关网摘,我也收藏
Author: Thomas Schulz
Submitted: April 2, 2007
This report can be used to search for strings in ABAP source code includes.
REPORT Z_FIND line-size 300 NO STANDARD PAGE HEADING. "#EC *
tables:
trdir.
types:
begin of SSrcTab,
Line(256) type c,
end of SSrcTab,
begin of SDynPro,
Prog like d020S-Prog,
DNum like d020S-DNum,
end of SDynPro.
parameters:
Find_Str(256) type c default '*test*'. "#EC *
select-options:
Includes for trdir-name default 'Z*' option CP sign I. "#EC *
data:
gs_DynHeader type d020s, "#EC NEEDED
gt_DynFields type table of d021s, "#EC NEEDED
gt_DynLines type table of d022s,
gt_DynParams type table of d023s, "#EC NEEDED
gs_DynPro type SDynPro,
gv_Exit type boolean,
gt_SrcCode type SSrcTab occurs 0 with header line,
gv_SrcLine(8) type c,
gv_RepName like trdir-name,
gt_RepName type table of ProgName,
gv_DynNum type sydynnr,
gv_DbCount type i,
gv_NumLines type i,
gv_NumLines2 type i,
gv_NumFiles type i,
gv_NumDynPros type i,
gv_NumFiles2 type i,
gv_NumBytes type p,
gv_SomethingFound type c,
gv_DisplayOnly type c,
gv_LineNum type i,
gv_ScrollPos type i,
gv_Index type i,
gv_NumNames type i,
gv_Mod type i,
gv_Progress type i.
AUTHORITY-CHECK OBJECT 'S_DEVELOP'
ID 'DEVCLASS' FIELD '* '
ID 'OBJTYPE' FIELD 'PROG '
ID 'OBJNAME' FIELD '* '
ID 'P_GROUP' FIELD '* '
ID 'ACTVT' FIELD '03 '.
if sy-subrc <> 0.
exit.
endif.
AUTHORITY-CHECK OBJECT 'S_DEVELOP'
ID 'DEVCLASS' FIELD '* '
ID 'OBJTYPE' FIELD 'XSLT '
ID 'OBJNAME' FIELD '* '
ID 'P_GROUP' FIELD '* '
ID 'ACTVT' FIELD '03 '.
if sy-subrc <> 0.
exit.
endif.
if Find_Str is initial.
Find_Str = 'never find this'.
endif.
select count(*) from trdir where Name in Includes.
gv_NumNames = sy-dbcnt.
select count(*) from d020s where Prog in Includes.
gv_NumNames = gv_NumNames + sy-dbcnt.
select Name from trdir into gv_RepName where Name in Includes.
append gv_RepName to gt_RepName.
endselect.
sort gt_RepName.
loop at gt_RepName into gv_RepName.
if not gv_Exit is initial.
exit.
endif.
perform. FindIt.
endloop.
select Prog DNum from d020s into (gv_RepName, gv_DynNum) where Prog in Includes.
if not gv_Exit is initial.
exit.
endif.
perform. FindIt.
endselect.
write: / gv_NumFiles2, ' includes found = ', gv_NumLines2, ' lines'.
write: / gv_NumFiles , ' includes read = ', gv_NumLines , ' lines', gv_NumBytes , ' characters'.
write: / gv_NumDynPros, ' screen flow logics read'.
write: /.
form. FindIt.
gv_DbCount = gv_DbCount + 1.
if not gv_RepName is initial.
if gv_NumNames > 100.
gv_Mod = gv_DbCount mod ( gv_NumNames / 100 ).
if gv_Mod = 0.
gv_Progress = gv_Progress + 1.
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
PERCENTAGE = gv_Progress.
endif.
endif.
perform. Find.
endif.
endform.
form. Find.
data:
lv_FirstTime type c,
lv_RepAndDynNum type char64.
if gv_DynNum is initial.
read report gv_RepName into gt_SrcCode.
if sy-subrc <> 0.
break-point. "#EC NOBREAK
endif.
else.
gs_DynPro-Prog = gv_RepName.
gs_DynPro-DNum = gv_DynNum.
import dynpro gs_DynHeader gt_DynFields gt_DynLines gt_DynParams id gs_DynPro.
if sy-subrc <> 0.
break-point. "#EC NOBREAK
endif.
gt_SrcCode[] = gt_DynLines[].
endif.
loop at gt_SrcCode where line cp Find_Str.
gv_Index = sy-tabix.
if lv_FirstTime is initial.
if not gv_DynNum is initial.
concatenate gv_RepName gv_DynNum into lv_RepAndDynNum separated by space.
write: / lv_RepAndDynNum.
else.
write: / gv_RepName.
endif.
hide gv_RepName.
hide gv_DynNum.
clear gv_DisplayOnly.
hide gv_DisplayOnly.
lv_FirstTime = 'X'.
gv_SomethingFound = 'X'.
gv_NumFiles2 = gv_NumFiles2 + 1.
endif.
gv_SrcLine = gv_Index.
if gt_SrcCode-line(1) = '*'.
write: / gv_SrcLine intensified off, gt_SrcCode-line color col_negative inverse on intensified off.
else.
write: / gv_SrcLine intensified off, gt_SrcCode-line intensified off.
endif.
hide gv_RepName.
hide gv_DynNum.
gv_DisplayOnly = 'X'.
hide gv_DisplayOnly.
gv_LineNum = gv_Index.
hide gv_LineNum.
gv_NumLines2 = gv_NumLines2 + 1.
endloop.
if not lv_FirstTime is initial.
write sy-uline(128).
endif.
loop at gt_SrcCode.
gv_NumLines = gv_NumLines + 1.
gv_NumBytes = gv_NumBytes + strlen( gt_SrcCode-line ).
endloop.
gv_NumFiles = gv_NumFiles + 1.
if not gv_DynNum is initial.
gv_NumDynPros = gv_NumDynPros + 1.
endif.
endform.
at line-selection.
if not gv_RepName is initial.
if gv_DisplayOnly is initial.
if gv_DynNum is initial.
if gv_RepName cp '*=XT'.
if gv_RepName cs '='.
gv_RepName = gv_RepName(sy-fdpos).
set parameter id 'XSLTNAME' field gv_RepName.
call transaction 'XSLT_TOOL'.
endif.
else.
set parameter id 'RID' field gv_RepName.
call transaction 'SE38'.
endif.
else.
set parameter id 'DYR' field gv_RepName.
set parameter id 'DYN' field gv_DynNum.
call transaction 'SE51'.
endif.
else.
if gv_DynNum is initial.
read report gv_RepName into gt_SrcCode.
if sy-subrc <> 0.
break-point. "#EC NOBREAK
endif.
else.
gs_DynPro-Prog = gv_RepName.
gs_DynPro-DNum = gv_DynNum.
import dynpro gs_DynHeader gt_DynFields gt_DynLines gt_DynParams id gs_DynPro.
if sy-subrc <> 0.
break-point. "#EC NOBREAK
endif.
gt_SrcCode[] = gt_DynLines[].
endif.
loop at gt_SrcCode.
gv_SrcLine = sy-tabix.
if gt_SrcCode-line(1) = '*'.
write: / gv_SrcLine intensified off, gt_SrcCode-line color col_negative inverse on intensified off.
else.
write: / gv_SrcLine intensified off, gt_SrcCode-line intensified off.
endif.
endloop.
if sy-lsind = 1.
gv_ScrollPos = gv_LineNum - 24.
if gv_ScrollPos < 1.
gv_ScrollPos = 1.
endif.
call function 'LIST_SCROLL_LINE_TOPMOST'
exporting
list_index = 1
list_line = gv_ScrollPos.
set cursor line gv_LineNum.
endif.
endif.
clear gv_RepName.
clear gv_DisplayOnly.
endif.
http://wz.csdn.net/tool
stickyman收录,使用标签:animation, facebook, FBJS, google, GWT, JavaScript, open, source, web, toolkit, yahoo, yui,时间:2008-1-19 14:25:51 | 相关网摘,我也收藏
Google and Yahoo,who both have open sourced internal JavaScript libraries.Now,Facebook is following in the steps of the rival web giants.The Animation library is described as a way for developers to create “customizable animations using CSS and DOM manipulation.” It is released under a modified BSD license.
http://ntt.cc/2008/01/19/open-source-javascript-library-facebook-animation.html
fzqiang2007收录,使用标签:CodeProject:, A, simple, Multi-Threaded, Server, Client, Instant, Messenger, Application., Free, source, code, and, programming, articles,时间:2007-12-25 11:17:32 | 相关网摘,我也收藏
CodeProject: A simple Multi-Threaded Server Client Instant Messenger Application. Free source code and programming articles
http://www.codeproject.com/KB/cs/Instant_Messenger.aspx
共39个网摘 [
1 2 ]
下一页