↧
Wiki Page: For
↧
Wiki Page: Report-Multiple General - For
↧
↧
Wiki Page: Can't Open Report Entities for Editing
Applies To Product(s): gINT Logs, gINT Professional, gINT Professional Plus Version(s): N\A Environment: N\A Area: Report-Multiple General Subarea: N\A Original Author: Kathleen Holcomb, Bentley Technical Support Group When I double-click on some or on all of the entities on our report template nothing happens. Steps to Accomplish Entities are in a locked layer The entities you are unable to edit may be in a locked layer. To check this look for the button on the toolbar. Check each layer in the layer list. Layer 0 is locked: Layer 1 is unlocked: Click the button to lock or unlock that layer. Entities are in an internal or a drawing library block The entities may be in an internal or a drawing library block. Usually entities in a block are a color other than black. To edit entities in an internal or a drawing library block you must navigate to that block. Entities in private blocks are editable right on the Report Design page. Recovery, Blow Counts, Tests and Remarks and the other columns are in private blocks. Double-clicking these columns will open them for editing. To edit the entities in an internal or drawing library block hold down the Alt key and click once on the block header. This will open an internal block or the drawing library block for editing. Sometimes there are blocks nested within other blocks. In the internal block, Logo and Title, only the hole number and page number entities can be edited. The other entities are in the drawing library Title Portrait block: Alt+click on the drawing library Title Portrait block header to open it for editing. The logo and the company name and address entity are in the Company Information block: Alt+click on the Company Information block to open it for editing: See Also gINT Help topic Lock/Unlock Layer (command) Working With Blocks
↧
Wiki Page: Format a Number or Date on a Report
IN PROGRESS Applies To Product(s): gINT Logs, gINT Professional, gINT Professional Plus Version(s): N\A Environment: N\A Area: Report-Multiple General Subarea: N\A Original Author: Kathleen Holcomb, Bentley Technical Support Group How do I get a number to be rounded off or to format it to a certain number of decimal places on our report? How do I change the date formatting on our report? I've applied formatting to a field in INPUT but it didn't affect the report. How do I change the report? Steps to Accomplish Formatting a field in INPUT affects only how the number displays in INPUT. The number is still saved to the database in its original form. To change how a number or date appears on a report you will need to edit the report template. To Format a Number: In our example, we will format water content density with one decimal place on our log report template. Move to the Report Design tab. Select the Logs tab. Select the appropriate log template from the big yellow drop-down. Double-click on the Water Content column to open it for editing. This Text Expression display water content data as it is entered: WC DENSITY.Water_Content From the System area of the Data Tool, select Functions . From the Items area, select Format : Highlight the Text Expression and right-click the Paste button on the right: This will wrap the Format function around the text expression: Format( WC DENSITY.Water_Content ) Click just before the close paren. Add ,0.0 See Also XXXXXXX(Add links as needed for other relevant Be Communities content.)XXXXXXX
↧
Comment on gINT Rules Code Manual
Is it possible that if we extend the gINT v8i Ss 1 version 08.30.03.135 than it will compatible to the latest one ? got the customization facility of bentley.
↧
↧
Forum Post: Whole folder worth of projects...
Hi all, Here's the thing. A few years ago I did a trawl through all our gINT projects to pull out a list of all projects / Points that had National Grid co-ords. This was done on a text table report, key set to Project?. Upon output, I seem to remember that I could point gINT at a folder on my HD and either that was eonugh and gINT would load all the projects in the folder (by load I mean work through) or I selected all the projects in the folder. Someone asked a question about doing that type of thing on here recently and I explained about how I used to do it (bearing in mind I last did this a good few years ago). The person has emailed me asking if they need to populate the multi-project tab list with each individual file or was there another way. I thought they were doing something wrong, so I hunted out the old Text Table report and ran it, only to be presented with a project manager window to choose all the projects from. Obviously the Project Manager holds only a tiny proportion of our thousands on gINT projects. Needless to say, this is about as much use as a chocolate Tea Pot. By the time I've added every single project from the folder to the Project Manager I could have opened up most of the projects manually and exported the data bit at a time. My question is, is there a way of pre-populating the Project Manager (don't think so) or is there a way of using the "old" (for old, see the word "better") method of pointing gINT at a whole folder full of files and bypassing the project manager? Miles
↧
Forum Post: RE: Whole folder worth of projects...
HiMiles Perhaps use a multi prcocess script, but first you'd need to make a list of the full path-name of each project. The script could be created using excel formulas, with some effort.
↧
Forum Post: Override data marker expression - based on geology code
Hi, I'm having difficulty finding a way of plotting a simple SPT vs depth graph with SPTs from different geology codes plotting as different shapes. As a basic example I have tried using: Switch(_ Like( GEOL.GEOL_GEOL ,"*G") ,13,_ ) I'd hoped this would return data markers as star shapes for any spt value with a geology code which ends with G (for granular) and default for anything else. However it only seems to work if the SPT (ISPT.ISPT_TOP) value is the same as the top of the geology code in strata main... Anyone got any ideas? PHS.
↧
Forum Post: RE: Override data marker expression - based on geology code
Hi PHS, There is a how to guide called datamarker override expression that describes almost exactly what you are trying to do. This how to guide is based on a graph report and describes how to override the color of the datamarker but the expression would be the same for datamarker override with some minor modifications. I am attaching the guide. Let me know if this is what you were looking for.
↧
↧
Forum Post: RE: Override data marker expression - based on geology code
Hi David, Thanks for getting back to me. Yes I had seen this how to guide, but it didn't really explain the code used so modification for another purpose was difficult.. (and in fact I couldn't make it change the colours when I used it either..) Case( SqlRange(_ Depth ,_ [GEOL].[GEOL_GEOL],_ [GEOL].[GEOL_BASE],_ [GEOL].[Depth],_ 1_ ) ,_ = "A",255,_ = "B",16711935,_ = "C",49152,_ = "D",8421376,_ ) In this expression why are GEOL.GEOL_BASE and GEOL.Depth included if we're only checking what's in the GEOL_GEOL field? If this was a personal project I'd be happy to fiddle but I'm supposed to be working ! Can you explain this code in english so I can get a feel for what it does? Something like First find values of GEOL_GEOL or GEOL_BASE or GEOL depth, then see if they = A or B or C or D then return appropriate colours? Thanks for your help. PHS
↧
Forum Post: RE: Whole folder worth of projects...
Scripting is the way to go, though definitely not in Excel. Use VBScript or Powershell to automate the process of extracting the data from gINT projects in folders (it can be made to run in sub-folders as well), then output to a single CSV.
↧
Forum Post: RE: Override data marker expression - based on geology code
Sure I wil contact you privately to discuss and look at your specific files. Since both the database and the library are user defineable it would be best to look at your specific files. I will contact you shortly
↧
Forum Post: RE: Whole folder worth of projects...
Hi Tony - have you developed any Powershell scripts to do this? and would you be willing to share them or have any suggestions where to look online for info/tutorial? Thanks! --I have seen ways to access Access DB w/Powershell, but am more confused about hitting them all at once in a folder and the output to .csv part...
↧
↧
Forum Post: Running gINT Logs from USB Key
Has anyone had any luck with running gINT Logs from a USB key? I need to try and limit our users and I heard of another company doing this; I wanted to ask before I spent too much time exploring it... Thanks
↧
Forum Post: RE: Running gINT Logs from USB Key
Hello Jay Douglas, Not sure what you mean by a USB key? Can you explain? Thanks.
↧
Forum Post: RE: Running gINT Logs from USB Key
A thumb drive for instance; I want to have one for each of my gINT licenses - so that if a user needs to use the app - they need to retrieve the key from me, insert it into their computer and only then can they use the gINT application...
↧
Forum Post: RE: Running gINT Logs from USB Key
Let me contact you privately regarding this.
↧
↧
Comment on gINT Rules Code Manual
I can not down load the manual. Is there a problem with the link? Thanks
↧
Comment on gINT Rules Code Manual
Hello vvv, Sorry not to reply sooner. I was out on holiday. I'm sorry, but I'm not sure what you are asking. Are you asking if the information in the gINT Rules Manual is compatible with 08.30.03.135? Yes, it is.
↧
Comment on gINT Rules Code Manual
Hello Brian L. Please try it again. There was a problem with the link. It should be okay now. Thanks for letting us know!
↧