• Do we have a database sample for AGS 4.1 for the gINT?

    Do we have a database sample for AGS 4.1 for the gINT?
  • GRAT table. gINT Code Execution Error: too few parameters. Expected:1

    gINT Rules Code execution error. Error Text = (&H800a0bf5) Too few parameters. Expected 1. Line: 936 Table: GRAT Data set: OCW02_REC_ECR_001_VC,1,1-2,C,03ca9beb-8b32-4c31-8897-c36acc4c5a04,1.75,001_VC_02_C Row 0, Column 'Reading' I'm not sure what…
  • 2nd Data Markers (Multiple Plots) do not show on plot

    Hello, I'm having trouble getting my 2nd Data Marker to show in the plot on the right. The first data (DCPT - triangles) shows but the second data (SPT - squares) does not. However, I can see that the program does recognize that there is a 2nd Data…
  • gra008 modification for Enterprise DB

    I'm unsuccessfully trying to modify gra008 to work with our Enterprise database. I think the main problem is with my sSql select & set code: sSql = "Select * " & _ "From POINT " & _ "Where sProjectIDfield = gINTRules.EnterpriseCurrPrjID" Set snPointIDs…
  • How to add field for depth below stratum?

    Hi, I am new to gINT, my goal is to plot a graph that shows Data vs depth below stratum top (e.g. the ground comprises 0.2m Topsoil + 0.8m Clay and I want to plot the data at 1m bgl as 0.8m instead). In excel, I was able to obtain such depth by…
  • GintPointSort using sigle digit number and sorts in wrong order

    Hi, we are using GintPointSort rule (GR016) for sorting boreholes with different names. Assigning sort number works properly. Problem is that gint rule assign number with single digit (without leading zero) which causes problem with sorting (1,10,11…
  • Generating N60 in rules

    I am looking for guidance on how best to generate an N60 value in the database itself. The main problem I have is I just can't code worth a darn, and to be honest, I don't completely (ie barely) understand gint rules. I currently use a modified version…
  • Re: Automatically Include Log Key (Key to Symbols) Report with Output

    John Sharkey asked: I’d like to automate the addition of a 2-page legend, describing our report symbology, to our final log report export to pdf. I’d rather not write a script to accomplish this since the guys would have to run the script each time they…
  • Re: User System Data?

    Welcome to using gINT! Functionality can be added to your Water Content table in the INPUT application using gINT Rules, and there are several examples of gINT Rules that populate calculated data into the project database here in the WIKI . However…
  • Re: "Type Mismatch" Error in Windows 7 (64-bit)

    The statement: Dim Boo_Check As Variant is the declaration. What Phil suggested is that you change this declaration to: Dim Boo_Check As Boolean That limits the valid settings for Boo_Check to True or False . (The Variant data type is defined…
  • Updating data using recordsets

    I'm trying to use recordsets to update my tables. The following seems to run ok, but doesn't update my data. I've been through the manual and wiki examples, and my code seems to be the same as published. Has anyone had this issue? My code is below, simply…
  • gINTRules.GridData.DataArray not returning all rows for 1-1 relationship child table

    Hello, I am trying to change the colour of rows of a table called (GOSA) based on a boolean field (GEOL_ISRK) from another table (GEOL). The GOSA table has a one to one relation with the GEOL table, and has Show All Parent Keys set to true. Thus…
  • Re: Google Earth and gINT....what can I actually do?

    Szang, Good point about not needing to combine gINT project files in order to create a combined kml file. I have only needed to create kml files from one gINT project at a time and they were not related to each other so there was no need to combine…
  • Re: User System Data?

    I agree with Pat that a gINT rule or the lab module will provide the requested functionality and are your first choice. As a third alternative; if it is not a requirement to have the calculated water content in its own field in the actual database;…
  • Import UNC data over-writing previously imported data

    When I import additional UNC data for Unconfined Compression Testing for a single boring, any previously entered or imported UC data in that same boring is deleted. For example, I had previously imported and entered data for boring B-1 @8 and B-1 …
  • gINT Rules write to another unrelated table

    On a number of occasions I have wanted to write a gint rule to perform calculations using data in a table and use the results to populate a field in another table. I have not been able to figure out how to write to another table that is not the direct…
  • Re: Reading fields from specific tables in gINT rules

    Steve, you may also want to refer to the videos linked to GRA005 in the WIKI here under gINT Rules Examples. While they are not specific to your needs, they do offer some general advice and examples of using the gINT Rules editor by Salvatore Caronna…
  • Re: Have gINT print pre-populated raw lab data forms with lab assignment

    Judy, there are a lot of ways to accomplish this. It might be as simple as a combination of SQL selection in the lab assignment report, and perhaps a new field to mark which samples belong to which "assignment", or as complex as a Lab Testing Assignment…
  • Rounding '5'

    The general rule for rounding '5' my company uses is to round to the closest even number. ie 99.5 = 100 or 98.5 = 98 2.405 = 2.40 or 1.395 = 1.40 It appears that gINT always rounds '5' up. The only formulas I have been able to find even…