Search found 196 matches
- Jun 29, 2020 3:44
- Forum: Beginners
- Topic: Simultaneous use of "The Ultimate FB HashMap" and "FB GUI library for Windows"
- Replies: 6
- Views: 754
Re: Simultaneous use of "The Ultimate FB HashMap" and "FB GUI library for Windows"
Dear TJF; Thanks for your advice. Unfortunately, I couldn't compile because it became "Illegal inside a compound statement or scoped block". Error details: H:\Tool\FbEdit\Projects\AssociativeArray\HashMap\TheAdventureOfTheDancingMen\hashmap.bi(10) error 96: Illegal inside a compound statem...
- Jun 28, 2020 12:52
- Forum: Beginners
- Topic: Simultaneous use of "The Ultimate FB HashMap" and "FB GUI library for Windows"
- Replies: 6
- Views: 754
Simultaneous use of "The Ultimate FB HashMap" and "FB GUI library for Windows"
Hi ! I'm trying to create a program by including "the Ultimate FB HashMap(hashmap.bi)" and "FBGUI library for Windows (window9.bi)". I can't compile this program with the following error. My development environment is Windows 10 and FreeBASIC 32bits 1.07.1. Do I have to give up u...
- Jun 27, 2020 5:44
- Forum: Tips and Tricks
- Topic: Dictionary Class
- Replies: 107
- Views: 15516
Re: Dictionary Class
Dear paul doe; I can't find the Dictionary class you registered on GitHub. Please upload it again. I have a question. fb-dict-example-2.bas,fb-dict-example-4.bas,fb-dict-example-5.bas are compileable with FreeBASIC 1.05. However, they cannot be compiled with 1.07 due to the following errors. I would...
- Jun 26, 2020 1:54
- Forum: General
- Topic: (Solved) How to sort datasheet (x-dim array) by a few columns (at once in 1 loop) ?
- Replies: 40
- Views: 3012
Re: (Solved) How to sort datasheet (x-dim array) by a few columns (at once in 1 loop) ?
Dear Lost Zergling
Thanks for your information.
I expect not only column operations, but the ability to sort rows together based on a specified column.
I look forward to the development of your tool.
Thanks for your information.
I expect not only column operations, but the ability to sort rows together based on a specified column.
I look forward to the development of your tool.
- Jun 25, 2020 12:22
- Forum: Tips and Tricks
- Topic: The Ultimate FB HashMap
- Replies: 10
- Views: 2716
Re: The Ultimate FB HashMap
Hi ! I learned a multi-dimensional array sorting program from badidea san and fxm san. https://www.freebasic.net/forum/viewtopic.php?f=3&t=27993&start=30#p266914 I modified my code by incorporating a multi-dimensional array sort program. P.S. Although I increased the number of orders list to...
- Jun 25, 2020 9:37
- Forum: General
- Topic: (Solved) How to sort datasheet (x-dim array) by a few columns (at once in 1 loop) ?
- Replies: 40
- Views: 3012
Re: (Solved) How to sort datasheet (x-dim array) by a few columns (at once in 1 loop) ?
Dear fxm;
Thanks for your quick reply.
The program displayed the results I expected without crashing.
Thank you very much.
Thanks for your quick reply.
The program displayed the results I expected without crashing.
Thank you very much.
- Jun 25, 2020 1:50
- Forum: General
- Topic: (Solved) How to sort datasheet (x-dim array) by a few columns (at once in 1 loop) ?
- Replies: 40
- Views: 3012
Re: (Solved) How to sort datasheet (x-dim array) by a few columns (at once in 1 loop) ?
Hi ! I am looking for a multi-dimensional array sort and found this thread. I would like to make the following modifications to badidea's code. https://www.freebasic.net/forum/viewtopic.php?f=3&t=27993&start=30#p266914 1. Targets a simple multi-dimensional string array. 2. Make the array 1 o...
- Jun 21, 2020 11:28
- Forum: Tips and Tricks
- Topic: The Ultimate FB HashMap
- Replies: 10
- Views: 2716
Re: The Ultimate FB HashMap
Hi ! I tried to make a program that aggregates the order amount by comparing 15,000 item masters and 10,000 order list. Since I used the associative array, matching was completed in an instant (less than 1 second)! Thanks for "The Ultimate FB HashMap". (I don't know how to sort a multi-dim...
- Jun 21, 2020 9:33
- Forum: Tips and Tricks
- Topic: PHP-like associative arrays
- Replies: 45
- Views: 9164
Re: PHP-like associative arrays
Dear ShawnLG; Thanks for your correction. I checked with the following program. There still seems to be collisions. #Include "assocarray.bi" DefineAssocArrayType( Integer ) Dim Shared As IntegerArray ArrayItemID Dim Shared ItemID As String Dim Shared Counter As Integer Dim Shared CounterRe...
- Jun 20, 2020 11:35
- Forum: Tips and Tricks
- Topic: PHP-like associative arrays
- Replies: 45
- Views: 9164
Re: PHP-like associative arrays
Dear Zamaster;
I am grateful to have received a direct reply from Zamaster san, whose name I know in the "Community Code Library".
On my site ,I would like to introduce "The Ultimate FB HashMap" with Japanese comments to Japanese people.
I would appreciate your approval.
I am grateful to have received a direct reply from Zamaster san, whose name I know in the "Community Code Library".
On my site ,I would like to introduce "The Ultimate FB HashMap" with Japanese comments to Japanese people.
I would appreciate your approval.
- Jun 20, 2020 1:44
- Forum: Tips and Tricks
- Topic: PHP-like associative arrays
- Replies: 45
- Views: 9164
Re: PHP-like associative arrays
Dear All !
Thank you for your continuas support.
In srvaldez's Zamaster's "Ultimate FB HashMap" sample program, I was able to confirm that the index of 676 strings was set up flawlessly.
Thank you so much!
Thank you for your continuas support.
In srvaldez's Zamaster's "Ultimate FB HashMap" sample program, I was able to confirm that the index of 676 strings was set up flawlessly.
Thank you so much!
- Jun 19, 2020 8:19
- Forum: Tips and Tricks
- Topic: PHP-like associative arrays
- Replies: 45
- Views: 9164
Re: PHP-like associative arrays
Hi ! I have run into another trouble. Please give me your wisdom of God(FreeBASIC) for my foolishness. I'm trying to set unique numbers to 676 strings from AAA to AZZ (ItemMasterA.txt). However, there is interference between the 139th AFI and the AIT which should be the 228th. ItemMasterA.txt AAA AA...
- Jun 19, 2020 1:10
- Forum: Tips and Tricks
- Topic: PHP-like associative arrays
- Replies: 45
- Views: 9164
Re: PHP-like associative arrays
Dear srvaldez; Thanks for your patience with my childish misconceptions. >do: CharacterString = "bla" and then array.Item(CharacterString) = 123 it's equivalent to array.Item("bla") = 123 I tried it before and had a feeling it wouldn't work, but now it works correctly. I'm sorry ...
- Jun 18, 2020 15:27
- Forum: Tips and Tricks
- Topic: PHP-like associative arrays
- Replies: 45
- Views: 9164
Re: PHP-like associative arrays
Dear All! Thank you all for your advice. I'm sorry to confuse you. I'm sorry my expression is so poorly worded that it doesn't convey my intentions. What I expect is the following image. #include "assocarray.bi" DefineAssocArrayType( Integer ) Dim As IntegerArray array Dim CharacterString ...
- Jun 18, 2020 7:52
- Forum: Tips and Tricks
- Topic: PHP-like associative arrays
- Replies: 45
- Views: 9164
Re: PHP-like associative arrays
Dear jdebord Thanks for your advice. I'm sorry my expression is so poorly worded that it doesn't convey my intentions. I would like to give the following (****) as a variable. array.Item("bla") = array.Item(123) = s.item("color") = s.item("fruit") = s.item(1) = Thank yo...