Commit for development environment setup
This commit is contained in:
BIN
PROMS/Documents/BorderIntersections.xlsx
Normal file
BIN
PROMS/Documents/BorderIntersections.xlsx
Normal file
Binary file not shown.
Binary file not shown.
BIN
PROMS/Documents/CancelSecTitles.xlsx
Normal file
BIN
PROMS/Documents/CancelSecTitles.xlsx
Normal file
Binary file not shown.
BIN
PROMS/Documents/Checkoff.xlsx
Normal file
BIN
PROMS/Documents/Checkoff.xlsx
Normal file
Binary file not shown.
BIN
PROMS/Documents/Checkoffs.xlsx
Normal file
BIN
PROMS/Documents/Checkoffs.xlsx
Normal file
Binary file not shown.
67
PROMS/Documents/Current Logic.TXT
Normal file
67
PROMS/Documents/Current Logic.TXT
Normal file
@@ -0,0 +1,67 @@
|
||||
Index="0" TransType="0" TransFormat="{Proc. Number}, {Proc. Title}, Step {First Step}"
|
||||
TransMenu="{Proc. Number}, {Proc. Title}, Step {First Step}" />
|
||||
|
||||
UI:
|
||||
Procedure List
|
||||
Step Text Box (can enter blank - if no step number, just procedure title is listed)
|
||||
|
||||
Index="1" TransType="1" TransFormat="{First Step}"
|
||||
TransMenu="{First Step}" />
|
||||
|
||||
UI:
|
||||
Step Text Box (enter blank - no transition is inserted)
|
||||
|
||||
Index="2" TransType="2" TransFormat="{First Step}, {.}, {.}, {.} and {LastStep}"
|
||||
TransMenu="{First Step}, {.}, {.}, {.} and {LastStep}" />
|
||||
|
||||
UI:
|
||||
Step Text Box - tran 1 (enter blanks - no transition is inserted)
|
||||
Step Text Box - tran 2
|
||||
|
||||
Index="3" TransType="3" TransFormat="{First Step} thru {LastStep} of {Proc. Number}, {Proc. Title}, {Section Header}"
|
||||
TransMenu="{First Step} thru {LastStep} of {Proc. Number}, {Proc. Title}, {Section Header}" />
|
||||
|
||||
UI:
|
||||
Step Text Box - tran 1 (enter blanks - no transition is inserted)
|
||||
Step Text Box - tran 2
|
||||
Procedure List
|
||||
Section List - if more than 1 step section
|
||||
|
||||
Index="4" TransType="4" TransFormat="{Section Title}, Step {First Step}"
|
||||
TransMenu="{Section Title}, Step {First Step}" />
|
||||
|
||||
UI:
|
||||
Section List (in current procedure) Can select word doc or step section
|
||||
Step Text Box - if step section selected - Note if no step number is entered, no transition is inserted
|
||||
|
||||
Index="5" TransType="5" TransFormat="{Proc. Number}, {Proc. Title}, {Section Header}, Step {First Step}"
|
||||
TransMenu="{Proc. Number}, {Proc. Title}, {Section Header}, Step {First Step}" />
|
||||
|
||||
UI:
|
||||
Procedure List
|
||||
Section List - Can select word doc or step section
|
||||
Step Text Box - if step section selected - Note if no step number is entered, no transition is inserted
|
||||
|
||||
|
||||
Format conversion - tokens handled in TransFmt string:
|
||||
p=p.Replace("\xff","\xA0");
|
||||
p=p.Replace("\x07","{First Step}");
|
||||
p=p.Replace("\x08","{LastStep}");
|
||||
p=p.Replace("\x04","{Section Title}");
|
||||
p = p.Replace("\x06", "{Section Title}");
|
||||
p=p.Replace("\x03","{Section No.}");
|
||||
p = p.Replace("\x17", "{Section No.}");
|
||||
p = p.Replace("\x02", "{Proc. Title}");
|
||||
p = p.Replace("\x01", "{Proc. Number}");
|
||||
p=p.Replace("\xF","{Page No.}");
|
||||
p = p.Replace("\x1E", "{Page No.}");
|
||||
p = p.Replace("\x1D", "{Step Text}");
|
||||
p = p.Replace("\x0D", "Step {First Step}");
|
||||
|
||||
// the following are in cpl & she format Not sure what to do so just
|
||||
// flag them
|
||||
//if (p.Length==1 && (p.IndexOfAny("\x19\x1A".ToCharArray())>-1))
|
||||
//{
|
||||
p = p.Replace("\x19", "{TransFmt hex 19}");
|
||||
p = p.Replace("\x1A", "{TransFmt hex 1a}");
|
||||
//}
|
43
PROMS/Documents/DeleteLink.TXT
Normal file
43
PROMS/Documents/DeleteLink.TXT
Normal file
@@ -0,0 +1,43 @@
|
||||
0) a) If starts before link & ends after a link, delete selection
|
||||
b) If starts before link & ends at end of link (SelectedText ends with [END>), delete selection
|
||||
c) If starts before link & ends between 2 links, (SelectedText ends with <START],
|
||||
push_selection; set SelectionStart1 = SelectionStart + SelectionLength,
|
||||
using SetSelection(SelectionStart1, 0) from TestWndProc/MyPanel.cs; insert space; pop_selection;
|
||||
allow deletion
|
||||
d) If starts at beginning of one link and end of another and end is in text:
|
||||
Save SelectionStart & SelectionLength; Set SelectionLength=0; Insert a space; set SelectionStart
|
||||
to saved SelectionStart+1 and SelectionLength = saved SelectionLength; allow deletion
|
||||
e) If deleting a link do the following.
|
||||
|
||||
1) Break 'Rtf' into 3 pieces:
|
||||
- From 0 to StartRtf
|
||||
- From StartRtf to LengthRtf
|
||||
- From EndRtf
|
||||
|
||||
2) Capture any formatting from the link.
|
||||
Only do this if selection starts at the
|
||||
beginning of a link (using linklocation start)
|
||||
|
||||
Within piece 2 (link):
|
||||
Remove <START]
|
||||
Remove everything from first space on
|
||||
Take any remaining characters (formatting) and
|
||||
save them as FORMATTING to be used piece 1
|
||||
|
||||
3) Keep formatting and fix comment beginning/ending
|
||||
based on single link or two in a row.
|
||||
|
||||
Within piece 1 (before link):
|
||||
if piece1 ends with [END>
|
||||
append FORMATTING+'\v0 ' after [END>
|
||||
else
|
||||
replace last \v with FORMATTING
|
||||
|
||||
4) Within piece 3 (after link):
|
||||
if piece3 begins with <START]
|
||||
insert '\v ' before <START] in piece3
|
||||
else if begins with '\v0 '
|
||||
remove '\v0 '
|
||||
else // remove '\v0' - this is in case other formatting exists
|
||||
remove first '\v0' found
|
||||
|
BIN
PROMS/Documents/Deleting and Inserting Steps.docx
Normal file
BIN
PROMS/Documents/Deleting and Inserting Steps.docx
Normal file
Binary file not shown.
BIN
PROMS/Documents/Demo Tree View.docx
Normal file
BIN
PROMS/Documents/Demo Tree View.docx
Normal file
Binary file not shown.
BIN
PROMS/Documents/DemoInsertDelete.xlsx
Normal file
BIN
PROMS/Documents/DemoInsertDelete.xlsx
Normal file
Binary file not shown.
BIN
PROMS/Documents/Edit Development Plan 20080404.docx
Normal file
BIN
PROMS/Documents/Edit Development Plan 20080404.docx
Normal file
Binary file not shown.
BIN
PROMS/Documents/Edit KBR_jsj.docx
Normal file
BIN
PROMS/Documents/Edit KBR_jsj.docx
Normal file
Binary file not shown.
BIN
PROMS/Documents/Editor.docx
Normal file
BIN
PROMS/Documents/Editor.docx
Normal file
Binary file not shown.
12
PROMS/Documents/ErrorLogLoc.TXT
Normal file
12
PROMS/Documents/ErrorLogLoc.TXT
Normal file
@@ -0,0 +1,12 @@
|
||||
Code directories:
|
||||
|
||||
LocalApplicationData: C:\Users\Kathy.VOLIAN0\AppData\Local
|
||||
ApplicationData: C:\Users\Kathy.VOLIAN0\AppData\Roaming
|
||||
CommonApplicationData: C:\ProgramData
|
||||
MyDocuments: C:\Users\Kathy.VOLIAN0\Documents
|
||||
|
||||
|
||||
Log4Net:
|
||||
|
||||
{APPDATA} - Kathy B. Ruffing\AppData\Roaming
|
||||
{USERPROFILE} - MyDocuments (i.e. Kathy B. Ruffing\Documents)
|
BIN
PROMS/Documents/FoldoutVariablesInFormats.xlsx
Normal file
BIN
PROMS/Documents/FoldoutVariablesInFormats.xlsx
Normal file
Binary file not shown.
BIN
PROMS/Documents/FormatUsage.xlsx
Normal file
BIN
PROMS/Documents/FormatUsage.xlsx
Normal file
Binary file not shown.
BIN
PROMS/Documents/FormatUsageFromBaselineData.xlsx
Normal file
BIN
PROMS/Documents/FormatUsageFromBaselineData.xlsx
Normal file
Binary file not shown.
392
PROMS/Documents/HLP Migrate Errors.TXT
Normal file
392
PROMS/Documents/HLP Migrate Errors.TXT
Normal file
@@ -0,0 +1,392 @@
|
||||
Computer Name: KATHY-VISTA
|
||||
Data Set: c:\16bit\debug\vehlp\procs
|
||||
Cannot Find Image File c:\16bit\debug\vehlp\ro\CNT.TIF
|
||||
Cannot Find Image File c:\16bit\debug\vehlp\ro\CLVRL.TIF
|
||||
Cannot Find Image File c:\16bit\debug\vehlp\ro\G-098.PIX
|
||||
Cannot Find Image File c:\16bit\debug\vehlp\ro\03309C~1.PCX
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp34A9.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp3FA6.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp47B5.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp4D62.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp534F.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp58ED.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp5E5C.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp63FA.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp6989.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp6F18.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp7487.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp7A25.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp7FE3.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp8581.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp8B0F.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp907F.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp95FE.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp9B9C.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmpA13A.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmpA6B9.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmpABFA.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmpB198.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmpB6F8.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmpBCA6.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmpC292.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmpC801.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmpCD90.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmpD32E.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmpD997.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmpDF16.tmp
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc131.A08
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc131.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc131.A09
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc131.A07
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc131.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc001.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc001.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc001.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc001.A07
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc133.A08
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc133.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc133.A14
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc133.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc134.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc134.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc134.A06
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc134.A05
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc134.A07
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc134.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc135.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc135.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc135.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc136.A13
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc136.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc136.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc136.A05
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc136.A06
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc136.A07
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc136.A08
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc136.A09
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc136.A10
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc136.A17
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc136.A12
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc136.A15
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc136.A16
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc136.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc137.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc137.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc137.A06
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc137.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc138.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc138.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc138.A05
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc138.A11
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc138.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc139.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc139.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc139.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc140.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc140.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc140.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc141.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc141.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc141.A05
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc141.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc142.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc142.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc142.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc143.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc143.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc143.A11
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc143.A17
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc143.A18
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc143.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc144.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc144.A07
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc144.A08
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc144.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc145.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc145.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc145.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc146.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc146.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc146.A08
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc146.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc147.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc147.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc147.A06
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc147.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc148.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc148.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc148.A05
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc148.A06
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc148.A07
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc148.A09
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc148.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc149.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc149.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc149.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc150.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc150.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc150.A05
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc150.A07
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc150.A10
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc150.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc151.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc151.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc151.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc151.A05
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc152.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc152.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc152.A08
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc152.A14
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc152.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc153.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc153.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc153.A09
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc153.A14
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc154.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc154.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc154.A10
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc155.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc155.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc155.A09
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc155.A15
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc156.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc156.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc156.A07
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc156.A09
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc156.A11
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc156.A06
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc157.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc157.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc157.A05
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc158.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc158.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc158.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc158.A07
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc159.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc159.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc159.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc159.A06
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc160.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc160.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc160.A06
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc160.A05
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc161.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc161.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc161.A07
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc161.A12
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc161.A08
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc162.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc162.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc162.A05
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc163.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc163.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc164.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc164.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc164.A05
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc165.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc165.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc165.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc166.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc166.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc166.A08
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc166.A09
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc166.A10
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc167.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc167.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc167.A05
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc167.A06
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc168.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc168.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc168.A07
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc169.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc169.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc170.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc170.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc171.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc171.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc171.A07
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc172.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc172.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc172.A05
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc173.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc173.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc173.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc173.A09
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc173.A10
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc174.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc174.A01
|
||||
Missing rtf file: c:\16bit\debug\vehlp\procs\rtffiles\proc174.A03
|
||||
Missing rtf file: c:\16bit\debug\vehlp\procs\rtffiles\proc174.A04
|
||||
Missing rtf file: c:\16bit\debug\vehlp\procs\rtffiles\proc174.A05
|
||||
Missing rtf file: c:\16bit\debug\vehlp\procs\rtffiles\proc174.A06
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc174.A07
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc174.A08
|
||||
Missing rtf file: c:\16bit\debug\vehlp\procs\rtffiles\proc174.A10
|
||||
Missing rtf file: c:\16bit\debug\vehlp\procs\rtffiles\proc174.A09
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc175.A02
|
||||
Missing rtf file: c:\16bit\debug\vehlp\procs\rtffiles\proc175.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc176.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc176.A02
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc176.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc177.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc177.A02
|
||||
Missing rtf file: c:\16bit\debug\vehlp\procs\rtffiles\proc177.A01
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc178.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc178.A02
|
||||
Missing rtf file: c:\16bit\debug\vehlp\procs\rtffiles\proc178.A06
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc178.A04
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc178.A05
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc179.A02
|
||||
Missing rtf file: c:\16bit\debug\vehlp\procs\rtffiles\proc179.A03
|
||||
Processing c:\16bit\debug\vehlp\procs\rtffiles\proc180.A02
|
||||
Missing rtf file: c:\16bit\debug\vehlp\procs\rtffiles\proc180.A03
|
||||
Missing Transition Destination 0POP05-EO-EC00|R6S2 - 4694
|
||||
Missing Transition Destination 0POP05-EO-FRH1|I9S - 8898
|
||||
Missing Transition Destination 0POP05-EO-ES01|A6S33 - 586
|
||||
Data Set: c:\16bit\debug\vehlp\stpdif.prc
|
||||
Cannot Find Image File c:\16bit\debug\vehlp\ro\CNT.TIF
|
||||
Cannot Find Image File c:\16bit\debug\vehlp\ro\CLVRL.TIF
|
||||
Cannot Find Image File c:\16bit\debug\vehlp\ro\G-098.PIX
|
||||
Cannot Find Image File c:\16bit\debug\vehlp\ro\03309C~1.PCX
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmpFD24.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp294.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmp813.tmp
|
||||
Processing C:\Users\Kathy.VOLIAN0\AppData\Local\Temp\tmpD92.tmp
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc054.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc000.A03
|
||||
migrateRos
|
||||
OleDbException - Syntax error (missing operator) in query expression '[NUMBER]='0POP05-EO-EO00' AND [SEQUENCE] ='A'S' ORDER BY [INSTANCE]'. at System.Data.OleDb.OleDbCommand.ExecuteCommandTextErrorHandling(OleDbHResult hr)
|
||||
at System.Data.OleDb.OleDbCommand.ExecuteCommandTextForSingleResult(tagDBPARAMS dbParams, Object& executeResult)
|
||||
at System.Data.OleDb.OleDbCommand.ExecuteCommandText(Object& executeResult)
|
||||
at System.Data.OleDb.OleDbCommand.ExecuteCommand(CommandBehavior behavior, Object& executeResult)
|
||||
at System.Data.OleDb.OleDbCommand.ExecuteReaderInternal(CommandBehavior behavior, String method)
|
||||
at System.Data.OleDb.OleDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
at System.Data.OleDb.OleDbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
at System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
at System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
at System.Data.Common.DbDataAdapter.Fill(DataSet dataSet)
|
||||
at DataLoader.Loader.MigrateRos(OleDbConnection cn, String textm, String seqcvt, Content content, DocVersion docver, Boolean conv_caret) in C:\Development\PROMS\DataLoader\RefObjs.cs:line 43
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc000.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc001.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc001.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc002.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc002.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc003.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc003.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc005.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc005.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc013.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc013.A01
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc011.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc011.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc033.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc033.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc034.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc034.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc024.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc024.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc055.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc055.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc012.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc012.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc027.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc027.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc015.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc015.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc016.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc016.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc017.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc017.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc038.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc038.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc039.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc039.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc026.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc026.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc040.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc040.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc032.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc032.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc056.A03
|
||||
Error getting transitions '0POP05-EO-EC21' 'A'S'
|
||||
OleDbException - Syntax error (missing operator) in query expression '[FROMNUMBER]='0POP05-EO-EC21' AND [FROMSEQUEN] ='A'S' ORDER BY [FROMINSTAN]'. at System.Data.OleDb.OleDbCommand.ExecuteCommandTextErrorHandling(OleDbHResult hr)
|
||||
at System.Data.OleDb.OleDbCommand.ExecuteCommandTextForSingleResult(tagDBPARAMS dbParams, Object& executeResult)
|
||||
at System.Data.OleDb.OleDbCommand.ExecuteCommandText(Object& executeResult)
|
||||
at System.Data.OleDb.OleDbCommand.ExecuteCommand(CommandBehavior behavior, Object& executeResult)
|
||||
at System.Data.OleDb.OleDbCommand.ExecuteReaderInternal(CommandBehavior behavior, String method)
|
||||
at System.Data.OleDb.OleDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
at System.Data.OleDb.OleDbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
|
||||
at System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
at System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
|
||||
at System.Data.Common.DbDataAdapter.Fill(DataSet dataSet)
|
||||
at DataLoader.Loader.MigrateTrans(OleDbConnection cn, String textm, String seqcvt, Content content, String pth) in C:\Development\PROMS\DataLoader\Transitions.cs:line 223
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc056.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc035.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc035.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc036.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc036.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc037.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc037.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc006.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc006.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc030.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc030.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc045.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc045.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc046.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc046.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc019.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc019.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc042.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc042.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc007.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc007.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc008.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc008.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc009.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc009.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc010.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc010.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc043.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc043.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc018.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc018.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc021.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc021.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc020.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc020.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc031.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc031.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc022.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc022.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc023.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc023.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc044.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc044.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc004.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc004.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc049.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc049.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc050.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc050.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc051.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc051.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc052.A03
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc052.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc053.A02
|
||||
Processing c:\16bit\debug\vehlp\stpdif.prc\rtffiles\proc053.A03
|
||||
Data Set: c:\16bit\debug\vehlp\stp_samg.prc
|
||||
Cannot Find Image File c:\16bit\debug\vehlp\ro\CNT.TIF
|
||||
Cannot Find Image File c:\16bit\debug\vehlp\ro\CLVRL.TIF
|
||||
Cannot Find Image File c:\16bit\debug\vehlp\ro\G-098.PIX
|
||||
Cannot Find Image File c:\16bit\debug\vehlp\ro\03309C~1.PCX
|
||||
Processing c:\16bit\debug\vehlp\stp_samg.prc\rtffiles\proc000.A02
|
||||
Processing c:\16bit\debug\vehlp\stp_samg.prc\rtffiles\proc000.A03
|
||||
Processing c:\16bit\debug\vehlp\stp_samg.prc\rtffiles\proc000.A04
|
||||
Processing c:\16bit\debug\vehlp\stp_samg.prc\rtffiles\proc000.A05
|
||||
Processing c:\16bit\debug\vehlp\stp_samg.prc\rtffiles\proc000.A06
|
||||
Processing c:\16bit\debug\vehlp\stp_samg.prc\rtffiles\proc001.A02
|
||||
Processing c:\16bit\debug\vehlp\stp_samg.prc\rtffiles\proc001.A03
|
||||
Processing c:\16bit\debug\vehlp\stp_samg.prc\rtffiles\proc001.A04
|
||||
Processing c:\16bit\debug\vehlp\stp_samg.prc\rtffiles\proc001.A05
|
||||
Conversion completion time: 00:15:52.1
|
BIN
PROMS/Documents/Library Documents.docx
Normal file
BIN
PROMS/Documents/Library Documents.docx
Normal file
Binary file not shown.
BIN
PROMS/Documents/Link Cases.docx
Normal file
BIN
PROMS/Documents/Link Cases.docx
Normal file
Binary file not shown.
BIN
PROMS/Documents/Macros.xlsx
Normal file
BIN
PROMS/Documents/Macros.xlsx
Normal file
Binary file not shown.
BIN
PROMS/Documents/MyFonts.pdf
Normal file
BIN
PROMS/Documents/MyFonts.pdf
Normal file
Binary file not shown.
BIN
PROMS/Documents/NPD - 01.doc
Normal file
BIN
PROMS/Documents/NPD - 01.doc
Normal file
Binary file not shown.
BIN
PROMS/Documents/PXS-101 sample.doc
Normal file
BIN
PROMS/Documents/PXS-101 sample.doc
Normal file
Binary file not shown.
BIN
PROMS/Documents/SpecCharsFrom16Bit.rtf
Normal file
BIN
PROMS/Documents/SpecCharsFrom16Bit.rtf
Normal file
Binary file not shown.
33
PROMS/Documents/Symbols.TXT
Normal file
33
PROMS/Documents/Symbols.TXT
Normal file
@@ -0,0 +1,33 @@
|
||||
{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fnil\fcharset2 Prestige Elite Tall;}{\f1\fnil\fcharset0 VESymbFix;}
|
||||
{\f2\fnil Prestige Elite Tall;}}
|
||||
\viewkind4\uc1\pard\sl-240\slmult0\f0\fs20
|
||||
Hard\f1\~\f0 space
|
||||
\'b0 Degree
|
||||
\f1\u916?\f0 Delta
|
||||
\f1\u8805?\f0 Gr Eq
|
||||
\f1\u8804?\f0 Lt Eq
|
||||
\'b1 Plusminus
|
||||
\f1\u931?\f0 sigma
|
||||
\f1\u947?\f0 gamma
|
||||
\'bd half
|
||||
\f1\u9604?\f0 accum
|
||||
\f1\u9679?\f0 bullet
|
||||
\f1\u8776?\f0 app eq
|
||||
\f1\u8773?\f0 sim eq
|
||||
\'f7 div
|
||||
\f1\u8730?\f0 sqrt
|
||||
\f1\u961?\f0 rho
|
||||
\f1\u960?\f0 pi
|
||||
\f1\u956?\f0 micro
|
||||
\f1\u948?\f0 lc delta
|
||||
\f1\u963?\f0 lc sigfma
|
||||
\'bc quarter
|
||||
\'d8 dist zero
|
||||
\f1\u274?\f0 energy
|
||||
\'ec grave
|
||||
\f1\u9474?\f0 bar
|
||||
\f1\u949?\f0 eps
|
||||
\f1\u952?\f0 theta
|
||||
\f1\u8857?\f0 dotoval
|
||||
\f1\u964?\f0 tau
|
||||
\f1\u9830?\f0 diamond
|
BIN
PROMS/Documents/TableDiffs.xlsx
Normal file
BIN
PROMS/Documents/TableDiffs.xlsx
Normal file
Binary file not shown.
BIN
PROMS/Documents/TestingFromDemoTreeView.xlsx
Normal file
BIN
PROMS/Documents/TestingFromDemoTreeView.xlsx
Normal file
Binary file not shown.
BIN
PROMS/Documents/TranTextFixReview.xlsx
Normal file
BIN
PROMS/Documents/TranTextFixReview.xlsx
Normal file
Binary file not shown.
BIN
PROMS/Documents/TranTextRes_Before.xlsx
Normal file
BIN
PROMS/Documents/TranTextRes_Before.xlsx
Normal file
Binary file not shown.
BIN
PROMS/Documents/TranType.xlsx
Normal file
BIN
PROMS/Documents/TranType.xlsx
Normal file
Binary file not shown.
BIN
PROMS/Documents/TransitionFormats_FromFmtFiles.xlsx
Normal file
BIN
PROMS/Documents/TransitionFormats_FromFmtFiles.xlsx
Normal file
Binary file not shown.
BIN
PROMS/Documents/TransitionType2.xlsx
Normal file
BIN
PROMS/Documents/TransitionType2.xlsx
Normal file
Binary file not shown.
BIN
PROMS/Documents/Transition_090110.docx
Normal file
BIN
PROMS/Documents/Transition_090110.docx
Normal file
Binary file not shown.
BIN
PROMS/Documents/UnitsOfMeasurement.docx
Normal file
BIN
PROMS/Documents/UnitsOfMeasurement.docx
Normal file
Binary file not shown.
BIN
PROMS/Documents/VEPROMS Tree.docx
Normal file
BIN
PROMS/Documents/VEPROMS Tree.docx
Normal file
Binary file not shown.
BIN
PROMS/Documents/WordDocEnd.xlsx
Normal file
BIN
PROMS/Documents/WordDocEnd.xlsx
Normal file
Binary file not shown.
BIN
PROMS/Documents/YLocation.vsd
Normal file
BIN
PROMS/Documents/YLocation.vsd
Normal file
Binary file not shown.
1
PROMS/Documents/iText.TXT
Normal file
1
PROMS/Documents/iText.TXT
Normal file
@@ -0,0 +1 @@
|
||||
yhst-26845379110410-113607
|
130
PROMS/Documents/noiseENU.txt
Normal file
130
PROMS/Documents/noiseENU.txt
Normal file
@@ -0,0 +1,130 @@
|
||||
about
|
||||
1
|
||||
after
|
||||
2
|
||||
all
|
||||
also
|
||||
3
|
||||
an
|
||||
4
|
||||
and
|
||||
5
|
||||
another
|
||||
6
|
||||
any
|
||||
7
|
||||
are
|
||||
8
|
||||
as
|
||||
9
|
||||
at
|
||||
0
|
||||
be
|
||||
$
|
||||
because
|
||||
been
|
||||
before
|
||||
being
|
||||
between
|
||||
both
|
||||
but
|
||||
by
|
||||
came
|
||||
can
|
||||
come
|
||||
could
|
||||
did
|
||||
do
|
||||
does
|
||||
each
|
||||
else
|
||||
for
|
||||
from
|
||||
get
|
||||
got
|
||||
has
|
||||
had
|
||||
he
|
||||
have
|
||||
her
|
||||
here
|
||||
him
|
||||
himself
|
||||
his
|
||||
how
|
||||
if
|
||||
in
|
||||
into
|
||||
is
|
||||
it
|
||||
its
|
||||
just
|
||||
like
|
||||
make
|
||||
many
|
||||
me
|
||||
might
|
||||
more
|
||||
most
|
||||
much
|
||||
must
|
||||
my
|
||||
never
|
||||
no
|
||||
now
|
||||
of
|
||||
on
|
||||
only
|
||||
or
|
||||
other
|
||||
our
|
||||
out
|
||||
over
|
||||
re
|
||||
said
|
||||
same
|
||||
see
|
||||
should
|
||||
since
|
||||
so
|
||||
some
|
||||
still
|
||||
such
|
||||
take
|
||||
than
|
||||
that
|
||||
the
|
||||
their
|
||||
them
|
||||
then
|
||||
there
|
||||
these
|
||||
they
|
||||
this
|
||||
those
|
||||
through
|
||||
to
|
||||
too
|
||||
under
|
||||
up
|
||||
use
|
||||
very
|
||||
want
|
||||
was
|
||||
way
|
||||
we
|
||||
well
|
||||
were
|
||||
what
|
||||
when
|
||||
where
|
||||
which
|
||||
while
|
||||
who
|
||||
will
|
||||
with
|
||||
would
|
||||
you
|
||||
your
|
||||
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
|
||||
|
30
PROMS/Documents/xslhelp.TXT
Normal file
30
PROMS/Documents/xslhelp.TXT
Normal file
@@ -0,0 +1,30 @@
|
||||
<group>
|
||||
<item>
|
||||
<id>item 1</id>
|
||||
<CategoryName>blue</CategoryName>
|
||||
</item>
|
||||
<item>
|
||||
<id>item 2</id>
|
||||
<CategoryName></CategoryName>
|
||||
</item>
|
||||
<item>
|
||||
<id>item 3</id>
|
||||
</item>
|
||||
...
|
||||
</group>
|
||||
A sample use case would look like:
|
||||
|
||||
<xsl:for-each select="/group/item">
|
||||
<xsl:if test="CategoryName">
|
||||
<!-- will be instantiated for item #1 and item #2 -->
|
||||
</xsl:if>
|
||||
<xsl:if test="not(CategoryName)">
|
||||
<!-- will be instantiated for item #3 -->
|
||||
</xsl:if>
|
||||
<xsl:if test="CategoryName != ''">
|
||||
<!-- will be instantiated for item #1 -->
|
||||
</xsl:if>
|
||||
<xsl:if test="CategoryName = ''">
|
||||
<!-- will be instantiated for item #2 -->
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
Reference in New Issue
Block a user