find的用法是什么find后接什么
find + 名词 (sb /sth) ...发现 【例】find a car
find + sb + sth 为某人找到某物 【例句】 I wonder if you could find me a deck of cards?
find + sb + doing sth /find + sth + Ved 发现…处于某种状态;遇见;碰见
【例句1】They found her walking alone and depressed on the beach...
【例句2】She returned to her east London home to find her back door forced open...
find + sth + 介词 Thrushes are a protected species so you will not find them on any menu.-find
4.find + 宾语从句 【例句】The two biologists found, to their surprise, that both groups of birds survived equally well...这两位生物学家惊奇地发现,两组鸟都很好地存活了下来.
find it + adj. + to do sth 【例句】At my age I would find it hard to get another job...
到了我这个年纪自己就会发觉很难再找到一份工作了.
find + n. + in doing sth 【例句】How could anyone find pleasure in hunting and killing this beautiful creature?...怎么会有人以猎杀这种美丽的动物为乐呢?
另外,find 还可以作为名词,为发现的意思.【例句】His discovery was hailed as the botanical find of the century.他的发现被誉为本世纪植物学的最重大发现.-Find
FindWindowExA 怎么找文本框的句柄最好有原码
楼上诸位说得满多的,但是有一点没有提到
楼主是找DX游戏里面的子窗口句柄吗?如果是DX游戏里面的,一般来说是无法获得的,因为它的子窗口是画的,
首先下载一个spy++看看可不可以查到句柄,如果查不到,那就是画的窗口,没有句柄,如果可以找到,则代码如下
Private Declare Function FindWindowEx Lib “user32“ Alias “FindWindowExA“ (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, ByVal lpsz2 As String) As Long
Private Sub Command1_Click()
Dim MyHwnd
’如果窗口类名或者标题不能确定则参数设置为 vbNullString
’如果已知要找的子窗口位于某另一个子窗口之后,则把第2个参数 0 改为另一个子窗口句柄
MyHwnd = FindWindowEx(父窗口句柄, 0, 子窗口类名, 子窗口标题)
MsgBox MyHwnd
End Sub
-find
Linux系统find命令应用
一.find命令
基本格式:find path expression
1.按照文件名查找
(1)find / -name
2.实例
(1)grep ’test’ d* #显示所有以d开头的文件中包含 test的行
(2)grep ‘test’ aa bb cc #显示在aa,bb,cc文件中包含test的行
(3)grep ‘[a-z]\{5\}’ aa #显示所有包含每行字符串至少有5个连续小写字符的字符串的行
(4)grep magic /usr/src #显示/usr/src目录下的文件(不含子目录)包含magic的行
(5)grep -r magic /usr/src #显示/usr/src目录下的文件(包含子目录)包含magic的行
(6)grep -w pattern files :只匹配整个单词,而不是字符串的一部分(如匹配’magic’,而不是’magical’),
-Find