I have done a "Merge by Value" to group all my records with the same value (store number). However, how do I get a count of how many records were grouped into...
... Use a formula field with a value of 1, and add that field in the Attribute Settings dialog box. Peter ... Peter H. Van Demark Director of GIS Products and...
I apologize if this is the second email on this subject, but I don't think my first one went through. I am curious if anyone has some DK that illustrates how...
Does anyone have a good example of DK that illustrates how scroll works in the dbox function. My dialog box is not showing any of the variables from a view...
I am using the FindString() function. The Help Example: result = FindStrings({"alpha", "zipcode", "zip"}, { {"<z", ">a"}, {"=gamma", "<code", "=AlpHa"} }, ) //...
Hi everybody: I am a new TransCAD's user and I have heard thar TransCAD and Maptitude use similar GISDK languages, even the same. Well, I have problems with...
I'm using the function CreateEditorByQuery whith an easy query whit GROUP BY clause In the Maptitude Help there is an clear example about this function whit ...
Hello all, I get my selection just fine when I am doing a "Select by Location" function (pt in polygon). For example, I get all the pts that are within the...
Most of the work I do ends up being a database for someone else to use outside of Maptitude. So I always end up adding a field to the points table and doing...
This doesn't work either, because that point might exist in several polygons. __________________________________________________ Do You Yahoo!? Tired of spam?...
if you don't mind using the DK then the following psuedo-code should be pretty straight-forward to implement...the result will be a comma seperated text file...
Does anyone have experience with creating batch maps for different geographic locations based on a single template? I need to create maps for thousands of...
Hi Group: In Maptitude 4.7 there is a tool Marketing-Utilities-District Reports. This does not produce maps but allows you to batch print different area ...
Chandler, Your goal is to correlate information in an area layer for each point, so working with the point layer is the way to go. This task is made simple in...
Ned, It sounds like your first step is to define clearly the limits of each city If you have got a polygon layer with city limits, then you will be able to...
Armando: I appreciate the information, but my goal is not data aggregation. Rather, it is to automate the process of creating and saving thousands of...
If the boundaries of your cities are welll defined, then all you need to do is a Selection on those cities you want to print, and then use Disctric report...
To our Maptitude Users: Caliper is pleased to announce that the DVD Version of Maptitude 4.8 is now shipping. Maptitude 4.8 has many new features and data....
Ned, Try this out in the DK immediate execution box. I recommend trying it with a small selection set first, to test it out. It requires that you have a ...
Estimada Ariana: Yo uso TransCAD y estoy scrito en el grupo de Maptitude. Solo se que estos programas son similares en el código, por qué no tratas con lo...
Hi, Does someone knows if is possible to recover a source code (rsc file) form a compiled gisdk files ( .dbd, .1, .2, .3..). I lost my .RSC and I need to make...
... There is no way to reverse compile a UI database (.dbd, .1, .2, .3..) back to a resource (.RSC) file. I hope that you can find some remnant of the source...
I have used two functions: GetMapLayers(, "Point") GetMapLayers(, "Active") I now have an array with 43 elements and another with 6. I want to now compare the...
Chandler, You can loop over one array and remove from it any elements that don't occur in the other one. {a, } = GetMapLayers(, "Point") {b, } = GetMapLayers(,...
Thanks. This work exactly how I needed it to do. Question, in your example you use: {a, } = GetMapLayers(, "Point") {b, } = GetMapLayers(, "Active") Setting...