Search:

Type: Posts; User: xxdoc123

Page 1 of 13 1 2 3 4

Search: Search took 0.04 seconds.

  1. Re: Standard DLL Creation (and Usage) with VB6 (à la, The Trick)

    just add in
  2. Replies
    62
    Views
    18,598

    Re: C++ DLL to VB6

    how can fixed

    https://github.com/DanysysTeam/VBA-RapidOCR

    i download this zip about ocr for vba or vb

    but if run to this

    ...
  3. Re: Standard DLL Creation (and Usage) with VB6 (à la, The Trick)

    very good?

    This is a plugin write write by “Birds learn to fly” . The EXE intercepts the compilation parameters and passes them to the real link.exe for compilation

    VB6 compiles the final...
  4. Re: My CallStack Class is a mess

    It would be nice if there was a complete example.
  5. Re: My CallStack Class is a mess

    This one is really good. I have an automated operation software, and often I don't know when a bug will appear. When I debug, there are often no bugs. It sometimes appears in the middle of the night....
  6. Re: Control the Chrome browser with Chromdirver for web page automation

    You can use the latest version of Chrome, but you'll have to find a matching Chromedriver
  7. Re: used HttpSendRequestEx Upload data to the web page in sections

    Private Sub Command1_Click()
    On Error GoTo herr:
    'Upload_FTP_or_HTTP
    Dim a() As Byte, heads As String, boundaryL As String, jpgs As String

    Dim Fdata As String, Edata As...
  8. Re: used HttpSendRequestEx Upload data to the web page in sections

    Private Function HTTPUpload(lngServer As Long, strUrl As String, sHeader As String, refer As String, cookies As String, PostDate() As Byte, Optional ByVal SetUploadSpeed As UploadSpeedEnum =...
  9. used HttpSendRequestEx Upload data to the web page in sections

    // InternetOpen ---:InternetConnect----HttpOpenRequest----InternetSetOption -HttpAddRequestHeaders---HttpSendRequestEx




    Option Explicit
    Event HttpError(Status As String)
    Event...
  10. Re: How to click a button in a window with VB 6.0?

    Sorry, I'm having a hard time uploading the zip?you can test is very easy ??
  11. Replies
    1
    Views
    341

    Re: Automatic mouse click operation

    '????postmessage???’Coordinates = x Or y * &H10000
    Function MakeDWord(X As Integer, Y As Integer) As Long
    MakeDWord = (Y * &H10000) Or (X And &HFFFF&)
    End Function
    ...
  12. Replies
    1
    Views
    341

    Automatic mouse click operation

    Automatic mouse click operation




    Option Explicit


    Private Declare Function SystemParametersInfo _
    Lib "user32" _
  13. Re: How to click a button in a window with VB 6.0?

    ????postmessage???’Coordinates = x Or y * &H10000
    Function MakeDWord(X As Integer, Y As Integer) As Long
    MakeDWord = (Y * &H10000) Or (X And &HFFFF&)
    End Function
    ...
  14. Re: How to click a button in a window with VB 6.0?

    Option Explicit


    Private Declare Function SystemParametersInfo _
    Lib "user32" _
    Alias "SystemParametersInfoA" (ByVal uAction As Long, _
    ...
  15. Control the Chrome browser with Chromdirver for web page automation

    Control the Chrome browser with Chromdirver for web page automation


    There are a lot of similar codes, but very few pure VB ones. This is the code I used to write by referring to other people's...
  16. Replies
    22
    Views
    20,529

    Re: [VB6] UPrinter - Unicode Printer Class

    Private Sub cmdPrint_Click()

    Dim i As Long

    Dim prtItem As Printer

    Dim UPrinter As PrinterHelpX

    Dim Utf8Reader As Utf8Reader
  17. Replies
    22
    Views
    20,529

    Re: [VB6] UPrinter - Unicode Printer Class

    Public Sub PrintTxt(x As Long, y As Long, Txt As String, Optional ByVal PrintOrPriview As Boolean = True, Optional ByVal txtcolor As OLE_COLOR = vbBlack, Optional ByVal ???? As AlignmentConstants =...
  18. Replies
    22
    Views
    20,529

    Re: [VB6] UPrinter - Unicode Printer Class

    '--------------------------------------------------------------------------------
    ' ?? : PrinterHelpX
    '
    '
    ' ?? : [????win32?????,??]
    '
    ' ?? : ?XxDoC?...
  19. Re: Image Processing: Image similarity algorithms aHash, dHash, pHash

    Public Function GetaHash(picPathOrPictureBox As Variant, _
    Optional returnPic As StdPicture) As String

    Dim BMI As BITMAPINFO_NOPALETTE
    Dim biWidth ...
  20. Image Processing: Image similarity algorithms aHash, dHash, pHash

    There are about 4 types of hashing algorithms:

    Difference Hash: DHash(Difference Hash)
    Average Hash: AHash(Average Hash)
    Perceptual Hash: PHash (Perceptual Hash)
    Wavelet Hash: WHash (Wavelet...
  21. Re: Used Printwindow to capture Window and cropping

    Sometimes we can't take a screenshot with printwindow. Here's a trick to use setparent to set the target window as a sub-window, and then you can get the target image when you take a screenshot and...
  22. Re: Used Printwindow to capture Window and cropping

    Public Function CorpPicFormMem(HBmp As Long, cropLeft As Long, _
    cropTop As Long, _
    cropwidth As Long, _
    ...
  23. Used Printwindow to capture Window and cropping

    Option Explicit
    Public Type RECT
    Left As Long
    Top As Long
    Right As Long
    Bottom As Long
    End Type

    Public Type POINTAPI
    x As Long
  24. Replies
    13
    Views
    1,103

    Re: Create a PDF with many JPG in VB6

    you can used wqw cExec.cls OR dilettante shellpipe all can load console project and work very well .Thank you for their selfless dedication
  25. Re: How do I ask the user to enter only letter and numbers in text?

    My test didn't work
  26. Re: [RESOLVED] Tooltip for menu - when mouse is over in menu item?

    i found if i set form.BorderStyle=1 ,When I quickly move horizontally from the menu 'flie' button to the left leave the form the code MyForm.Infobar.Caption = "" 'dont work sometimes

    189469
    ...
  27. Replies
    11
    Views
    2,196

    Re: [VB6] How to embed console in a VB6 form

    Worked perfectly, thank you
  28. Replies
    11
    Views
    2,196

    Re: [VB6] How to embed console in a VB6 form

    len(“123好”)=4
    lstrlen(“123好”)=5
  29. Replies
    11
    Views
    2,196

    Re: [VB6] How to embed console in a VB6 form

    thanks



    Private Declare Function lstrlen Lib "kernel32" Alias "lstrlenA" (ByVal lpString As String) As Long

    Public Function WriteInput(sValue As String) As Boolean
    Dim baBuffer() ...
  30. Replies
    11
    Views
    2,196

    Re: [VB6] How to embed console in a VB6 form

    thanks,Your code is great

    I made a little modification as per my needs



    Private Declare Function WriteFile _
    Lib "kernel32" (ByVal hFile As Long, _
    ...
  31. Re: VB6 - Capture any Window, even in background, with WinRT / Windows.Graphics.Captu

    Very nice so I don't have to worry about memory anomalies. I just need to go and look at the screenshots at intervals


    Private Sub cCapture_RenderNextFrame(picFrame As IPicture)
    if setT=true...
  32. Re: VB6 - Capture any Window, even in background, with WinRT / Windows.Graphics.Captu

    I have an OCR recognition project to operate an old phone via scrcpy. I need to take a screenshot, call OCR to identify the information, and then remind me. I only need 1 minute or 10 minutes to take...
  33. Re: VB6 - Capture any Window, even in background, with WinRT / Windows.Graphics.Captu

    Very good, it looks like the images are captured continuously, can I set it to capture only 1 image one time


    Private Sub cCapture_RenderNextFrame(picFrame As IPicture)
    Set...
  34. Re: Problems getting a window capture with Bitblt and PrintWindow.

    DirectX 11 for VB6 1.0 Type Library by wqweto
  35. Re: Problems getting a window capture with Bitblt and PrintWindow.

    At present, screenshots are a good method, and for today's OCR recognition, screenshots are the first step
    OpenGL DirectX is a more advanced approach
  36. Re: Optical Character Recognition (OCR) With Tesseract3

    i found this links
    https://github.com/sml2h3/ddddocr

    https://club.excelhome.net/thread-1666823-1-1.html

    but is 64 dll can not refer by vb6

    the code is vba ,work well
  37. Replies
    483
    Views
    160,010

    Re: VB6 WebView2-Binding (Edge-Chromium)

    execute WV.ExecuteScript "document.querySelector('#app > div > section > aside > span').click();" sometimes the webpage is not executed successfully. So I will modify it to
    WV.ExecuteScript...
  38. Replies
    483
    Views
    160,010

    Re: VB6 WebView2-Binding (Edge-Chromium)

    thanks. jsprop This function is very convenient to use。now must change my code
  39. Replies
    483
    Views
    160,010

    Re: VB6 WebView2-Binding (Edge-Chromium)

    i test your demo WebView2Demo.zip


    and this shows, that the WV.jsProp("...") also works in Property-Let-Mode (at the left-hand-side)
    btn1Caption = "Click Me..." 'change the Caption-String
    ...
  40. Replies
    483
    Views
    160,010

    Re: VB6 WebView2-Binding (Edge-Chromium)

    i downlaod new current version: 6.0.15, last updated: 2023-07-23

    but i found can not run WV.jsProp. i change to 6.0.0.9 work ok.

    the other question


    If Right$(App.Path, 1) <> "\" Then...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width