vb 怎么让鼠标移动到位于Image上Label控件时产生事件

ajunajun 2018-06-21 10:39:18
窗体上有一个Image,且Image铺满窗体,Image上有一个Label控件组
怎么让鼠标移动到Label控件上产生事件(比如移动到Label1(2)时,debug.print “进入Label1(2)”),离开Label时(即在Image上)无任何操作。
由于Image和Label两个控件都没有.hWnd属性,实在不知道怎么弄了。
...全文
521 12 打赏 收藏 转发到动态 举报
写回复
用AI写文章
12 条回复
切换为时间正序
请发表友善的回复…
发表回复
舉杯邀明月 2018-06-24
  • 打赏
  • 举报
回复
引用 8 楼 bakw 的回复:
[quote=引用 7 楼 Chen8013 的回复:]
楼上的这个“方案”,不仅需要HOOK窗口消息,还要自己处理很多“事情”……
 比如,按鼠标指针坐标(要转换成“客户区坐标”才行)判断是否处于某控件上,
 当界面上相关控件有变动(大小、位置、数量等变动),就要增删相关代码、调整参数等。
 鼠标在窗体上的轻量级控件上移动时,窗体会接收到WM_MOUSEMOVE消息,
  如果窗体中的这些控件已经有MouseMove事件过程代码,可能会增加HOOK过程的逻辑复杂度。

 WM_MOUSELEAVE消息,若不“正确处理”,HOOK过程中不会收到这个消息。


还有,我有点怀疑楼主可能还不会HOOK窗口消息……

其实Timer控件+GetCursorPos就可以实现mouseout了
[/quote]
哈哈,其实我以前也是这么干的。
舉杯邀明月 2018-06-24
  • 打赏
  • 举报
回复
引用 9 楼 jiangsheng 的回复:
1 subclass不是hook,如果你不明白的话去查SetWindowHookEx和SetWindowLong的文档
2 WM_MOUSEMOVE是默认只发给鼠标光标下的窗口的,要想抓窗口之外的鼠标移动得去额外调用SetCapture。楼主没调用,那么只有在鼠标位于Label控件上才会往Label发的,根本不需要判断鼠标位置,Label收到这个消息就表明鼠标在Label之内了。窗体控件不管怎么变动,对Label在什么时候收到WM_MOUSEMOVE和WM_MOUSELEAVE是完全没有影响的。如果你不明白的话,去看WM_MOUSEMOVE和WM_MOUSELEAVE的文档。

我在VB6中,这方面的东西已经用得不少了,我岂会不明白!


你所谓的“子类化”,不能叫“HOOK”? 我还第1次听到这样的说法。
我觉得你这个概念,跟那种别人在说“标准DLL”特指用于动态加载并调用其导出函数的dll文件一样,
  本来这种“狭义”的说法,在一定的场合下,并没有什么歧义,也能为大多数人理解,
  而你非要去强调dll的定义,非要在别人讨论“某种”特定dll氛围中,去强调“ActiveX DLL也是标准DLL !”

SetWindowLong未必是HOOK,但 SetWindowLong(HWND, GWL_WNDPROC, ......)凭什么只能叫“子类化”而不能叫HOOK!


Lable、Image 这些都是“直接画”的,根本没有句柄,哪会有什么 WM_xxxx 的消息给你!
你可能很久没摸VB6了,这些已经忘记……

我看有些“不明白”的,恐怕是你自己。


蒋晟 2018-06-24
  • 打赏
  • 举报
回复
1 subclass不是hook,如果你不明白的话去查SetWindowHookEx和SetWindowLong的文档
2 WM_MOUSEMOVE是默认只发给鼠标光标下的窗口的,要想抓窗口之外的鼠标移动得去额外调用SetCapture。楼主没调用,那么只有在鼠标位于Label控件上才会往Label发的,根本不需要判断鼠标位置,Label收到这个消息就表明鼠标在Label之内了。窗体控件不管怎么变动,对Label在什么时候收到WM_MOUSEMOVE和WM_MOUSELEAVE是完全没有影响的。如果你不明白的话,去看WM_MOUSEMOVE和WM_MOUSELEAVE的文档。
脆皮大雪糕 2018-06-24
  • 打赏
  • 举报
回复
能简单实现的尽量简单实现,简单的搞不定了再考虑复杂的。关键看楼主能做到什么程度。
笨狗先飞 2018-06-23
  • 打赏
  • 举报
回复
引用 7 楼 Chen8013 的回复:
楼上的这个“方案”,不仅需要HOOK窗口消息,还要自己处理很多“事情”……
 比如,按鼠标指针坐标(要转换成“客户区坐标”才行)判断是否处于某控件上,
 当界面上相关控件有变动(大小、位置、数量等变动),就要增删相关代码、调整参数等。
 鼠标在窗体上的轻量级控件上移动时,窗体会接收到WM_MOUSEMOVE消息,
  如果窗体中的这些控件已经有MouseMove事件过程代码,可能会增加HOOK过程的逻辑复杂度。

 WM_MOUSELEAVE消息,若不“正确处理”,HOOK过程中不会收到这个消息。


还有,我有点怀疑楼主可能还不会HOOK窗口消息……

其实Timer控件+GetCursorPos就可以实现mouseout了
舉杯邀明月 2018-06-23
  • 打赏
  • 举报
回复
楼上的这个“方案”,不仅需要HOOK窗口消息,还要自己处理很多“事情”……
 比如,按鼠标指针坐标(要转换成“客户区坐标”才行)判断是否处于某控件上,
 当界面上相关控件有变动(大小、位置、数量等变动),就要增删相关代码、调整参数等。
 鼠标在窗体上的轻量级控件上移动时,窗体会接收到WM_MOUSEMOVE消息,
  如果窗体中的这些控件已经有MouseMove事件过程代码,可能会增加HOOK过程的逻辑复杂度。

 WM_MOUSELEAVE消息,若不“正确处理”,HOOK过程中不会收到这个消息。


还有,我有点怀疑楼主可能还不会HOOK窗口消息……
蒋晟 2018-06-22
  • 打赏
  • 举报
回复
不论鼠标是从窗口外移动到窗口内还是窗口内部移动都会有mousemove的。

你的需求是只在进入的时候写一次debug print,那么你需要抓WM_MOUSELEAVE ,在这里记录一个标志(鼠标离开了)。在mousemove的时候去检测这个标志,如果之前鼠标在窗口外面,那么说明这是鼠标进入了窗口的事件,debug print之后清除这个标志(鼠标已经在窗口里面了)。下次再有mousemove进来,如果查到上次鼠标位置还在窗口里面,所以是窗口内的移动,不做处理。

vb6没有封装WM_MOUSELEAVE,所以得子类化来在窗口过程里加入WM_MOUSELEAVE的处理。
具体参考https://www.codeproject.com/Articles/6844/Adding-MouseLeave-MouseHover-events-to-VB-Control

伪代码大概是这样:
初始化
标志=1
WM_MOUSEMOVE
debug.print
标志=0
WM_MOUSEMOVE
WM_MOUSEMOVE
.……
WM_MOUSELEAVE
标志=1
WM_MOUSEMOVE
debug.print
标志=0
WM_MOUSEMOVE
WM_MOUSEMOVE
.……
舉杯邀明月 2018-06-21
  • 打赏
  • 举报
回复
VB6的 Label、Image 等“轻量级控件”,都是没有 hWnd的。
但它们都支持 MouseMove( )事件。

不过:MouseMove事件只能检测到“已经移入”之后的事,无法监测到“离开”。
对于你目前的“情况”,Image是“铺满窗体”的,而Label控件往往比较小。
可以定义一个“窗体级变量”标识:
 当触发 Label控件的 MouseMove( )事件 时,表示鼠标已经移入Label的区域了,
     在其事件过程中“标识”移入,并做其它相关处理;
 当触发 Image控件的 MouseMove( )事件 时,表示鼠标已经移出 Label的区域了,
    在其事件过程中“清除标识”,并做其它相关处理。

不过,有比较大的局限性:
 如果从Label 控件中“迅猛”的移到临近的别的控件上(比如按钮、TextBox等),
虽然看起来“经过”了Image控件,但有可能也没触发Image控件的 MouseMove( )事件 ;
 如果Label紧挨着窗体边缘、鼠标从Label上从“挨着”的地方移出窗体;或者紧挨着别的控件、鼠标从“挨着控件”的
地方移到相应控件上……这时都无法执行“离开”的操作。
(当然“挨着控件”也可以在这个控件的 MouseMove( )事件 中处理;但“移出窗体”除了HOOK可能没法了)
 还可能有别的“麻烦”,就不一一细说了……

总之,还是考虑好真正的需求,是否真有必要要检测这个。
笨狗先飞 2018-06-21
  • 打赏
  • 举报
回复
有mousemove事件的,直接事件上写代码就好了,窗体不是自己程序里的吗?
of123 2018-06-21
  • 打赏
  • 举报
回复
我曾经用类似方法做过,鼠标移到显示某网址的 Label 上时,其 Caption 变为超链接形式(蓝色粗体下划线)。点击则打开对应网页。
of123 2018-06-21
  • 打赏
  • 举报
回复
Form 上 Image 布满,上面放了 Text1 以及 Label1 数组(0-2):
Private Sub Form_Load()
Label1(2).Caption = " No mouse found"
End Sub

Private Sub Image1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Label1(2).Caption = "Mouse arrived" Then Label1(2).Caption = "Mouse left"
End Sub

Private Sub Label1_MouseMove(Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)
If Index = 2 Then
Label1(2).Caption = "Mouse arrived"
Else
If Label1(2).Caption = "Mouse arrived" Then Label1(2).Caption = "Mouse left"
End If
End Sub

Private Sub Text1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Label1(2).Caption = "Mouse arrived" Then Label1(2).Caption = "Mouse left"
End Sub

脆皮大雪糕 2018-06-21
  • 打赏
  • 举报
回复
话不多说,给段代码


Option Explicit


Private Sub Form_Load()
'Image 铺满
Me.Image1.Top = 0
Me.Image1.Left = 0
Me.Image1.Width = Me.ScaleWidth
Me.Image1.Height = Me.ScaleHeight
End Sub

Private Sub Image1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Call SetMouseOnFlag(-1)
End Sub

Private Sub Label1_MouseMove(index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)
Call SetMouseOnFlag(index)
End Sub
Private Sub SetMouseOnFlag(index As Integer)
Dim i As Integer
For i = Label1.LBound To Label1.UBound
If index = i Then
Label1(i).Tag = 1 '这个属性可以作为其他地方进行判断鼠标是否在上面的标志
Label1(i).FontBold = True
Label1(i).ForeColor = vbRed
Label1(i) = "鼠标在我这"

Else
Label1(i).Tag = -1
Label1(i).FontBold = False
Label1(i).ForeColor = vbBlack
Label1(i) = "找不着鼠标"
End If
Next
End Sub


1 , vb5dialog.zipThis demonstrates how to subclass the Common Dialog Dialogs and manipulate a specific Dialog.2 , cpnl.zipForm_Taskbar is a control for Visual Basic which, once placed onto a form, makes the form act like the Taskbar (minus the Start Menu).3 , vbo_progbar.zipImplement a common control progress bar with added features that are not accessable using COMCTL32.OCX! 4 , vbo_infolabel.zipThis control adds a great user-friendly interface with and icon and "Hover" ability. Based on a control seen in ICQ. 5 , vbo_checkcombo.zipAdd a checkbox to a combo box and use it to enabled/disable the combo! or whatever you would like to do with it! 6 , vbo_controlframe.zipCreate your own system button such as a Maximize, Minimize, Close, and many others with ease! 7 , vbo_ctextbox.zipThis class makes using the Textbox or Edit class API simple. Easily set properties and access many features not available directly from VB. 8 , taskbar.zipForm_Taskbar is a control for Visual Basic which, once placed onto a form, makes the form act like the Taskbar (minus the Start Menu).9 , NT_Service.zipThis is an OCX that allows you to create an NT service application...add the control to your project and register it as a service!!10 , Scroller.zipThis is a Control Container, it's like a frame control but it lets you scroll the content up and down...11 , TrayArea.zipThis control lets you add your icon to the System Tray Area and handle some events such as MouseMove, MouseDown, MouseUp and DblClick.12 , Resizer.zipThis is a very useful control: It's a container control, you can insert two controls inside and then you'll have a vertical (or horizontal) resizer bar (like the Windows File Explorer). A resizer can contain another resizer... an so on. (you can divide you form in as many sizable sections as you want...).13 , Label3D.zipTh
作者:星光   编程原理详解:   Image1是背景,Image2是人物(玩家),image3是子弹,image4是敌人,image5是敌人子弹,   Label1有来显示“START”和“GAMEOVER”的,Label2和Label3用来显示任务状态,   Label4和Label5显示生命值,label6显示关数,Label7显示是否发大招,   Label8和Label9是用来直观显示生命值的,算法为:Label8.Width = Label4 * 10,这几个Label控件在代码中起到间接判断的作用   Timer1控制人上升,Timer2控制人下降, Timer3和Timer4控制让玩家子弹移动,Timer5控制第一关敌人车和子弹移动   Timer6判断子弹与人是否相碰,并减小生命值,Timer7控制第二关大怪上下移动,Timer8控制第三关子弹机车的移动   所有Picture控件中的图片,都是用于人物发生动作(有的图片没用上),进行与Image图片切换,图片切换,让人感觉image内的图片真动了!   键盘控制说明一下,空格键负责“跳”动作,Shift键和回车键控制发大招,W、S、A、D与方向键命令一样   下面这段代码是延代码,出现过很多次,作用是:让两张图片切换能让我们看见,VB执行速度很快,不加入这个就会看不出来图片切换   Dim Savetime As Single   Savetime = Timer ‘记下开始的间   While Timer < Savetime 2 ‘循环等待   DoEvents ‘控制权,以便让操作系统处理其它的事件。   Wend   好了说到这里,这是我做的第二个,还不是很完善,希望大家下载鼓励一下!里有操作说明:空格键负责“跳”动作,回车键发招,Shift键和回车键组合发大招。W、S、A、D和方向键命令一样(会玩的用前者,会玩卡丁车的用后者)
1,animate.zipThis ActiveX DLL (Source Included) shows how to create animated dialogs in VB5. 2,MetricConversionDLL.zip34 Metric conversion routines in a VB5 DLL. Callible directly or just call the nice front end.3,ControlP.zipWith help of this OCX you can call 39 control panels in windows!4,RemBuilderplus.zipActiveX that allows the ability to add comment blocks with ease.5,VertMenu.zipThis is a free active ocx with full source code for a vertical menu with the look and feel of Outlook 97. 6,dm10e.zipDevMailer adds SMTP email sending abilities to your VB, ASP, VBA, Delphi, or Perl program in just seconds! Features 7,HideAway.zipAn alignable tool bar which can be hidden. Also includes smooth scrolling for hiding/unhiding.8,tlsGUI.zipTILISOFT GUI ActiveX Controls - ImageLabel, ScrollPanel, SplitPanel, Brief9,recordsetEng.zipThis application shows how a DLLActiveX queries a Database and returns the recordset to the Standard EXE application.10,THtml.ZipShow Page Title for file selected with ".HTM" or ".ASP" extension11,Fancy_Button.zipFancy Button12,TransFX.zipTransitionFX is an ActiveX control that allows you to make professional quality slide shows, picture presentations or screen savers13,Roman.zipThis activeX control convert Decimal numbers to Roman numerals and back 14,pgBar.zipCarrick Progress Bar 1.0 - replacement for standard progress bar with customizable colors and styles15,JPGMaker.zipJPGMaker is an ActiveX control designed to compress bitmap images and save them in JPG format16,pictuner.zipPicTuner is an ActiveX control designed to adjust contrast, brightness and color balance of bitmap images. It supports the following file formats: *.jpg, *.bmp, *.dib. 17,Hyperlink.zipHyperlink ActiveX control allows you to include hypertext links on your forms18,shortcut.zipShortcut is an ActiveX control designed to create shortcuts to programs and documents and place them on windows desktop.19,PicOpener.zipPicOpener is an ActiveX control that allows you to read image files in over 50 formats and convert them to BMP bitmaps20,PicConverter.zipRead over 50 and write 15 image file formats.21,labelblink.zipBlinks The Caption In A Label Box22,UnZipper.zipActiveX control designed to easily manipulate ZIP archives from within your application. 23,gurhancoolbuttonocx.zipGurhanCoolButton is a free ActiveX Control that Acts as a Flat Button. Background Pictures and Icons can be added with ease24,pktextline.zipTextbox with modern design25,DirScanner.zipDirScanner is a free ActiveX control designed to scan directory/drive and save results to a file26,activeEjecutor.zipThis control launches a program and waits until it has finished or27,REGASP.zipDLL which provides access to the Windows 2000 registry through Active Server Pages (ASP) code. 28,ColorProgressBar.zipReplaces the standard progress bar with one that is on the order of O(n^2) times faster, with color options, and directional options.29,MDITaskBarDemo.zipThis zip file contains all the code and procedures necessary to create and implement an MDI TaskBar control. 30,AnimatedAgent.zipTwo VBScripts which allow the users to INSTANTLY create MS Agent EMAIL and MS AGENT Web pages or add MS Agent to web pages31,label3d.zipThis ActiveX Control creates a 3D Label. 32,Shcmbbox1.zipShComboBox ActiveX Control v1.0 behaves exactly like the Combo box in Windows Explorer showing all the folders and even files in the Shell's namespace33,fldrvw21.zipFolderView ActiveX Control 2.1 allows you to add a Windows Explorer-like treeview in your application.34,controlcenterlefttrans.zipControl that centers text right, left or in the middle.35,BetaDBToolBar.zipDBToolBar (Database ToolBar) for Add, Edit, Delete, etc...36,CodeDll.zipMiniCalculator DLL that allows input keys/Calculation results directly into a TextBox, ComboBox, etc.37,hyperlink082800.zipThis Hyperlink ActiveX Control will allow you to insert an Hyperlink which will be very useful if you want to give a link to your website from your program. 38,DropdownCalculator.zipNice Drop-Down ActiveX Control Calculator. It is like a combo box, but it will drop down a calculator, which you can use for calculation39,ColorPicker1.zipIt is a color picker control, which is almost similar to those you find in MS Office 2000 applications.40,PowerPrint.zipEasiest way to print. This Will Print Left Align, Right Align, Center Align. OCX. Full demonstration easy to use.41,fb.zipFolder Browser lets you select the directories the easy and elegant way.42,TimeLed.zipThis simple ActiveX control shows a graphic clock with led simulation43,MouseHook.zipThis control provides a nice, elegant way of reacting to the movement of the mouse wheel and other mouse functionality44,rscomm.zipSerial Comm control that provides the ability to send and receive 5 bit baudot with its built in ASCII to baudo and baudo to ASCII converter. Also can tx and rx any baudrate 45 to 115k!45,Mouse.zipVery useful mouse events, such as MouseMove, MousePosition, ClickRightButton, ClickLeftButton and etc.46,cdwriter.zipThis is a relatively simple cd writer code, comes with a freeware ocx. 47,converter.zipThis example project shows you how to use my binary.ocx. 48,autoreg.zipAuto easy, fast super Register/Unregister ocx/dll files at the same time!49,EasterEgg.zipthis is an EasterEgg OCX that you can drop on to your about form. 50,imgedit.zipImgEdit is an image-processing tool. It allows you to adjust brightness, contrast and saturation. 51,xshow.zipA control to create screensavers and/or slideshows. Choose from more than 120 transition effects between bitmap images.52,mp3enc.zipMP3 encoder. Source code for OCX not included.53,opendialog.zipAn extended Dialog Box like VB dialog style, with New, open, Recent files and preview. 54,SJIni.zipShareware OCX for manipulating INI files. Fast, easy, effective way to manipulate INI files.55,SoundSource.zipBrainFusion Presents The Dancer.Ocx Which is capable of reading The Sound Peak Form Sound Card When Mp3 or Wav File Is Played 56,SysUSATimeZONE.zipGet's Time From Anywhere In USA. Just By Typing In The State Abbreviation. 57,adbevel.zipVisual Basic now has a bevel control like Delphi. 58,RebootPlus.zipHere Is Another OCX File That Logs Off, Shutdown, Restart, Displays Device Manage, And Display Properties.59,RetCal10.zipThis Activex control creates retail calendars on the fly. very useful if you are in the retail, accounting, merchandising industries. Very cool check it out60,SysErrorOCX.zipOCX file that handles Database Errors. Contents Of This File Include.SysError.OCX 61,Appearence.zipSystem OCX allows you to change certain system display settings. 62,textbox1.zipSyntax highlighting text editor ... not based on the RTF box... supports drawing of external graphics on the text area...useful for html editors etc63,Player.zipA multimedia ocx to replace mediaplayer ocx64,Audio.zipThis ActiveX Control will play all kinds of MPEG-Layer3(MP3) files with ease of use. 65,HLiteDemo.zipHlite.Ocx When Placed On A Form And Called From A Textbox When It Has Focus It Will Highlight The Text Very Usefull In Data Entry Application66,SysBacUpDemo.zipThis Is A Demo Application Using A Ocx File To Backup Files. 67,OCXButton1.zipAn ActiveX control (OCX) for creating Buttons with attributes unavailable in the intrinsic CommandButton control of VB68,transferTV.zipTransfers values from one treeview to another recursively.69,createctrl.zipA float button control70,SysPCase.zipThis Is An OCX File That Will Allow a user to start typing and when textbox loses focus the OCX will make all text that user typed in into Proper Text Format71,SysErrorLogWriter.zipHere is an OCX file that will log all errors when placed under an event On Error Goto72,Pbar.zipThis is an OCX that has the nice Progress Bar that has the Percent in the middle It's nice and easy to use73,metawizardv101.zipMeta Wizard a small Meta Tag creation tool that takes advantage of the system toolbar and ontop properties. With this tool you can easily create Meta Tags74,Counter.zipFormatted number, long number counter, Thousand seperator75,barcode128.zipDBToolBar (Database ToolBar), to Add, Edit, Delete, etc...76,SwitchOCX.zipActiveX control.77,djmeter.zipA control (with VB Source) that is an implementation of a progress bar78,BtnGraphic.zipAn OCX someone made that allows you to easily create command buttons on forms, that act like an IE coolbar 79,HSoft11.zipThis is an OCX someone wrote that acts and looks almost identical to the IE3 toolbar80,MsgScroll.zipThis is a control (VB5 with source) that scrolls text81,mtymse.zipThis is a control (VB5 with source) that controls every aspect of the mouse82,progbar.zipUses a picture box to emulate a progress bar83,axcool.zipA toolbar control someone wrote84,axgrid.zipA Grid control someone wrote85,axpanel.zipA Panel, 3D Fram, Progress meter control someone wrote.86,browsef.zipA text box type control, that allows you to select a folder.87,browsfil.zipA text box type control, that allows you to select a file..88,colbrwse.zipA colour select control.89,colorsel.zipA drop down colour select control.90,FileOps.zipA VB5/6 control that allows you to easily copy, rename, put in trash, move files on your computer91,formmenu.zipA VB5/6 control that allows you to add menus to any place on a form you like92,hlitactx2.zipA VB5/6 control that shows you how to do code to see if the mouse is over a control on the screen. This one will highlight itself when the mouse id over it93,progbar2.zipA VB5/6 control that is a progress bar. Very good, allows lots of 94,spinedit.zipA spin control95,tilepuz.zipA control that simulates the tiled puzzle game96,urllabel2.zipA label control, but when you click on it, it starts up the default browser to a specified URL97,crdsrc.zipA whole deck of cards in a control, usfull for using in your own program98,ode.zipA control that spins numbers around99,TaskBar_v0_5.zipA control that creates a task bar, onto which you can add other controls100,vbalilsc.zipA pure VB control, that is a replacment for the image list control101,DBControl.zipA control that has many usefull database functions within it, like add field, add column, compact, restore, create primary key etc..102,OvalButton.zipA control that is an oval command button103,VBocx002.zipDas Scroll Wheel kann als Scrollbar oder einfach nur zur graphischen Versch?nerung verwendet werden 104,VBocx003o.zipDiese Leuchtdiode l?sst sich rund oder viereckig anzeigen, und erzeugt dadurch einen grafisch aufmachenderen Eindruck!!!105,VBocx004o.zipBlendet einen Text von wei? nach schwarz ein!106,VBocx005o.zipWie hier sichtbar, zeigt diese OCX-Datei nur Ziffern an. Der Counter oben besteht aus 2, die Uhrzeit unten aus 6 LED-Ziffern. Bei der Uhr werden desweiteren 2 Labels als Trennung verwendet.107,VBocx006o.zipEine Progressbar, der einfach anzusteuernd die Farbe und den Text ausgibt.108,vbocx008o.zipEinfach zu bedienen, sieht gut aus, und lockert das Bild der Benutzeroberfl?che etwas auf! 109,VBocx007o.zipEin einfach zu bedienendes OCX, um dateien von Servern hoch oder runterzuladen!110,VBocx001.zipVerschlüsseler werden meist zum Schutz von Daten angewandt.111,SuperPack.zipSuper Fill is an OCX designed to extend VB Fill Style property. You can create user patterns andprocess the scan-lines coordinate returned from the control. This is a shareware control by Fabio Guerrazzi.112,supDraw.zipAnother control by Fabio Guerrazzi. Shareware.113,LEDBULB.zipThis OCX will represent strings in the form of led bulbs. By H.M.IMTHIAZ RAFIQ.114,delaunay.zipPerforms constrained triangulation, curve level and 3d mesh.115,Wolf.zipAnother ocx make example.116,OCXRegCode.zipThis will register your ocx.Comes with the complete source. Made by Neil Cuttriss.117,DDCalc.zipThis OCX Control is simple enough not to describe its use.118,Flash3D.zipThis shows you how to use the macromedia flash/shockwave ocx. Also demonstrates 3D animation in a vector based environment with Flash119,EnhPrint.zipOCX which creates a EMF-metafile dc class, which can be used by the vb programmer to create, print and/or preview a metafile120,hoverbutton.zipThis is an enhancement of the standard command button.121,scbox10.zipThis ActiveX control lets you add a shadow that falls behind a control.122,getfile.zipControl consisting of a text box and a button. User clicks the button, dialog shown 123,ftpActiveX.zipThis control shows how to use the Inet control for downloading files, uploading files, listing directories, renaming files, deleting files, creating directories and more!!124,TextBoxControl.zipThis text box control allows you to limit input based on datatype or numeric range. Validation occurs within the lost focus event.125,systray.zipAdd icons to the system tray with ease. The caption and icon can be set. 126,asRuler.zipThis is a basic Custom Contrl, which displayes a ruler.127,playing_card.zipSimple to use playing card activeX control with additional container with auto arrange function. 128,XPlayer.zipThis control functions much like windows media player and supports the following file formats: Dat, Avi, Mp3, Wav, Mpg & Wma files.129,DBImage.zipThis one is component that allows you to populate image data from a ADO field to the component just like you would populate a text field with text data from a text field.130,ellipctl.zipMake an elliptical ActiveX picture control

1,451

社区成员

发帖
与我相关
我的任务
社区描述
VB 控件
社区管理员
  • 控件
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧