This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RM | |
ÿ | |
A row mark (ASCII 255). Separates rows. | |
@FM | |
þ | |
A field mark (ASCII 254). Separates columns within a row. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function CS_EDIT_TABLE_SAMPLE_EVENTS(CtrlEntID,Event,Param1,Param2,Param3,Param4,Param5,Param6,Param7,Param8) | |
//To use replace CS_EDIT_TABLE_SAMPLE with your window's form name | |
* | |
* Blank Commuter Module | |
* | |
Declare Subroutine Msg, FsMsg, Set_Status, Set_Property | |
Declare Function Msg, Get_Property, Get_Status, Set_Property, Popup | |
Declare Function Repository, Send_Message, Send_Event, Unassigned, Utility, XLate | |
Declare Function ContextMenu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
#Simulate LinearHash Service disk access patterns | |
# | |
#These commands benchmark a disk's performance in such a way that it replicates the worst possible access pattern. | |
#No caching, small 1k blocks, one thread, and 1 disk queue depth, and in a random file access. | |
#Read test | |
diskspd.exe -c4000M -d30 -W10 -w0 -t1 -o1 -b1K -r -Sh -L e:\diskbench.dat | |
#Write test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Declare Subroutine Create_Symbolic, Set_Status, FsMsg | |
Declare Function Get_Status | |
table = "INVENTORY" | |
column = "NUMKEY" | |
Overwrite = 1 | |
formula = "@ans = {@ID}" : @fm | |
dType = "INTEGER" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function rti_toggle_Resizing_thread(bResizeFlag) | |
/* | |
** for ud 5.0.0.4 or better | |
** Turn reizing thread on or off | |
** Usage: | |
** rti_toggle_Resizing_thread(1) ; * enable resizing | |
** rti_toggle_Resizing_thread(0) ; * disable resizing | |
** rti_toggle_Resizing_thread(""); * toggle resizing | |
** | |
** 16-may-16 rjc Created |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function CS_OI_FORM_LIB(inMethod, Param1, Param2, Param3, Param4, outValue,outStat) | |
/* | |
Function: CS_OI_FORM_LIB | |
>CS_OI_FORM_LIB(inMethod, Param1, Param2, Param3, Param4, outValue,outStat) | |
General purpose library | |
Parameters: | |
inMethod - Varies depending On action. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Subroutine UTIL_CHECK_FIELDS_JAB(void) | |
declare function Set_FSError | |
$Insert Logical | |
*TABLE_NAME = '' ; KEY = '' | |
Stack = '' | |
*Change to the name of the table to ReadNext through |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function CS_Logger(instance, inMethod, Param1, Param2, Param3, Param4, outValue,outStat) | |
/* | |
Function: CS_Logger | |
>CS_Logger(instance, Param1, Param2, Param3, Param4, outValue,outStat) | |
Logging Utility. | |
Parameters: | |
instance - A previously created log object instance created With the 'Setup' method |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Open "SYSLISTS" To Table Else Debug | |
QUERY = 'SELECT SYSLISTS WITH @ID NE ""' | |
Keys = CS_RLIST_UTIL('getKeysBuffered', 'CLEAN SYSLISTS', QUERY, True$, True$) | |
KeysCount = DCOUNT(Keys, @FM) | |
DeleteCount = 0 | |
*Delete anything older than |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function test_select_to_var(cmd) | |
*https://www.revelation.com/o4wtrs/oecgi3.exe/O4W_RUN_FORM?INQID=WORKS_READ&KEY=DCD2FBF16711D5E5E125DDAD1&SUMMARY=0#/section/breadcrumb/UPDATETABLE/Display | |
/* | |
** Get the keys from a select | |
** 12/29/17 rjc Created | |
*/ | |
#pragma format_indent_Comments |