Search:

Type: Posts; User: yokesee

Page 1 of 13 1 2 3 4

Search: Search took 0.03 seconds.

  1. Re: Form & Controls Resizer (including Font.Size)

    sorry I forgot to say.
    They are third party controls.
    They are not optimized and when the size is changed they update
    interface and if you do it too many times it freezes.
    Sorry I can't put...
  2. Re: Form & Controls Resizer (including Font.Size)

    It works very well.

    I have some controls that freeze a lot when I resize.
    How could the solution be, just change the size when you release the mouse click.
    Is it possible to do this.
    All the...
  3. Re: Form & Controls Resizer (including Font.Size)

    Very good work.
    I have some problems when I maximize the window and restore it again it looks bad.
    All the best
  4. Re: Control the Chrome browser with Chromdirver for web page automation

    you can share the direct link to Chrome 68.0.3440.75 .zip
  5. Replies
    6
    Views
    370

    Re: VB6+Win32 - Menus

    try this https://leandroascierto.com/blog/tag/menu-2/
  6. Replies
    11
    Views
    1,392

    Re: A VB6 FRM to PY Converter

    good job Elroy
  7. Re: send events to multiple objects without blocking

    an idea that comes to mind.
    And put a delay in the EventRecive function.
    When executed activate a timer with 100ms and then deactivate the timer and then execute the code.
    That would break it out...
  8. send events to multiple objects without blocking

    Hello everyone.
    I have a class to manage the objects to send an event to.


    Option Explicit
    Private Declare Function vbaObjSetAddref Lib "MSVBVM60.DLL" Alias "__vbaObjSetAddref" (ByRef dstObject...
  9. Replies
    11
    Views
    1,392

    Re: A VB6 FRM to PY Converter

    good joob Elroy.
    thanks for continuing to improve.
  10. Replies
    11
    Views
    1,392

    Re: A VB6 FRM to PY Converter

    On this computer I only have personal projects that cannot be displayed.
    They looked good and very similar.
    I found several errors.
    1) python detects accents as errors.
    ...
  11. Replies
    11
    Views
    1,392

    Re: A VB6 FRM to PY Converter

    Very good job Elroy.
    The first tests I did work perfectly.
    Tomorrow I will continue doing more tests.
    you are brilliant
  12. Replies
    22
    Views
    1,677

    Re: Python discussion

    oh, I'm sorry.
    She saw great progress.
    I could show the code you made, and not forget it.
    regards
  13. Re: Can't Remove Strange Icon from Form

    It is possible that it is an image on the form.
    Do the following: see the picture property of the form and click and then press delete
  14. Replies
    22
    Views
    1,677

    Re: Python discussion

    good progress Elroy
  15. Re: InputBox with full unicode support v. 2.5 and v. 2.55

    Good job hackervlad
    great contribution
  16. Replies
    2
    Views
    296

    Re: SPLIT string in array

    Dim VALORE() As String
    Dim i As Integer
    VALORE = Split("128-857-89741-75657", "-")
    For i = 0 To UBound(VALORE)
    Debug.Print VALORE(i)
    Next
  17. Replies
    34
    Views
    2,435

    Re: InputBox with full unicode support.

    Good job HackerVlad put this in CodeBank
  18. Replies
    194
    Views
    34,723

    Re: NewTab: tab control for VB6

    Good job Eduardo you are great
    many thanks
  19. Replies
    22
    Views
    1,677

    Re: Python discussion

    sounds great
  20. Replies
    194
    Views
    34,723

    Re: NewTab: tab control for VB6

    ok Thank
  21. Replies
    194
    Views
    34,723

    Re: NewTab: tab control for VB6

    Hello Eduardo, very good control.
    How can you change the width of a tab.
    I want to make the collapse effect.

    Something else could be done like in Chrome tab group would be great
  22. Replies
    19
    Views
    1,447

    Re: VB6 form UI to Python

    try this.
    https://github.com/cdhigh/Vb6Tkinter
  23. Re: Getting the ball rolling. Which VB6 projects are you working on?

    Very good widgets.
    I would change the background a little, they are all very similar and I think it is difficult to distinguish one from the other.
  24. Replies
    5
    Views
    648

    Re: Questions about Return Cursor Error

    It's not that cursor, it's sql cursor
  25. Replies
    4
    Views
    8,844

    Re: VB6 GitHub Linebreak Repair

    good job Faf
  26. Re: Getting the ball rolling. Which VB6 projects are you working on?

    beautiful profile Yerever
    Happy Holidays to all
  27. Re: conver Visual C++ 6.0 improve Brightness code to vb6

    It works well for me
    189532
  28. Re: conver Visual C++ 6.0 improve Brightness code to vb6

    try this, it's ugly and fast
    add two form


    Option Explicit
    Private Declare Function SetWindowPos Lib "user32" (ByVal hWnd As Long, ByVal hWndInsertAfter As Long, ByVal X As Long, ByVal Y As...
  29. Re: conver Visual C++ 6.0 improve Brightness code to vb6

    Put a transparent window behind, without borders and black backcolor
  30. Re: conver Visual C++ 6.0 improve Brightness code to vb6

    I have seen that effect in some program, I don't remember which one.
    This is more for personal use and making life easier.
    Many hours on the PC programming, watching videos, etc. many times at...
  31. Re: conver Visual C++ 6.0 improve Brightness code to vb6

    Thank you very much for the code.
    It is possible to make the darkest
  32. Re: conver Visual C++ 6.0 improve Brightness code to vb6

    This code darkens but not as much as it would like.


    Option Explicit

    Private Ramp1(0 To 255, 0 To 2) As Integer
    Private Ramp2(0 To 255, 0 To 2) As Integer
    Private Declare Function...
  33. Re: conver Visual C++ 6.0 improve Brightness code to vb6

    I already tried those SetMonitorBrightness examples.
    But the problem I have is that I use a TV monitor and the brightness cannot be changed either through wmi
    that's why I use the GammaRamp option....
  34. Re: conver Visual C++ 6.0 improve Brightness code to vb6

    Yes, compiler works perfectly, but I wish it could be darker
  35. Re: conver Visual C++ 6.0 improve Brightness code to vb6

    This is not mine.
    I can't find my modification but it looks similar
    the screen instead of darkening becomes strange


    Option Explicit
    Private Declare Function CreateWindowEx Lib "user32.dll"...
  36. conver Visual C++ 6.0 improve Brightness code to vb6

    Hi all.
    I have the following code in Visual C++ 6.0.
    to dim the screen.
    I know there is wmi but I use a TV that doesn't work.
    This code works fine but I would like to be able to make the screen...
  37. Re: How to encapsule in a efficient way both VBA Scripting and IShellItem handling.

    work fine
    lost this const


    Public Const LVM_GETIMAGELIST = (LVM_FIRST + 2)
    Public Const LVM_SETIMAGELIST = (LVM_FIRST + 3)

    Public Const LVSIL_NORMAL = 0
    Public Const LVSIL_SMALL = 1
    Public...
  38. Re: How to encapsule in a efficient way both VBA Scripting and IShellItem handling.

    no in zip onli folder temp and no form file
  39. Replies
    194
    Views
    34,723

    Re: NewTab: tab control for VB6

    Everything works perfectly except post #107.
    Add that, loading the form, it does not lose focus.
  40. Re: How to encapsule in a efficient way both VBA Scripting and IShellItem handling.

    error Form1 not in the folder is in your ..\VB6_Kod\VB6 Kod\BrowseForFolder\Form1.frm
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width