Identify Blank / Repeat Fields
This script will identify any blank fields or fields in which the information repeats. The scrpt will rename the fields based on a prefix that the user gives. It also write a text file to the working directory of the fields which should be kept. The script will then create a new IDEA file which will list the fields that contain empty or repeating data and allows the user to decide if they wish to keep or delete the field. The user would then run the script a second time in order to delete the choosen fields.
- Read more about Identify Blank / Repeat Fields
- 2 comments
- Log in or register to post comments
Replace function
This function allows you to replace part of a string with another part. So if you have a string "ACBDEFGH" and you want to replace "DEF" with "MNO" using this function it would return "ABCMNOGH"
- Read more about Replace function
- Log in or register to post comments
Get a folder
This function will open a dialog that will display the folders on your computer which you can then choose one from. The second form only opens at the working directory level.
- Read more about Get a folder
- 4 comments
- Log in or register to post comments
Byte
Name: Byte
Type: Integer - Numbers with no fractional part
Range: 0 to 255
- Read more about Byte
- Log in or register to post comments
Integer
Name: Integer
Type: Integer
Range: -32,768 to 32767
- Read more about Integer
- Log in or register to post comments
Long
Name: Long
Type: Integer
Range: -2,147,483,648 to 2,147,483,647
- Read more about Long
- Log in or register to post comments
Single
Name: Single
Type: Floating point
Range: -3.4 × 1038 to 3.4 × 1038 approximately
Precision: 6 digits
- Read more about Single
- Log in or register to post comments
Double
Name: Double
Type: Floating Point
Rangle: -1.79 × 10308 to 1.79 × 10308 approximately
Precision: 14 digits
- Read more about Double
- Log in or register to post comments
Currency
Name: Currency
Type: Floating Point
Range: -9.22 × 1011 to 9.22 × 1011 approximately
Precision: 4 digits
- Read more about Currency
- Log in or register to post comments
Integers
Numbers with no fractional part.
- Read more about Integers
- Log in or register to post comments