List of Contributions

Ahmet Dabanli

Co-Founder,
Başarsoft

Contact Details

Co-Founder,
Başarsoft
Turkey

My Content

1 to 11 of 11 total
Posted By Ahmet Dabanli 08-07-2023 13:55
Found In Egroup: MapInfo Pro
\ view thread
Hi Caroline Hilton, You can try this for faster query in case you have min 0 to MAX range, let say MAX - MIN = 100 and you will split into 5 ranges, then SPLIT_RANGE = 100/ 5 = 20 select int(COLNAME\SPLIT_RANGE )*SPLIT_RANGE "Min1", (1+int(COLNAME\SPLIT_RANGE ))*SPLIT_RANGE "Max1" , Count(*) from TABLENAME ...
Posted By Ahmet Dabanli 08-07-2023 04:59
Found In Egroup: MapInfo Pro
\ view thread
Hi John Hollingsworth, I have found some definition and sizes as below: https://learn.microsoft.com/en-us/dotnet/api/system.drawing.printing.paperkind?view=windowsdesktop-7.0 and here there are some .Net codes to get avilable sizes https://learn.microsoft.com/en-us/dotnet/api/system.drawing.pr ...
Posted By Ahmet Dabanli 07-26-2023 10:20
Found In Egroup: MapInfo Pro
\ view thread
Hi All, I have fixed a bug for Touches and overlaps, added icons, included the MapBasic Source . Best Regards ------------------------------ Ahmet Dabanli Başarsoft Balgat, Cankaya ------------------------------
Posted By Ahmet Dabanli 07-26-2023 10:20
Found In Library: Mapinfo Pro
Posted By Ahmet Dabanli 07-24-2023 05:20
Found In Library: Mapinfo Pro
Posted By Ahmet Dabanli 07-24-2023 05:20
Found In Egroup: MapInfo Pro
\ view thread
Hi All, It seems there is a problem with the Mbx file, I'am attaching it again. Hope this will work ------------------------------ Ahmet Dabanli Başarsoft Balgat, Cankaya ------------------------------
Posted By Ahmet Dabanli 07-23-2023 22:55
Found In Egroup: MapInfo Pro
\ view thread
Hi All, Happy #MapInfoMonday / #MapBasicMonday! Today I want to introduce you to a MapBasic application developed based on a question asked in MapInfo Community. The question is asked by Michele Burgalossi , to select objects that intersect with another object but not overlap i.e., only share (touch) ...
Posted By Ahmet Dabanli 07-23-2023 22:54
Found In Library: Mapinfo Pro
Posted By Ahmet Dabanli 07-17-2023 07:38
Found In Egroup: MapInfo Pro
\ view thread
Happy #MapInfoMonday! Today I want to explain you how we can convert and store Text information in CAD files into MapInfo Database. First of all we need to convert a cad file from Universal Translator in MapInfo to convert DWG/DXF/DGN files or Import from a DXF file. Thanks to Peter Møller for this ...
Posted By Ahmet Dabanli 07-08-2023 04:00
Found In Egroup: MapInfo Pro
\ view thread
Happy #MapInfoMonday! In this MapInfo Monday post, I want to show you, how to create parcels, pedestrian sidewalks, road pavement areas due to a new dam construction, a town needed to move to a new area. In this post, we will create an easy and fast planning draft, starting from road centerlines. ...
Posted By Ahmet Dabanli 07-05-2023 05:08
Found In Egroup: MapInfo Pro
\ view thread
Hi Michelle, one easy option can be calculating the area of ovelap and selecing non zeroes, This is mapbasic code Add Column "YELLOWLAYER" (SumOfIntersectingArea Float) From BLUELAYER Set To proportion sum(Area(obj, "sq m")) Where intersects Dynamic You can do it from Table - Update Column ...