[VB6] Simple VNC Server using DXGI Desktop Duplication
https://github.com/wqweto/VbVncServer A single-class VNC server for embedding in LOB applications for built-in client support. Very much work in progress but first cut seems to work. Based on RFC 6143...
View ArticleThe fastest way to download web pages(GET,POST)
Research using multiple methods to download web pages and choose the fastest solution One of the test application examplesï¼ best way to get or save utf-8 content url faster?(https support)-VBForums...
View Articlevb6 Gif Ocx/Png OCX,Show Movie by DirectShow,WebBrowser,AniGif.OCX
Usercontrol.ctl about Webbrowser GIF(PNG ,JPG),Support Url,Localdisk File [gif ocx,Png ocx] activex control Code: Dim WithEvents M_Dom As MSHTML.HTMLDocument Public Event ImgClick() Private Url As...
View ArticleNeumorphism Design
In this case, it is, on the one hand, a class Module and, on the other, a Usercontrol to create a modern user interface called Neumorphism, which began to become fashionable as of 2020, although it is...
View Article[VB6] In memory convert to JPEG using WIC
This uses Windows Imaging Component to convert a bitmap (a 32-bit DIB) to a JPEG stream purely in memory. Paste the following code in a .bas module: Code: Option Explicit Private Declare Function...
View ArticleGet Rgb info by GdipBitmapLockBits,Read Bitmap into a 2D array
Read Bitmap into a 2D array test in form1.frm Code: Private Sub Form_Load() StartUpGDIPlus Dim Data() As RgbType Data = GetPicBmpData_RGB(App.Path & "\BMP1.bmp") MsgBox "One Pixel rgb=" &...
View ArticleTransparent Ocx By Multiple transparent windows form
Multiple transparent windows form a transparent program load a picture on form1.frm load a alpha png file to pictureBox1 but pictureBox1 is not transparent only form with WS_EX_LAYERED can real...
View ArticleTransparent Control By Multiple transparent windows form
Multiple transparent windows form a transparent program How do you switch between multiple windows without changing the focus of the form?If you have five windows with similar layers and click and...
View ArticleWS_EX_LAYERED on child controls(Transparent Activex Control)
Starting from Window 8, WS_EX_LAYERED can be used for child controls. Method: A manifest file is required, and at least Window 8 compatibility is specified (sub-layering only supports starting from...
View ArticleTransparent Activex Control,WS_EX_LAYERED on child controls
Project2:VB6 UserControl-Transparency Container-VBForums https://www.vbforums.com/showthread....ency-Container Project3: Transparent Control By Multiple transparent windows form-VBForums...
View ArticleVB6 UserControl-Transparency Container
'TransparencyOcx(Transparent container) 'Like PictureBox(NOT for Set Picture),Can Put Controls on it 'Don't Remove Area() Control change code in sub ShowAllChildArea: Code: Sub ShowAllChildArea() Dim...
View ArticleTransparent text Box by CreateWindowEx(edit)
How to Transparent text Box by CreateWindowEx(edit)? .BackgroundBrush = CreatePatternBrush(Form1.Image1.Picture.Handle) 'IT'S good CODE FROM HERE YOU GUYS MUST BE SMARTER THAN THIS...-VBForums...
View ArticleMsgbox With Picture
how to change use TRANSPARENT color? GetStockObject(HOLLOW_BRUSH)? SubMsgBox = CreatePatternBrush(Form1.Picture.Handle) form1.frm Code: Option Explicit Private Sub Form_Load() Me.Picture =...
View ArticleMySimpleProjects
6 small apps from my in progress program folder. In various stages of completion , but generally working. Attached Files My Projects.zip (95.9 KB)
View ArticleVB6 Transparent Textbox By API(WM_CTLCOLOREDIT)
How to use API to set text to transparent and accept cursor in vb Code: '在窗体Form代码中,把以下代码复制进去: 'IN FORM1 Private Sub Form_Load() makeTransparentTextbox Text1 'Text1 '是需要透明的文本框 End Sub 'BAS FILE: APIs...
View ArticleAccess the VBIDE library without add-ins
I recently had to document the methods of a vast class module. Means I wanted the names of all public functions listed in the module itself in a special procedure to give the opportunity to call them...
View ArticlewebBrowser Control Transparent
WPF ChromiumWebBrowser,Web Page Background Transparency HTML Code: <style> html, body { margin: 0px; height: 100%; width: 100%; overflow:...
View ArticleMaking Picturebox transparent,Set Alpha Channel Image
Making Picturebox transparent(support PNG alpha) https://forums.codeguru.com/showthre...ox-transparent Quote: Originally Posted by The trick https://www.vbforums.com/showthread....child-controls My...
View Articlevb6 Transparent Control by BitBlt,Transparent Picturebox
vb6 Transparent Control by BitBlt,Transparent Picturebox in form1 Code: TransparentWithHdc Picture1.hwnd, Picture1.Hdc in bas file: Code: Public Declare Function ReleaseCapture Lib "user32" () As Long...
View Article