Page 3 of 3 FirstFirst 123
Results 81 to 119 of 119

Thread: VB6 Built-in types extension library (FTypes)

  1. #81

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    FTypes 1.9.75 (22-Jan-2018)

    - TypesFactory: use Parse method instead of Value property.

  2. #82

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    FTypes 1.9.8 (17-Feb-2018) NOTE: this version is not binary compatible with previous versions.

    - ListEx: add Reverse method;
    - StringEx: move Compare method to Equals property, Find method to IndexOf property.

  3. #83

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    FTypes project moved to BitBucket (https://bitbucket.org/hwoarang84/ftypes/src)

  4. #84
    Hyperactive Member
    Join Date
    Jan 2015
    Posts
    323

    Re: VB6 Built-in types extension library (FTypes)

    Last edited by loquat; Apr 3rd, 2018 at 11:31 PM.

  5. #85

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    Quote Originally Posted by loquat View Post
    G:\Shared is your local interpretation of reference. There are notes in project WIKI (https://bitbucket.org/hwoarang84/ftypes/wiki/Home) that there is a dependency from https://bitbucket.org/hwoarang84/shared/src. Enumerator.bas is located there and you need to use it from there - because code is adapted to FTypes.

  6. #86
    Hyperactive Member
    Join Date
    Jan 2015
    Posts
    323

    Re: VB6 Built-in types extension library (FTypes)

    StringEx.Compare is not now in dll
    but the demo use it in Function TestEx

  7. #87

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    Quote Originally Posted by loquat View Post
    StringEx.Compare is not now in dll
    but the demo use it in Function TestEx
    Yes. You're right. Thanks. Demo is bit obsolete - i will try to adjust it soon. As for Compare method - it is now Equals property. Done so because of unified approach to methods that should return class self instance (except Clone). Only properties can return other data types.

    In latest version you need to recompile dll without binary compatibility for first time.

  8. #88

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    FTypes project needs to be recompiled by developers who use it since changes in referenced Enumerator.bas module of Shared project (https://bitbucket.org/hwoarang84/sha...182ab345a57e0d).

  9. #89
    Addicted Member
    Join Date
    May 2016
    Location
    China
    Posts
    197

    Re: VB6 Built-in types extension library (FTypes)

    Test code error ViewString written frmString, Compare does not exist.
    QQ: 289778005

  10. #90

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    FTypes 1.9.81 (26-Apr-2018) NOTE: this version is not binary compatible with previous versions.

    - ListEx: add CompareMethod argument to IndexOf method;
    - Update documentation;
    - Fix test application code.

  11. #91

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    FTypes 1.9.82 (02-Aug-2018) NOTE: this version is not binary compatible with previous versions.

    - ListEx: implement binary search for IndexOf property (array should be sorted), extend Sorted property values range;
    - Update documentation.

  12. #92

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    FTypes 1.9.83 (26-Aug-2018)

    - ListEx: optimize Distinct method to perform sorting only if needed, reverse sorting flag in Reverse method;
    - Update documentation.

  13. #93

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    FTypes 1.9.84 (03-Sep-2018) NOTE: this version is not binary compatible with previous versions.

    - ListEx: add UsePartialMatchForStrings parameter to IndexOf property;
    - Update documentation.

  14. #94

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    FTypes 1.9.85 (22-Sep-2018) NOTE: this version is not binary compatible with previous versions.

    - TypesInterface: add Size property and modify all classes implementations appropriately;
    - Update documentation.

  15. #95

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    FTypes 1.9.86 (22-Dec-2018)

    - StringEx: add IsEmptyOrWhiteSpace property;
    - StringEx: optimize TrimL/TrimR methods performance;
    - Update documentation.

  16. #96

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    FTypes 1.9.87 (31-Dec-2018)

    - ArrayEx & ListEx: fix inability to store objects;
    - Update documentation.

  17. #97

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    FTypes 1.9.88 (20-Jan-2019)

    - ArrayEx: fix indexes conversion mistake that caused Item, ToList and ToString to work incorrectly with multidimensional arrays;
    - ListEx: fix wrong Sorted property update in case when StartIndex or EndIndex argument is used;
    - Update documentation.
    Last edited by hwoarang; Jan 20th, 2019 at 11:33 AM.

  18. #98

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    FTypes 1.9.89 (02-Jun-2019)

    - ListEx: fix inability to store inner arrays;
    - Update documentation.

  19. #99

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    FTypes 1.9.90 (04-Jul-2019)

    - ArrayEx: defaults Sorted flag when Item is set, fix incorrect AddRange behavior;
    - ListEx: inherit base functionality from ArrayEx class;
    - Update documentation.

  20. #100

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    FTypes 1.9.91 (07-Jul-2019)

    - ArrayEx & ListEx: fix excess item creation when Add method failed internally;
    - ArrayEx: fix wrong cut of last delimiter in ToString method;
    - ListEx: fix wrong Sorted property value after Distinct method successful call.
    Last edited by hwoarang; Jul 7th, 2019 at 06:18 AM.

  21. #101

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    FTypes 1.9.92 (08-Jul-2019)

    - Common.ToNumber: fix incorrect parse result in case of only one numeric char exist in string.

  22. #102

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    FTypes 1.9.93 (16-Jul-2019)

    - StringEx: add Contains property;
    - Update documentation.

  23. #103

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    FTypes 2.0.0 (8-Nov-2019) NOTE: this version is not binary compatible with previous versions.

    - Implement IFTypeConvertible interface;
    - DateTimeEx: fix incorrectly working Add* methods;
    - Update documentation.

  24. #104
    Hyperactive Member
    Join Date
    Jan 2015
    Posts
    323

    Re: VB6 Built-in types extension library (FTypes)

    https://bitbucket.org/hwoarang84/shared/
    this repo is out of access now

  25. #105

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    Quote Originally Posted by loquat View Post
    https://bitbucket.org/hwoarang84/shared/
    this repo is out of access now
    Hi. I've released an updated library 2.1.0. See all related info at https://bitbucket.org/hwoarang84/vbtypes/wiki/Home.

    Major updates:
    - Redesigned interfaces, refactored code
    - Name of library is now VBTypes
    - All shared modules are available as git submodules
    - Test project inside solution requires addin installation to run (see https://bitbucket.org/hwoarang84/vbt...i/Installation)
    Last edited by hwoarang; Apr 4th, 2021 at 09:25 AM.

  26. #106
    PowerPoster
    Join Date
    Jan 2020
    Posts
    3,742

    Re: VB6 Built-in types extension library (FTypes)

    can't find Ext\VBCore\Comparer.bas

  27. #107

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    Quote Originally Posted by xiaoyao View Post
    can't find Ext\VBCore\Comparer.bas
    Please, read documentation. Mentioned module as well as others is located in external project. You need to get it as git submodule command before opening solution

  28. #108

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    VBTypes 2.1.1 (12-Apr-2021)

    - DateTimeEx: fix properties behavior
    - Minor performance adjustments

  29. #109
    Frenzied Member
    Join Date
    Aug 2020
    Posts
    1,421

    Re: VB6 Built-in types extension library (FTypes)

    If StringEx can implement/simulate the functionality of JavaScript String object, it will be a very valuable thing.

  30. #110

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    VBTypes 2.1.2 (8-Aug-2021)

    - DateTimeEx: add HasDatePortion, HasTimePortion properties and AddQuarters method;
    - DateTimeEx: fix interval add methods;
    - Enhance tests

  31. #111
    Lively Member
    Join Date
    Oct 2014
    Posts
    93

    Re: VB6 Built-in types extension library (FTypes)

    I’m very sorry, but I can’t access the link below. There may be a firewall on the network. Could you please upload the file "master.zip" to the attachment of this post for the convenience of others

    Name:  Cannot resolve the cset.jpg
Views: 507
Size:  13.0 KB

    https://bitbucket.org/hwoarang84/vbtypes/get/master.zip

  32. #112

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    Quote Originally Posted by smileyoufu View Post
    I’m very sorry, but I can’t access the link below. There may be a firewall on the network. Could you please upload the file "master.zip" to the attachment of this post for the convenience of others

    Name:  Cannot resolve the cset.jpg
Views: 507
Size:  13.0 KB

    https://bitbucket.org/hwoarang84/vbtypes/get/master.zip
    Use this link https://bitbucket.org/hwoarang84/vbtypes/get/main.zip

  33. #113
    Frenzied Member
    Join Date
    Aug 2020
    Posts
    1,421

    Re: VB6 Built-in types extension library (FTypes)

    Great. It is recommended to add SortCallback feature to ListEx.Sort.

  34. #114
    Lively Member
    Join Date
    Oct 2014
    Posts
    93

    Re: VB6 Built-in types extension library (FTypes)

    thank you very much!
    It can be downloaded, but the bas file is missing. Is my method wrong?

    Attachment 182067

    Attachment 182068

    Attachment 182069

    A total of 8 bas files are missing

  35. #115

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    Quote Originally Posted by smileyoufu View Post
    thank you very much!
    It can be downloaded, but the bas file is missing. Is my method wrong?

    Attachment 182067

    Attachment 182068

    Attachment 182069

    A total of 8 bas files are missing
    Please, read documentation - https://bitbucket.org/hwoarang84/vbtypes/wiki/Home. You need to execute git submodule update --progress --init --force --remote -- "Ext/vbCore since this project depends on another repository where shared BAS files are located.
    So generally, you should not just download ZIP with main branch content, but use GIT to clone repository to your machine - git clone https://hwoarang84@bitbucket.org/hwoarang84/vbtypes.git and then download submodule(s) with Git command above.
    Last edited by hwoarang; Aug 12th, 2021 at 07:34 AM.

  36. #116
    Lively Member
    Join Date
    Oct 2014
    Posts
    93

    Re: VB6 Built-in types extension library (FTypes)

    Name:  无法访问.jpg
Views: 367
Size:  17.0 KB
    Thank you for replying to me in time
    I'm sorry to trouble you. You can’t access Google-related URLs in "Tianchao", and bitbucket.org cannot be accessed normally, but you can access GetHub. You can search for "FTypes" (https://github.com/hwoarang84/FTypes) on GetHub, but it is very Unfortunately, the visit has lost its effect. I am ready to abandon the study of this project because I cannot obtain effective resources.
    Thank you for your help!
    Last edited by smileyoufu; Aug 12th, 2021 at 08:06 AM.

  37. #117

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    Quote Originally Posted by smileyoufu View Post
    Name:  无法访问.jpg
Views: 367
Size:  17.0 KB
    Thank you for replying to me in time
    I'm sorry to trouble you. You can’t access Google-related URLs in "Tianchao", and bitbucket.org cannot be accessed normally, but you can access GetHub. You can search for "FTypes" (https://github.com/hwoarang84/FTypes) on GetHub, but it is very Unfortunately, the visit has lost its effect. I am ready to abandon the study of this project because I cannot obtain effective resources.
    Thank you for your help!
    What google related links? Project on GitHub is obsolete and I'm not going to support it there in anyway. You have all needed URLs in topic header and duplicates in last few messages. I cant influence on your local internet connection troubles. And I do not know your aims and what "study" means.

  38. #118

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    VBTypes 2.1.3 (8-Jan-2023)

    - ArrayEx: fix issue when Sorted flag was not reset on array termination;
    - Add Decrement and Increment methods to all numeric types.

  39. #119

    Thread Starter
    Lively Member
    Join Date
    Jul 2015
    Location
    Poland (moved away from Belarus)
    Posts
    110

    Re: VB6 Built-in types extension library (FTypes)

    VBTypes 2.1.4 (15-Jan-2023)

    - ListEx: add First and Last properties, add Concat method.

Page 3 of 3 FirstFirst 123

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width