Search:

Type: Posts; User: xxdoc123

Page 1 of 13 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    6
    Views
    284

    Re: VBA-RapidOCR how can i changed to vb6?

    Because I don't know the reason for the mistake. Perhaps there are significant differences between VBA and VB6. I hope to switch to running VB6?
  2. Replies
    6
    Views
    284

    VBA-RapidOCR how can i changed to vb6?

    how can fixed

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

    i download this zip about ocr for vba

    but if run to this

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

    just add in
  4. Replies
    62
    Views
    18,696

    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

    ...
  5. 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...
  6. Re: My CallStack Class is a mess

    It would be nice if there was a complete example.
  7. 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....
  8. 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
  9. 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...
  10. 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 =...
  11. used HttpSendRequestEx Upload data to the web page in sections

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




    Option Explicit
    Event HttpError(Status As String)
    Event...
  12. 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 ??
  13. Replies
    1
    Views
    363

    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
    ...
  14. Replies
    1
    Views
    363

    Automatic mouse click operation

    Automatic mouse click operation




    Option Explicit


    Private Declare Function SystemParametersInfo _
    Lib "user32" _
  15. 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
    ...
  16. 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, _
    ...
  17. 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...
  18. Replies
    22
    Views
    20,615

    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
  19. Replies
    22
    Views
    20,615

    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 =...
  20. Replies
    22
    Views
    20,615

    Re: [VB6] UPrinter - Unicode Printer Class

    '--------------------------------------------------------------------------------
    ' ?? : PrinterHelpX
    '
    '
    ' ?? : [????win32?????,??]
    '
    ' ?? : ?XxDoC?...
  21. 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 ...
  22. 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...
  23. 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...
  24. Re: Used Printwindow to capture Window and cropping

    Public Function CorpPicFormMem(HBmp As Long, cropLeft As Long, _
    cropTop As Long, _
    cropwidth As Long, _
    ...
  25. 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
  26. Replies
    13
    Views
    1,118

    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
  27. Re: How do I ask the user to enter only letter and numbers in text?

    My test didn't work
  28. 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
    ...
  29. Replies
    11
    Views
    2,201

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

    Worked perfectly, thank you
  30. Replies
    11
    Views
    2,201

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

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

    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() ...
  32. Replies
    11
    Views
    2,201

    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, _
    ...
  33. 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...
  34. 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...
  35. 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...
  36. Re: Problems getting a window capture with Bitblt and PrintWindow.

    DirectX 11 for VB6 1.0 Type Library by wqweto
  37. 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
  38. 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
  39. Replies
    483
    Views
    160,542

    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...
  40. Replies
    483
    Views
    160,542

    Re: VB6 WebView2-Binding (Edge-Chromium)

    thanks. jsprop This function is very convenient to use。now must change my code
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width