Search:

Type: Posts; User: MountainMan

Page 1 of 7 1 2 3 4

Search: Search took 0.17 seconds.

  1. Re: [VB6] ActiveX CommonControls (Replacement of the MS common controls)

    That works. Thanks!
  2. Re: [VB6] ActiveX CommonControls (Replacement of the MS common controls)

    Krool,

    I am having a problem with events MouseEnter and MouseLeave not ever firing in ListView. Atached i a simple example. When the mouse enters or leaves the form's Listview control, there...
  3. Re: [VB6] ActiveX CommonControls (Replacement of the MS common controls)

    That's what I have been doing. I was hoping that the subclassing was already built in to your code. Thanks.
  4. Re: [VB6] ActiveX CommonControls (Replacement of the MS common controls)

    Krool,

    I have a question about the ListView control. You have an event raised when the left mouse button is down along with the shift status. There is a similar event for a right click. I would...
  5. Re: CommonControls (Replacement of the MS common controls)

    I'll investigate further.

    However, on a related note, I am using your latest VBCCR17.OCX version and it does not include WindowedLabel.

    When I run the ComCtlsDemo and look in the form toolbox...
  6. Re: CommonControls (Replacement of the MS common controls)

    Another question: I was surprised a while back that you got LabelW to have hWnd as a property. I didn't think much more about it until this week. When I run the debugger in VB6, I don't get any...
  7. Re: CommonControls (Replacement of the MS common controls)

    That works. Thanks!
  8. Re: CommonControls (Replacement of the MS common controls)

    Krool,

    I am using the ListView control. It works great especially in virtual mode. However, I want to change the width of a column and I can't figure out how to do it. In the old ListView control...
  9. Replies
    45
    Views
    19,219

    Re: vbAccelerator site gone?

    Tanner,

    Fafalone says the ripped vbAccelerator site is 81 mb. When I downloaded the code from your GitHub site and it is only 66.3 mb. Did you compress more or leave some things out?
  10. Re: VBFlexGrid Control (Replacement of the MSFlexGrid control)

    I have a utility/user guide for Krool's vbCCR and vbFlexGrid controls. In addition, it provides a mechanism that you can develop with the .OCX versions (faster & more stable in the IDE) but compiles...
  11. Re: Krools Common Controls - Documentation and an Update/Compile Utility

    Version 3.4 of this utility is available in post #1. The only change is that it now handles VBFlexGrid through v1.7.
  12. Replies
    17
    Views
    3,144

    Re: GOSUB - Is It Realy That Bad?

    John,

    Below is a very simple example of a Gosub in VB6/VBA. Note that what the subroutine does in this example is trivial and I would never write code using a Gosub like this but it should be...
  13. Replies
    17
    Views
    3,144

    Re: GOSUB - Is It Realy That Bad?

    John, it is incredibly easy to use. I am going to post my latest code in a day or so so you should be able to see how easy it is.
  14. Replies
    17
    Views
    3,144

    Re: GOSUB - Is It Realy That Bad?

    Techgnome, I will post code for VB6 and VBA (it is almost identical code) in the next day or so.

    I disagree with not being able to pass variables. You just have to think about it a bit...
  15. Replies
    17
    Views
    3,144

    Re: GOSUB - Is It Realy That Bad?

    I am not sure I understand your concern about local scope. Since Gosub's have to be embedded within a Procedure they have access to any procedure-level vari9abes and the global variables just like...
  16. Replies
    17
    Views
    3,144

    Re: GOSUB - Is It Realy That Bad?

    Strange, you use the performance times to say that Gosub has no advantage outside of the IDE but then say the difference in performance time means you shouldn't use Gosub. I am not sure you can have...
  17. Replies
    17
    Views
    3,144

    Re: GOSUB - Is It Realy That Bad?

    PlausiblyDamp,

    A Gosub has to be in the same procedure as the calling code so it has access to all of the variables already in that procedure. So it doesn't cause any increase in Global variables....
  18. Re: Krools Common Controls - Documentation and an Update/Compile Utility

    Smileyoufu,

    The OCX2StdExe does not have any of Krool's controls in it so you can't specify it as the VB6 project.

    You should compile OCX2StdExe normally within the VB6 IDE. Then use the .EXE...
  19. Re: CommonControls (Replacement of the MS common controls)

    Krool,

    Your latest update to ComCtlsDemo will not run. It compiles but when run gives the following error:

    Run-time error '438'
    Object doesn't support this property or method

    Debug takes me...
  20. Re: [VB6] ActiveX VBFlexGrid (Replacement of the MSFlexGrid control)

    7edm,

    I have a utility https://www.vbforums.com/showthread.php?869477-Krools-Common-Controls-Documentation-and-an-Update-Compile-Utility that automates updating VBFlexGrid and VBCCRxx that easily...
  21. Re: Krools Common Controls - Documentation and an Update/Compile Utility

    smileyoufu,

    Can you please send me a copy of a program you have that shows the problems you describe in post #65 above? Thanks.
  22. Re: Krools Common Controls - Documentation and an Update/Compile Utility

    Version 3.3 is now uploaded in message #1. The biggest changes are 1) it now supports VBFLexGrid v1.6 and 2) it works better with VBCCR17.
  23. Re: Krools Common Controls - Documentation and an Update/Compile Utility

    An update is coming within the week to address your concerns.
  24. Replies
    20
    Views
    17,217

    Re: [VB6] - Multi-line standard tooltip.

    I didn't like this tooltips routine for several reasons including quick show/hide. I wrote a better class module that does unicode here.
  25. Replies
    12
    Views
    3,605

    Re: Public Variables in a Class Module

    wqweto,

    I think I disagree with you. I put a utility in the CodeBank the other day that packs variables, properties and UDT's into/out of Byte arrays. For Properties in Class modules/forms I had...
  26. Replies
    12
    Views
    3,605

    Re: Public Variables in a Class Module

    You don't have to go through a procedure to set the variable value or to retrieve the value. I hope the trick shows the disassembled code for a call to a simple Public variable and then the same...
  27. Replies
    12
    Views
    3,605

    Re: Public Variables in a Class Module

    Couttsj,

    Even if you have multiple instances of the class running, you have to refer to each Public variable with ClassName.VarName so there is no chance the variable names getting mixed up.
  28. Replies
    0
    Views
    983

    VB6 Bugs & Idiosyncrasies

    I have looked for a list of bugs & idiosyncrasies and I haven't found one, which is odd since the program has been out for 25 years. With all of the great posters here maybe we can generate such a...
  29. Replies
    12
    Views
    3,605

    Public Variables in a Class Module

    Let's say I have a Class module that has 1 variable, "AA As Long". Let's further assume I need to set the value f this variable. If I need to screen the inputs (for example, set it to 0 if the...
  30. Replies
    14
    Views
    50,121

    Re: [VB6] PipeRPC - RPC Over Named Pipes

    dilettante,

    I am thinking of converting your control for use in 64-bit VBA. Since it is almost impossible to write a control for 64-bit VBA in VB6/VBA, I thought of converting it to a class...
  31. Export/Import Variables, Properties & UDT's for VB6 & VBA

    This system enables you to bundle data from a program into a highly compact binary array that can be sent to other programs, saved to disk, re-used within a program, etc. It works in 32- and 64-bit...
  32. Re: Code in Form vs code in Module ? Why one more the other ?

    Trick,

    Did you look at the disassembled code for a Public procedure in a class module calling a Pulic function? Also, how about the same thing with a Friend procedure?

    I know class modules are...
  33. Re: [VB6] CSharedMemory - class for dynamic memory allocation in shared memory

    Since the offsets are to locations in 64-bit space it would seem that they would be LongLong's instead of Longs, especiallly in your procedures you add them to other LongLong's (or 64-bit LongPtr's...
  34. Re: [VB6] CSharedMemory - class for dynamic memory allocation in shared memory

    The Trick,

    I am trying to expand your code to cover 64-bit VBA and I wanted to verify something with you. You list a heap structure and a block structure near the top of your code. The offsets in...
  35. Replies
    93
    Views
    39,542

    Re: Planet Source Code Jumbo Resource CDs

    That's it. Thanks.
  36. Replies
    93
    Views
    39,542

    Re: Planet Source Code Jumbo Resource CDs

    lordnikon,

    Thanks for the link. I can't get any of the files to download. There are 2 ways to choose Download but each brings you to another screen that wants you to pay to upgrade to a fancier...
  37. Replies
    93
    Views
    39,542

    Re: Planet Source Code Jumbo Resource CDs

    Me too. Thanks.

    MountainMan
  38. Re: [VB6] CSharedMemory - class for dynamic memory allocation in shared memory

    The trick,

    Dumb question. I am working on making your code work in 64-bit VBA. Normally that involves changing handles and pointers to LongPtr and some other minor things. I noticed something in...
  39. Replies
    10
    Views
    3,549

    Re: Array Information

    Interesting. It's sort of like how a fixed-length string is not really a BSTR but instead jsut a string of bytes. It looks like the VB designers made a fixed array in a Type behave totally...
  40. Replies
    24
    Views
    7,083

    Re: Is there a LongLong type hidden in VB6?

    Elroy,

    Do you know which Windows version started supporting the signed 8-byte integer (LongLong) in a Variant? It sounds like VB is calling a Windows API that at least supports it now but I wonder...
Results 1 to 40 of 270
Page 1 of 7 1 2 3 4



Click Here to Expand Forum to Full Width