Search:

Type: Posts; User: Eduardo-

Page 1 of 13 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    2
    Views
    163

    Re: Line Shape vs Line Draw

    I've read that several times but I can't understand what you mean.
    Maybe you can post an image or hopefully someone else understood it.
  2. Re: DoEvents does not resume from its last position - why?

    So when bProcessing is true and it receives another packet, it looses that packet because it is still processing another prior one...
    If you don't experience that issue is because it does not...
  3. Re: DoEvents does not resume from its last position - why?

    I don't think that putting a DoEvents in that async event is a good idea. Because as you have it now while it is processing a DataArrival it can come another DataArrival. And what happens? A mess.
  4. Replies
    8
    Views
    355

    Re: Lightweight Windowed Control

    Yes, I also think I remember seeing something.
  5. Replies
    8
    Views
    355

    Re: Lightweight Windowed Control

    I would copy how the VB show the handles.

    The Line control is selected by clicking near, and also moved by clicking near (not necessary to click exactly over it) and dragging.
    The Shape and all...
  6. Replies
    8
    Views
    355

    Re: Lightweight Windowed Control

    A Frame?



    If you use less than 10000 I don't think you'll have problems with anyone.

    About resources:...
  7. Replies
    5
    Views
    443

    Re: VB6- DateAdd?

    Dim Outputdate As String

    Outputdate = Format(DateAdd("d", -Val(Inputdays.Text), DateSerial(Right$(dateinput.Text, 4), Mid$(dateinput.Text, 3, 2), Left$(dateinput.Text, 2))), "dd.mm.yyyy")...
  8. Replies
    5
    Views
    443

    Re: VB6- DateAdd?

    Dim Outputdate As String
    Dim Inputdays As Long

    Inputdays = 289
    Outputdate = Format(DateAdd("d", -Inputdays, DateSerial(Right$(Dateinput.Text, 4), Mid$(Dateinput.Text, 3, 2),...
  9. Replies
    3
    Views
    187

    Re: Fill cells with color

    You can change the color of the text, background or lines in the cells.

    You can change a single cell, a range of cells, a full row or a column.

    This is how to change the background color of a...
  10. Re: Weird behaviour in a listbox with checkbox turned on

    Try with .ListIndex = -1
  11. Replies
    22
    Views
    600

    Re: create new property for text box

    OK, you are no longer motivated :bigyello:



    For pasting? No. (and the user can use the mouse to paste).
  12. Replies
    22
    Views
    600

    Re: create new property for text box

    Hello. I think that your code does not cover the validation for what is pasted into the textbox.

    I hope you are still motivated :D
  13. Re: How to save and read a stdPicture from PropertyBag

    That works. The problem is somewhere else.

    Test project attached.
  14. Re: How to save and read a stdPicture from PropertyBag

    There are plenty of examples in all the controls posted in the Codebank.

    But basically it is like any other property.
    Object data types like StdPicture need to be preceded by the keyword Set.
  15. Replies
    22
    Views
    600

    Re: create new property for text box

    Helping is getting difficult lately (at least here in this forum). people don't read messages.
  16. Replies
    4
    Views
    301

    Re: WIN 10 COntrol Panel

    Drill down? Usually you need to define exactly what you need to achieve.
  17. Replies
    22
    Views
    600

    Re: create new property for text box

    I don't think he wants to learn a lot about making controls. I think he is just looking for something easy and quick to get what he needs now (a TextBox control with a few more properties).
  18. Replies
    22
    Views
    600

    Re: create new property for text box

    To do that more easily, he can use this control interface replication and encapsulation helper.

    I already did it. Attached is the file.
    Now it is necessary to add the new functionality (new...
  19. Re: Getting VB6 help from ChatGPT (something for those of us with lots of easy questi

    I sometimes don't understand something in a news page that I'm reading (usually in Spanish, but maybe in English), and I ask Perplexity what I don't understand giving the URL of the page.
    That AI...
  20. Re: Having issues trying to set up a class

    ok.-
  21. Re: Having issues trying to set up a class

    Hello. Does the PredeclaredId = True vary in any way from having:


    Public ClassName As New ClassName

    in a bas module?
  22. Replies
    201
    Views
    37,522

    Re: NewTab: tab control for VB6

    Hello, I added a TDIGetFormHwndByTab function.
    Please update to the new version.
  23. Re: Replace Multiple lines of key code

    Text1.Text = Replace$(Text1.Text, vbCrLf, " (Enter key)" & vbCrLf)
  24. Replies
    2
    Views
    390

    Re: Stack Overflow

    In the error message press the Debug button. Then press Control+L

    There you'll be able to see which procedure is calling itself.
  25. Replies
    9
    Views
    655

    Re: Draw And Move Multiple Lines

    I didn't understand very much your explanation, but I can suggest to take a look to this project that provides VB6's Shape and Line controls replacements that have many more properties than the...
  26. Replies
    201
    Views
    37,522

    Re: NewTab: tab control for VB6

    Yes, of course.



    If you want to integrate this control into a standard exe project, then you don't need a project group but only the standard exe project and add all the files to it.
  27. Re: I have an urge to FULLY remake the oleexp.tlb by Fafalone

    Keep watching science fiction!



    Yes, sure... :wave:
  28. Replies
    9
    Views
    511

    Re: Flexgrid as calander

    Where is it?



    Calendar.



    What is that image from?
  29. Replies
    36
    Views
    1,761

    Re: Legality and future of VB6

    Programming languages 'do not enjoy copyright protection,' EU court says

    You can’t copyright the programming language



    I have no idea what you are talking about.
  30. Replies
    36
    Views
    1,761

    Re: Legality and future of VB6

    Not only that a programming language is not copyrightable, but the BASIC language is older than Microsoft.

    tB opens and is able to import documents written with VB6. Those documents are the...
  31. Replies
    36
    Views
    1,761

    Re: Legality and future of VB6

    Also the inventor of the microprocessor can reclaim money with that argument. And also Gutenberg, because without printing, would not be possible to have programs.
  32. Thread: Forms Flicker

    by Eduardo-
    Replies
    6
    Views
    606

    Re: Forms Flicker

    What's the advantage over using a PB?
  33. Replies
    16
    Views
    577

    Re: Removing COMCTL32.OCX from SP5?

    I use TexRep for making such global changes.
  34. Replies
    16
    Views
    577

    Re: Removing COMCTL32.OCX from SP5?

    MSCOMCTL.OCX is newer but... it is very similar and it has an important drawback: it does not support Windows themes aka Visual styles while COMCTL32.OCX does.

    Or... migrate to even newer Krool...
  35. Thread: Forms Flicker

    by Eduardo-
    Replies
    6
    Views
    606

    Re: Forms Flicker

    Here there is an example that sort of does what you say (basically).
  36. Replies
    16
    Views
    577

    Re: Removing COMCTL32.OCX from SP5?

    What SP6 did you install? Maybe you only installed the runtime files.

    I use exactly the same "Object={6B7E6392-850A-101B-AFC0-4210102A8DA7}#1.3#0; COMCTL32.OCX" and works with VB6/SP6 (proper SP6...
  37. Replies
    36
    Views
    1,761

    Re: Legality and future of VB6

    You said it: a very large company
  38. Replies
    36
    Views
    1,761

    Re: Legality and future of VB6

    I wonder how that works. Do the BSA have the possibility of entering and do a raid without having to have the permission of the company? Do they get orders from judges?

    Because if the company in...
  39. Replies
    36
    Views
    1,761

    Re: Legality and future of VB6

    If you are worried about if MS is going to go after you because you don't have a VB6 license, no. No, in this universe (and less in Argentina). But if you work in a big company, then maybe they don't...
  40. Re: Declarations and Procedures in Class Modules vs. Dependencies

    Sharing code here is usually not just "I'll post what I have, like it is", but it requires some work to make something shareable.
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width