topic
stringlengths
1
63
text
stringlengths
1
577k
Pegar"" DIALOGO a MAIN WINDOW
Para "pegar" un dialogo al MAIN WINDOW al iniciar mi programa, uso la clausula ON INIT, asi como oDlg:Move(x,y) para posicionar dicho dialogo dentro del WINDOW; al dialogo le quito el CAPTION asi este no se puede mover. El problema lo tengo que el MAIN WINDOW si se puede mover y maximizar. Lo que quisiera es que cuando se mueva el MAIN WINDOW tambien se mueva con el el dialogo y que el MAIN WINDOW no se pueda MAXIMIZAR. Alguna sugerencia? George
Pegar"" DIALOGO a MAIN WINDOW
George, Para que el diálogo sea "child" de la ventana, usa la claúsula OF: DEFINE DIALOG ... OF oWnd Así se moverá a la vez que se mueva la ventana.
Pegar"" DIALOGO a MAIN WINDOW
Antonio Asi es que lo tengo desde el principio, debe ser otra cosa que me falta. Abajo esta el codigo simplificado a ver si tu puedes ver algo que yo estoy pasando por alto >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> FUNCTION Main() BWCCRegister(GetResources()) PUBLIC oWnd DEFINE FONT oFont NAME "MS SANS SERIF" SIZE 0,-8 //BOLD DEFINE FONT oFont01 NAME "VERDANA" SIZE 0,-11 BOLD Inicio() cAppliDir := SFN2LFN(cAppliDir) DEFINE BRUSH oBrush COLOR CLR_WHITE DEFINE WINDOW oWnd MDI; FROM 4,10 TO 45.70, 140; TITLE ("Customer's Verification Software"); BRUSH oBrush oWnd:SetFont(oFont) FrameBar() oWnd:SetMenu(MainMenu()) ACTIVATE WINDOW oWnd ON INIT ( Seguridad(), ActivateDialog() ) RETURN (.T.) FUNCTION ActivateDialog() DEFINE DIALOG oDlg RESOURCE "DIALOG_4" of oWnd ; ....... ........ ......... ACTIVATE DIALOG oDlg NOWAIT ON INIT oDlg:Move(155, 85) RETURN .T. >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Asi como esta me permite trabajar bien. Solo que al mover el MAIN WINDOWS el dialogo no se mueve con el. Si quito la clausula NOWAIT entonces no puedo acceder al menu en el MAIN WIDOWS Gracias por todo George
Pegar"" DIALOGO a MAIN WINDOW
George, Es preciso que muestres como está definido "DIALOG_4" en tu fichero RC.
Pegar"" DIALOGO a MAIN WINDOW
Antonio, El DIALOG_4 no lo estoy definiendo como CHILD. El problema es que si lo defino como CHILD entonces, aunque se mueve bien con el WINDOW MAIN, el DIALOG_4 no se dibuja completo y algunos controle ni siquieran funcionan, los say no se dibujan, etc. Seguire investigando, pues es la primera vez que intento esto de iniciar mi programa en modo MDI con un DIALOG abierto. Quizas me puedas hacer alguna sugerencia. Saludos George
Pegar"" DIALOGO a MAIN WINDOW
Esto quiza te pueda servir [code:2y8fvhcj]/* ╔════════════════════════════════════════════════════════════════════════╗ ║ Program......: DlgChild.prg ║ ║ Date.........: 07-01-2004 ║ ║ Author.......: Renzo A. Balboa Flores ║ ║ Compiler.....: Clipper Ver 5.3 ║ ║ Description..: Clase TDlgChild hereda de TMDIChild ║ ║ Child con dialogo inscrustado ║ ╠════════════════════════════════════════════════════════════════════════╣ ║ Modificación : Mon - 14/Feb/2005 --- 01:27 AM ║ ╚════════════════════════════════════════════════════════════════════════╝ */ #Include 'Fivewin.ch' CLASS TDlgChild FROM TMDIChild DATA oDlg DATA lModal AS LOGICAL INIT .T. METHOD New() CONSTRUCTOR METHOD Activate() METHOD DefControl( oCtrl ) INLINE ::oDlg:DefControl( oCtrl ) METHOD End() METHOD Update() INLINE ::oDlg:Update() METHOD ClassName() INLINE 'TDIALOG' //para tsbrowse ENDCLASS //----------------------------------------------------------------------------// METHOD New( cTitle, cResource, nTop, nLeft, nBottom, nRight, lPixel ) CLASS TDlgChild DEFAULT lPixel := .F. ::bEnd := { || Nil } Super:New( ::nTop, ::nLeft, ::nBottom, ::nRight, cTitle, Nil, Nil, Nil, ; oApp:oWnd:oIcon, .F., Nil, Nil, Nil, Nil, .T., .F., Nil, Nil, .T., ; .T., .T., .F. ) //No Maximize If Empty( cResource ) If lPixel DEFINE DIALOG ::oDlg FROM nTop, nLeft TO nBottom, nRight PIXEL OF Self STYLE WS_CHILD ::hWnd := 0 Else DEFINE DIALOG ::oDlg FROM nTop, nLeft TO nBottom, nRight OF Self STYLE WS_CHILD ::hWnd := 0 EndIf Else DEFINE DIALOG ::oDlg RESOURCE cResource OF Self EndIf Return Self //----------------------------------------------------------------------------// METHOD Activate( bInit ) CLASS TDlgChild Local nW := If( IsWinNT(), 8, 8 ) Local nH := If( IsWinNT(),33, 27 ) Local oChild := Self ACTIVATE DIALOG ::oDlg NOWAIT VALID ( oChild:End(), .T. ) ::oDlg:Move( 0,0 ) ::nWidth := ::oDlg:nWidth + nW ::nHeight := ::oDlg:nHeight + nH Super:Activate(,,,,,,, bInit, ) /*( cShow, bLClicked, bRClicked, bMoved, bResized, bPainted,; bKeyDown, bInit, bUp, bDown, bPgUp, bPgDn, bLeft, bRight,; bPgLeft, bPgRight, bValid ) */ Return Self //----------------------------------------------------------------------------// [/code:2y8fvhcj] Mode de uso: [code:2y8fvhcj] oDlg := TDlgChild( "Tu Titulo", "DLGRECURSO" ) [/code:2y8fvhcj] Para los controles los declaras normal
Pegar"" DIALOGO a MAIN WINDOW
Renomas Gracias por tu ayuda Pero al tratar de compilar la clase que me enviaste se me genera un error: Unresolved external symbol HB_FUN_TDLGCHILD_END. Parece que no existe el metodo END. Saludos George
Pegar"" DIALOGO a MAIN WINDOW
George, Por favor revisa el ejemplo samples\TestMdi4.prg
Pegar"" DIALOGO a MAIN WINDOW
Antonio, Solucionado gracias al ejemplo testmdi4.prg Gracias George
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
Dear Antonio and friends![b:20op8ghm]* New: REDEFINE SAY ... TRANSPARENT already available. No need to declare a variable to hold the SAY object to set its transparency. [/b:20op8ghm]My syntax is here:[code:20op8ghm]REDEFINE SAY PROMPT "Test oSay Transparent" ID 4001 OF oDlg FONT ( TFont():new( "Tahoma", 0, 25,, .T. ) ) TRANSPARENT[/code:20op8ghm]But, still not work!
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
Hello JC,i couldn't detect any problem.As you can see : a transparent SAY on Gradient-background.Value 0.50 is a GETThe say-text is directly written inside the resource. !!!!I didn't use REDEFINE SAY[img:2761oldd]http&#58;//www&#46;pflegeplus&#46;com/pictures/setting9&#46;jpg[/img:2761oldd]RegardsUwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
Uwe, this is my REDEFINE SAY into our application:[img:2swl9dyx]http&#58;//lh3&#46;ggpht&#46;com/ferreira&#46;together/SLWbm9euuWI/AAAAAAAAAKc/qRhMwH5JeZM/s800/say&#46;JPG[/img:2swl9dyx]It's on top of a bitmap image from resource!Not works!
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
Hello JC,I understand.This is complete different ( Text on BMP ).I will give you a source-sample for this in this topic.RegardsUwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
[quote="ukoenig":20ata0f5]Hello JC, I understand. This is complete different ( Text on BMP ). I will give you a source-sample for this in this topic. Regards Uwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->[/quote:20ata0f5]Uew, please send me on <!-- e --><a href="mailto:julio.mferreira@gmail.com">julio.mferreira@gmail.com</a><!-- e -->! And thanks!
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
Júlio,Are you using a BRUSH from a bitmap for the Dialog ?
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
[quote="Antonio Linares":e3pmnzzd]Júlio, Are you using a BRUSH from a bitmap for the Dialog ?[/quote:e3pmnzzd]Antonio, not! I'm using this way:[code:e3pmnzzd]TBitmap&#40;&#41;&#58;redefine&#40; nId, cResName,, oDlg,,,, lStretch,,,,,, lTransparent &#41;[/code:e3pmnzzd]
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
Júlio,Then try to use:oBitmap:Say( nRow, nCol, cText, ... ) METHOD Say( nRow, nCol, cText, nClrFore, nClrBack, oFont, lPixel,; lTransparent, nAlign )
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
[quote="Antonio Linares":12vzrf65]Júlio, Then try to use: oBitmap:Say( nRow, nCol, cText, ... ) METHOD Say( nRow, nCol, cText, nClrFore, nClrBack, oFont, lPixel,; lTransparent, nAlign )[/quote:12vzrf65]Antonio,I tried with this implementation, but not works![code:12vzrf65] oBitmap &#58;= TBitmap&#40;&#41;&#58;redefine&#40; 100, "IMG_BARRA_TOP",, oDlg &#41; oBitmap&#58;say&#40; 2, 2, "Cadastro Plano de Contas",,,,, &#46;T&#46; &#41;[/code:12vzrf65]This the result image:[img:12vzrf65]http&#58;//lh6&#46;ggpht&#46;com/ferreira&#46;together/SLWhsC5clfI/AAAAAAAAAKk/AAeAjppQlRY/s800/say&#46;JPG[/img:12vzrf65]
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
Julio,You have to do that call from the ON INIT of the dialog:ACTIVATE DIALOG oDlg ;ON INIT oBitmap:Say( 2, 2, "Cadastro Plano de Contas",,,,, .T. )
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
And remove the SAY control ! ("text") <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
In fact, it should be used from the ON PAINT, to properly refresh:ACTIVATE DIALOG oDlg ; ON PAINT oBitmap:Say( 2, 2, "Cadastro Plano de Contas",,,,, .T. )
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
Antonio,My code:[code:95ak1q3i]DEFINE DIALOG oDlg RESOURCE "DEFAULT_FORM" OF oWnd ICON oIcon oBitmap &#58;= TBitmap&#40;&#41;&#58;redefine&#40; 100, "IMG_BARRA_TOP",, oDlg &#41; &#46;&#46;&#46; ACTIVATE DIALOG oDlg CENTER ON PAINT &#40; oBitmap&#58;say&#40; 2, 2, "Cadastro Plano de Contas",,,,, &#46;T&#46; &#41; &#41;[/code:95ak1q3i]Sorry, but still not work!We using the class TSSay with syntax [b:95ak1q3i]REDEFINE SENSITIVE SAY ... TRANSPARENT[/b:95ak1q3i] and this works fine!I really want to use the native class of FWH with transparency! It's very better than!
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
Hello JC,Like Antonio told you : You have to use ONPAINT, to solve your problem. Here is just a quick sample, how i use text-writing on BMP's from Resource on any places.The BMP-resource is filled with a brush or color, then a text is painted. I use it for my Title-paintings. Maybe you can find some informations on it.The resource < Blanc > is a small BMP inside the resource, used as container. ID 100 is your BMP with the original size.POSLEFT defines the needed left-position of the text.The top-position of the text is calculated from the font- and BMP-height,to center the text vertical.[code:1eal7zdi] REDEFINE BITMAP oBmp1 ID 100 ADJUST RESOURCE "Blanc" OF oDlg1 oBmp1&#58;bPainted &#58;= &#123; |hDC|OnPaint&#40; oDlg1,hDC,oBMP1, "Your Text", oFont, POSLEFT &#41; &#125; //----------------------------------------------------------------// FUNCTION ONPAINT&#40;oDlg1,hDC,oBmp,cText, oBFont,nPOSLEFT &#41; LOCAL hOldFont, oNewbrush, hBitmap, aRect, nTOP, nLEFT hOldFont &#58;= SelectObject&#40; hDC, oBFont&#58;hFont &#41; // find the text-length nTXTLG &#58;= GettextWidth&#40; hDC, cText &#41; nBMPLONG &#58;= oBmp&#58;Super&#58;nWidth&#40;&#41; nBMPHIGHT &#58;= oBmp&#58;Super&#58;nHeight&#40;&#41; nFONTHIGHT &#58;= oBfont&#58;nInpHeight * -1 // The text-pos is calculated nLEFT &#58;= 5 IF nPOSLEFT = 0 // Center-position in BMP if POSLEFT = 0 nLEFT &#58;= &#40;nBMPLONG - nTXTLG&#41; / 2 ELSE // defined left-position nLEFT &#58;= nPOSLEFT ENDIF nNEWHIGHT &#58;= nFONTHIGHT // Text-top-position is calculated&#46; nTOP &#58;= &#40;nBMPHIGHT - nNEWHIGHT&#41; / 2 aRect &#58;= GETCLIENTRECT&#40; oBmp&#58;hWnd &#41; oBmp&#58;oBrush &#58;= oNewbrush SetTextColor&#40; hDC,nColor&#41; SetBkMode&#40; oBmp&#58;hDC, 0 &#41; // Fills your BMP with a brush FillRect&#40; hDC, aRect, oBmp&#58;oBrush&#58;hBrush &#41; IF nPOSLEFT > 0 TextOut&#40; hDC, nTOP, nLEFT, cText &#41; ELSE TextOut&#40; hDC, nTOP, nLEFT, cText &#41; ENDIF SelectObject&#40; hDC, hOldFont &#41; RETURN NIL [/code:1eal7zdi]RegardsUwe
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
Uwe,>Like Antonio told you : You have to use ONPAINT, to solve your problem. I think what JC is saying is that the 3rd-party product, sensitive SAY, does work without being called from ON PAINT, so it is techinically possible. He hopes that Antonio can achive the same with the native FW SAY. I hope so too.James
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
James,FWH uses a Windows standard control ("static") for the SAYs. This way standard static controls can be used from the resources editors. I guess that TSSay implements a user defined control to solve those limitations.
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
[quote="James Bott":333azhx0]Uwe, >Like Antonio told you : You have to use ONPAINT, to solve your problem. I think what JC is saying is that the 3rd-party product, sensitive SAY, does work without being called from ON PAINT, so it is techinically possible. He hopes that Antonio can achive the same with the native FW SAY. I hope so too. James[/quote:333azhx0]Dear James,That's it! With native say control, if works, is too much complicated!
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
Dear friends!The TSSay class!<!-- m --><a class="postlink" href="http://rapidshare.com/files/140764158/SSay.prg.html">http://rapidshare.com/files/140764158/SSay.prg.html</a><!-- m -->
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
Júlio,Here you have a working example <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->test.prg[code:25b1g35e] #include "FiveWin&#46;ch" function Main&#40;&#41; local oDlg, oBmp, oFont DEFINE FONT oFont NAME "Verdana" SIZE 0, -16 BOLD DEFINE DIALOG oDlg RESOURCE "Test" COLOR "N/B" REDEFINE BITMAP oBmp ID 100 OF oDlg FILENAME "test&#46;bmp" oBmp&#58;bPainted = &#123; | hDC | oBmp&#58;Say&#40; 12, 20, "Cadastro Plano de Contas",,, oFont, &#46;T&#46;, &#46;T&#46; &#41; &#125; ACTIVATE DIALOG oDlg CENTERED oFont&#58;End&#40;&#41; return nil [/code:25b1g35e] test.rc [code:25b1g35e] test DIALOG 98, 55, 185, 147 STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU CAPTION "Test" FONT 8, "MS Sans Serif" &#123; CONTROL "", 100, "TBitmap", 0 | WS_CHILD | WS_VISIBLE, 0, -1, 185, 29 DEFPUSHBUTTON "OK", 1, 67, 128, 50, 14 &#125; [/code:25b1g35e][url=http&#58;//imageshack&#46;us:25b1g35e][img:25b1g35e]http&#58;//img357&#46;imageshack&#46;us/img357/9379/dialogxy4&#46;png[/img:25b1g35e][/url:25b1g35e]
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
Antonio, James, Uwe and friends!It's works now! With very much strength!! <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->This is my generic user function:[code:3vzdns3p]FUNCTION aplImage&#40; oDlg, nId, cResNome, lTransparente, lStretch, cLabel &#41; LOCAL oBitmap DEFAULT lTransparente &#58;= &#46;F&#46; , ; cResNome &#58;= "IMG_BARRA_TOP", ; nId &#58;= 100 , ; lStretch &#58;= &#46;F&#46; , ; cLabel &#58;= NIL oBitmap &#58;= TBitmap&#40;&#41;&#58;redefine&#40; nId, cResNome,, oDlg,,,, lStretch,,,,,, lTransparente &#41; IF !empty&#40; cLabel &#41; oBitmap&#58;bPainted = &#123;|hDC| oBitmap&#58;say&#40; 12, 20, cLabel,,, TFont&#40;&#41;&#58;new&#40; "Tahoma", 0, 25,, &#46;T&#46; &#41;, &#46;T&#46;, &#46;T&#46; &#41; &#125; ENDIF RETURN&#40; oBitmap &#41;[/code:3vzdns3p]
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
Julio,You have to modify your function as you are creating fonts and you are not releasing them:[code:9weg12lc] FUNCTION aplImage&#40; oDlg, nId, cResNome, lTransparente, lStretch, cLabel &#41; LOCAL oBitmap static oFont DEFAULT lTransparente &#58;= &#46;F&#46; , ; cResNome &#58;= "IMG_BARRA_TOP", ; nId &#58;= 100 , ; lStretch &#58;= &#46;F&#46; , ; cLabel &#58;= NIL oBitmap &#58;= TBitmap&#40;&#41;&#58;redefine&#40; nId, cResNome,, oDlg,,,, lStretch,,,,,, lTransparente &#41; IF ! Empty&#40; cLabel &#41; if oFont == nil oFont = TFont&#40;&#41;&#58;new&#40; "Tahoma", 0, 25,, &#46;T&#46; &#41; endif oBitmap&#58;bPainted = &#123;|hDC| oBitmap&#58;Say&#40; 12, 20, cLabel,,, oFont, &#46;T&#46;, &#46;T&#46; &#41; &#125; ENDIF RETURN oBitmap [/code:9weg12lc]
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
Thank you Linares!I have changed my source!Antonio, no have a way for redefine the say with this syntax and with the same effect of a bPainted call?[b:1l7s06ig]REDEFINE SAY ... TRANPARENT[/b:1l7s06ig]
REDEFINE SAY ... TRANSPARENT"" not work! SOLVED!
Júlio,No, not yet
Resize"" event for tcbrowse column
Hi, What event gets triggered when the user resizes the column width of the tcbrowse control? I appreciate any help. Bert
Resize"" event for tcbrowse column
Bert, Class TCBrowse does not send any specific notification for such event. What action do you need to do on such event ? We may provide you some info about how to do it <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Resize"" event for tcbrowse column
Hi, This is just a cosmetic thing. I have a dialog with two "identical" grids. I want the grids to be of the same column widths all the time. So, I need to know if the user resizes the first grid so i can update the other one. Thanks Bert
Resize"" event for tcbrowse column
Bert, You could easily modify Class TWBrowse Method LButtonUp() to fire such notification. Here I show you how to modify it. You may need to add a new DATA bColResized: [code=fw:2ab84y6a]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">METHOD</span> LButtonUp<span style="color: #000000;">&#40;</span> nRow, nCol, nFlags <span style="color: #000000;">&#41;</span> <span style="color: #00C800;">CLASS</span> TWBrowse<br /><br />&nbsp; &nbsp;<span style="color: #00C800;">if</span> ::<span style="color: #000000;">lDrag</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">return</span> <span style="color: #00C800;">Super</span>:<span style="color: #000000;">LButtonUp</span><span style="color: #000000;">&#40;</span> nRow, nCol, nFlags <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">endif</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">if</span> ::<span style="color: #000000;">lCaptured</span><br />&nbsp; &nbsp; &nbsp; ::<span style="color: #000000;">lCaptured</span> = .f.<br />&nbsp; &nbsp; &nbsp; ReleaseCapture<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; ::<span style="color: #000000;">VertLine</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">If</span> ! Empty<span style="color: #000000;">&#40;</span> ::<span style="color: #000000;">bColResized</span> <span style="color: #000000;">&#41;</span> &nbsp;<span style="color: #B900B9;">// new !</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Eval<span style="color: #000000;">&#40;</span> ::<span style="color: #000000;">bColResized</span>, <span style="color: #00C800;">Self</span> <span style="color: #000000;">&#41;</span> &nbsp;<span style="color: #B900B9;">// new !</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">endif</span> &nbsp;<span style="color: #B900B9;">// new !</span><br />&nbsp; &nbsp;<span style="color: #00C800;">endif</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">Super</span>:<span style="color: #000000;">LButtonUp</span><span style="color: #000000;">&#40;</span> nRow, nCol, nFlags <span style="color: #000000;">&#41;</span><br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br />&nbsp;</div>[/code:2ab84y6a] oBrowse:bColResized = { | oBrowse | ... your code ... }
Resize"" event for tcbrowse column
Antonio, thanks a lot. This should do it. Have a nice day. Bert
SUBMARINE"" - template for a web page (DBF database)
HEllo friends, [b:3gc71n11]Project name "SUBMARINE"[/b:3gc71n11] template for a web page We will evolve step by step this example. data comes from a DBF file bootstrap 4 -> card-columns from w3 school added a bs4 w3school slider snippet Live-Demo [url:3gc71n11]https&#58;//www&#46;modharbour&#46;club/submarine/index&#46;prg[/url:3gc71n11] Download [url:3gc71n11]https&#58;//www&#46;modharbour&#46;club/submarine/submarine&#46;zip[/url:3gc71n11] Best regards, Otto
Shortname"" for FIELD of DBF
hi, when "read" XLSx via Excel ActiveX i often have "Header" which are longer than 10 Sign for FIELD in DBF those "Header" Name can be equal on SUBSTR("Headername",1,10) so i need a "Shortname" did somebody know a Way to get a unique "Shortname" from String which is longer than 10 Sign <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
Shortname"" for FIELD of DBF
Dear Jimmy, I tried ChatGPT :=) Best regards and have a nice Sunday, Otto hi, when "read" XLSx via Excel ActiveX i often have "Header" which are longer than 10 Sign for FIELD in DBF those "Header" Name can be equal on SUBSTR("Headername",1,10) so i need a "Shortname" did somebody know a Way to get a unique "Shortname" from String which is longer than 10 Sign There are several ways to create a unique "shortname" from a string that is longer than 10 characters: Use a hash function: You can use a hash function such as SHA-1 or MD5 to generate a unique shortname. This will ensure that even if the original strings are similar, the shortnames will be different. Use a combination of the first and last characters: You can use the first and last characters of the original string to create a unique shortname. For example, if the original string is "abcdefghijklmnopqrstuvwxyz", the shortname could be "a-z". Use a counter: You can add a counter to the end of the shortname to make it unique. For example, if the original string is "abcdefghijklmnopqrstuvwxyz", the first shortname could be "abcdefghij", the second could be "abcdefghik" and so on. Use a combination of letters and numbers: You can use a combination of letters and numbers such as a timestamp to make the shortname unique. Use a unique id generator library: You can use a library that generates unique ids, such as uuid. Ultimately, the best approach will depend on your specific use case and requirements. how to do this with harbour Here's an example of how you could create a unique "shortname" from a string that is longer than 10 characters using the Harbour programming language: Use the SUBSTR() function to get the first 10 characters of the original string: Copy code shortname := SUBSTR( original_string, 1, 10 ) Use the HASH() function to create a hash of the original string: Copy code shortname := HASH( original_string, "md5" ) Use the first and last characters of the original string: Copy code shortname := SUBSTR( original_string, 1, 1 ) + "-" + SUBSTR( original_string, LEN( original_string ), 1 ) Use a counter: Copy code static counter := 0 shortname := SUBSTR( original_string, 1, 10 ) + "-" + counter counter += 1 Use a combination of letters and numbers: Copy code shortname := SUBSTR( original_string, 1, 8 ) + "_" + DATE() Use a unique id generator library: Copy code shortname := UUID() You can use any of the above approach to get a unique shortname, depending on your specific use case and requirements.
Shortname"" for FIELD of DBF
[quote="Jimmy":irwek2cd]hi, when "read" XLSx via Excel ActiveX i often have "Header" which are longer than 10 Sign for FIELD in DBF those "Header" Name can be equal on SUBSTR("Headername",1,10) so i need a "Shortname" did somebody know a Way to get a unique "Shortname" from String which is longer than 10 Sign <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->[/quote:irwek2cd] At first I simply did something like this : (there was a time I was thinking it only was 8 chars ))) [code=fw:irwek2cd]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> veldnaam<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />   <span style="color: #00C800;">Local</span> aTemp:=<span style="color: #000000;">&#123;</span><span style="color: #000000;">&#125;</span>  <span style="color: #B900B9;">// as a sample data</span><br />   AADD<span style="color: #000000;">&#40;</span>aTemp,<span style="color: #ff0000;">"Naam"</span><span style="color: #000000;">&#41;</span><br />   AADD<span style="color: #000000;">&#40;</span>aTemp,<span style="color: #ff0000;">"HOOFDINGVELD1"</span><span style="color: #000000;">&#41;</span><br />   AADD<span style="color: #000000;">&#40;</span>aTemp,<span style="color: #ff0000;">"HOOFDINGVELD2"</span><span style="color: #000000;">&#41;</span><br />   AADD<span style="color: #000000;">&#40;</span>aTemp,<span style="color: #ff0000;">"PRICE"</span><span style="color: #000000;">&#41;</span><br /><br />  n=<span style="color: #000000;">0</span><br />  <span style="color: #00C800;">for</span> i = <span style="color: #000000;">1</span> <span style="color: #0000ff;">to</span> len<span style="color: #000000;">&#40;</span>aTemp<span style="color: #000000;">&#41;</span><br />     cField = aTemp<span style="color: #000000;">&#91;</span>i<span style="color: #000000;">&#93;</span><br />     <span style="color: #00C800;">if</span> len<span style="color: #000000;">&#40;</span> cField <span style="color: #000000;">&#41;</span> > <span style="color: #000000;">7</span><br />     n++<br />     cField := <span style="color: #0000ff;">substr</span><span style="color: #000000;">&#40;</span> cField, <span style="color: #000000;">1</span>, <span style="color: #000000;">7</span> - len <span style="color: #000000;">&#40;</span> alltrim<span style="color: #000000;">&#40;</span> str<span style="color: #000000;">&#40;</span> n, <span style="color: #000000;">0</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> + ;<br />           padl<span style="color: #000000;">&#40;</span> alltrim<span style="color: #000000;">&#40;</span> str<span style="color: #000000;">&#40;</span> n, <span style="color: #000000;">0</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>, <span style="color: #000000;">2</span>, <span style="color: #ff0000;">"0"</span> <span style="color: #000000;">&#41;</span><br />     <span style="color: #00C800;">endif</span><br />     aTemp<span style="color: #000000;">&#91;</span>i<span style="color: #000000;">&#93;</span> = cField<br />  <span style="color: #00C800;">next</span><br />  <span style="color: #0000ff;">msginfo</span><span style="color: #000000;">&#40;</span>atostr<span style="color: #000000;">&#40;</span>aTemp<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><br /><br /><span style="color: #00C800;">return</span><br /> </div>[/code:irwek2cd] But now, since I have to read dozens of xls regualar, I once match the fields with the headers in a xbrowse, make the dbf and read it. also as third... Read the first line of exel with OLE, changes the headers into the xls and save it. Then use exeltodbf function to generate the dbf If needed one of these, I have some basic code for it
Shortname"" for FIELD of DBF
hi Otto, [quote="Otto":2bkl1k7s]I tried ChatGPT [/quote:2bkl1k7s] Answer from ChatGPT might work ... but a Hash is not "readable" for Human as Marc say to change last 2 Sign (of 10) is enough to make it unique for 99 "Header"
Snap"" for Clipper
Snap outout for FWH window.prg: filelist.doc [code=fw:1xb84c57]<div class="fw" id="{CB}" style="font-family: monospace;">System: <br /><span style="color: #000000;">Author</span>: <br /><span style="color: #000000;">26</span>/<span style="color: #000000;">10</span>/<span style="color: #000000;">11</span>   <span style="color: #000000;">11</span>:<span style="color: #000000;">32</span>:<span style="color: #000000;">11</span><br />File List<br /><br />-------------------------------------------------------------------------------<br /><br />Programs and procedures:<br />  ADDCONTROL<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  AREAD<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>           <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  ASAVE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>           <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  ASYNCSELECT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ATOTEXT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  BRWCLASSES<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  CAPTURE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CGENPRG<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CHECKTOOLTIP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CHILDLEVEL<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CIRCLE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  COMMNOTIFY<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  COORSUPDATE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CTITLE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CTLCOLOR<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CUT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>             <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CVARNAME<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DBUFFEREND<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  DDEACK<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DDEEXECUTE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DDEGETCOMMAND<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DDEINITIATE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DDETERMINATE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DESTROYTOOLTIP<span style="color: #000000;">&#40;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DRAWITEM<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DROPFILES<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DROPOVER<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  EDITTITLE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ENABLEWINDOW<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ENDPAINT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ERASEBKGND<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  EVECOUNT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  EVENT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>           <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  FASTEDIT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  FINDNEXT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  FIRSTACTIVECTRL   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  FLOODFILL<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GENDBF<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GENLOCALS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETALLWIN<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  GETCLIRECT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETDROPINFO<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  GETFONT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETPARENT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETRECT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETWINDOWLONG<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETWNDDEFAULT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  LVALID<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  <span style="color: #00C800;">NEW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>             <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NGETCHRHEIGHT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NMAKELONG<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NWINDOWS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  NWNDCHRHEIGHT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  OREAD<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>           <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  OWNDFROMHWND<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  POSTMESSAGE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  POSTMSG<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SCANPARENTS       <span style="color: #000000;">&#40;</span>procedure in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  SENDMESSAGE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETALPHA<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  SETBALLOON<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  SETCAPTURE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETDROPINFO<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  SETSKINS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  SETWNDDEFAULT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  WNDCENTER<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  WNDCREATEERROR<span style="color: #000000;">&#40;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  WNDMAIN<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  WNDPARENTS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  _BEGINPAINT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  _FWH<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>            <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />  GETDC<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>           <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETDLGCODE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETMINMAXINFO<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETMINMAX<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETWIDTH<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETTEXTWIDTH<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  RELEASEDC<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETTEXT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETWINDOWTEXT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GONEXTCTRL<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GOPREVCTRL<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GOTFOCUS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  BRINGWINDOWTOTO   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GRADIENT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  HANDLEEVENT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  WNDHANDLEEVENT<span style="color: #000000;">&#40;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  HARDCOPY<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NHEIGHT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  HELPTOPIC<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  HELPF1<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  __HELPTOPIC<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SHOWWINDOW<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  <span style="color: #0000ff;">HSCROLL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ICONIZE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CLOSEWINDOW<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ISICONIC<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ISVISIBLE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ISWINDOWVISIBLE   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  INITMENUPOPUP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  INSPECT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  KEYDOWN<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  KEYCHAR<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  LOSTFOCUS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  LASTACTIVECTRL<span style="color: #000000;">&#40;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  LBUTTONDOWN<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  LBUTTONUP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  LDBLCLICK<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  LOADFILE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  MENUCHAR<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  MENUSELECT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  MOVED<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>           <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NCACTIVATE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETFOCUS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NCMOUSEMOVE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  LWHEN<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>           <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  MAXIMIZE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  MBUTTONDOWN<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  MBUTTONUP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  MEASUREITEM<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  MOUSELEAVE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  MOUSEMOVE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  MOUSEWHEEL<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NCPAINT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NWIDTH<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  <span style="color: #0000ff;">PAINT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>           <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  PAINTBACK<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  PALETTECHANGED<span style="color: #000000;">&#40;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  PALCHGEVENT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  PASTE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>           <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  PROPERTY<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  PROPERTIES<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  PROPCOUNT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  QUERYDRAGICON<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  EXTRACTICON<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  QUERYENDSESSION   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  QUERYNEWPALETTE   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  QRYNEWPALEVENT<span style="color: #000000;">&#40;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  RBUTTONDOWN<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  RBUTTONUP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DESTROY<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  REDO<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>            <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  INVALIDATERECT<span style="color: #000000;">&#40;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  REGISTER<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  RESIZE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  READFILE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ULOADOBJECT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SAVEFILE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SAVETOBMP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SAVETORC<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SAVETOTEXT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SAYBITMAP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SAYRECT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SELCOLOR<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CHOOSECOLOR<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SELECTALL<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SENDMSG<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETBOUNDS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETBRUSH<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETCOORS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  __SETFOCUS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SELFONT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETFONT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  TFONT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>           <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CHOOSE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETICON<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETMENU<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETMSG<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETPIXEL<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETSIZE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  WNDSETSIZE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETTEXT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETWINDOWTEXT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SHOWTOOLTIP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SYSCOMMAND<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  TASKBAR<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  <span style="color: #0000ff;">TIMER</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>           <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  TIMEREVENT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  TOOLWINDOW<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  UNLINK<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  UNZIP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>           <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CLIENTEDGE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETWINDOWLONG<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NOR<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>             <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ZIP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>             <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CLASSNAME<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  <span style="color: #0000ff;">VSCROLL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NVERTRES<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETDEVICECAPS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NHORZRES<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  AEVALWHEN<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  VBXFIREEVENT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  VBXEVENT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETSETGWLSTYLE<span style="color: #000000;">&#40;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  WINSTYLE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  WINEXSTYLE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETALPHALEVEL<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NSEETHROCLR<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NOPACITY<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETMODULEHANDLE   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETINSTANCE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETSYSCOLOR<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  TBRUSH<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETCLASSINFO<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  REGISTERCLASS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CREATEWINDOW<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CVALTOCHAR<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETERRMSG<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  _FWGENERROR<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DRAGACCEPTFILES   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SCROLLWINDOW<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETCLIENTRECT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  RELEASECAPTURE<span style="color: #000000;">&#40;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  UPDATEWINDOW<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  LWRUNNING<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETWNDAPP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  WINRUN<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ELLIPSE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NHIWORD<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NLOWORD<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETCLASSNAME<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NPTRWORD<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETCOORS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GLOBALGETATOMNA   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  FWDISPBEGIN<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  FWDISPEND<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETPOPUP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETDRAWMENU<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETMENUITEM<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETDRAWITEM<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  MENUDRAWITEM<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETSKIN<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  MENUDRAW2007<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ISMENUITEM<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ISSEPARATOR<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  MISTEXT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETDLGITEM<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DRAGQUERYPOINT<span style="color: #000000;">&#40;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DRAGQUERYFILES<span style="color: #000000;">&#40;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DRAGFINISH<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  MSGYESNO<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ISZOOMED<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  TRECT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>           <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETWNDRECT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETMEAITEM<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  MENUMEASUREITEM   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ISMISEPARATOR<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  FILLMEASURE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETSUBMENU<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SYSREFRESH<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  WNDHEIGHT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETNMHDRCODE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETNMHDRHWNDFRO   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SELCHANGED<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  WNDWIDTH<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  WNDPRINT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  OSEND<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>           <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  WNDBITMAP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DIBFROMBITMAP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DIBWRITE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GLOBALFREE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DELETEOBJECT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  STRTOKEN<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ISDERIVEDFROM<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ISKINDOF<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NGETFORERGB<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NGETBACKRGB<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETTEXTALIGN<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  WSAY<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>            <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  PALBMPDRAW<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  WSAYRECT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  MOVETO<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  LINETO<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  WNDBOX<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  XCHANGEPROC<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETWNDAPP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  POSTQUITMESSAGE   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DEREGDIALOG<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  VBXTERM<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ADJTOP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ADJBOTTOM<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  <span style="color: #0000ff;">ADJUST</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ADJLEFT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ADJRIGHT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ADJCLIENT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETWINDOWPOS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  RESTPROC<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GOUP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>            <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GODOWN<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>          <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  THUMBPOS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  THUMBTRACK<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  KEYBMODE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  RUNACTION<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DRAWICON<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETBRUSHORGEX<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  FILLRECT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CREATECOMPATIBL   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CREATECOMPATIBL   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SELECTOBJECT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GRADIENTFILL<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CREATEPATTERNBR   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  MOVEWINDOW<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  LAND<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>            <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  INITIATE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETKEYSTATE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  ISCHILD<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NEXTDLGTAB<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETWINDOW<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETFONTINFO<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETSYSFONT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETITEMS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>        <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  MSGSTOP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>         <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CURSORARROW<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>     <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  TRACKMOUSEEVENT   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CLIENTTOSCREEN<span style="color: #000000;">&#40;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  RGB<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>             <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  DESTROYWINDOW<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  CREATETOOLTIP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETCLASSLONG<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETCLASSLONG<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  GETHELPTOPIC<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>    <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  HELPINDEX<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>       <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  BEGINPAINT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>      <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NAND<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>            <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  NNOT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>            <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  SETLAYEREDWINDO   <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br />  IFNIL<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>           <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span>  in ?<span style="color: #000000;">&#41;</span><br /><br />Procedure files:<br />  C:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<br /><br /> </div>[/code:1xb84c57] headings.doc [code=fw:1xb84c57]<div class="fw" id="{CB}" style="font-family: monospace;">*:<span style="color: #000000;">*****************************************************************************</span><br />*:<br /><span style="color: #000000;">*</span>: <span style="color: #000000;">Procedure</span> file: <span style="color: #000000;">C</span>:\TEMP\<span style="color: #0000ff;">WINDOW</span>.PRG<br />*:<br /><span style="color: #000000;">*</span>: &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">System</span>: <br /><span style="color: #000000;">*</span>: &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">Author</span>: <br /><span style="color: #000000;">*</span>: &nbsp; &nbsp; &nbsp;<span style="color: #000000;">Copyright</span> <span style="color: #000000;">&#40;</span>c<span style="color: #000000;">&#41;</span> <span style="color: #000000;">1911</span>, <br />*: &nbsp;<span style="color: #000000;">Last</span> modified: <span style="color: #000000;">07</span>/<span style="color: #000000;">10</span>/<span style="color: #000000;">113</span> &nbsp; &nbsp; <span style="color: #000000;">18</span>:<span style="color: #000000;">11</span><br />*:<br /><span style="color: #000000;">*</span>: &nbsp;<span style="color: #000000;">Procs</span> & Fncts: <span style="color: #000000;">NWINDOWS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETALLWIN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETBALLOON</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETSKINS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">WNDCREATEERROR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ATOTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ASAVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">AREAD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">OREAD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETDROPINFO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETDROPINFO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">WNDMAIN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : _FWH<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">WNDPARENTS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SCANPARENTS</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">OWNDFROMHWND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETALPHA</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DBUFFEREND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">BRWCLASSES</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*:<br /><span style="color: #000000;">*</span>: &nbsp; &nbsp; &nbsp;<span style="color: #000000;">Documented</span> <span style="color: #000000;">26</span>/<span style="color: #000000;">10</span>/<span style="color: #000000;">11</span> <span style="color: #00C800;">at</span> <span style="color: #000000;">11</span>:<span style="color: #000000;">31</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SNAP! &nbsp;version <span style="color: #000000;">5.02</span><br />*:<span style="color: #000000;">*****************************************************************************</span><br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">NWINDOWS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">GETALLWIN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">SETBALLOON</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">SETSKINS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Calls: <span style="color: #000000;">CVARNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #00C800;">NEW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ADDCONTROL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ASYNCSELECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : _BEGINPAINT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CAPTURE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETCAPTURE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">WNDCENTER</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CHECKTOOLTIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CHILDLEVEL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">COMMNOTIFY</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CIRCLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">COORSUPDATE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CTLCOLOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETWINDOWLONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETPARENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SENDMESSAGE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CTITLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CUT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DDEINITIATE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DDEACK</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DDEEXECUTE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DDEGETCOMMAND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">POSTMESSAGE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NMAKELONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DDETERMINATE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DESTROYTOOLTIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ENABLEWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DRAWITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DROPFILES</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DROPOVER</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">EDITTITLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LVALID</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">POSTMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ENDPAINT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ERASEBKGND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">EVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">EVECOUNT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">FASTEDIT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">FINDNEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">FIRSTACTIVECTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">FLOODFILL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GENDBF</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GENLOCALS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CGENPRG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NGETCHRHEIGHT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NWNDCHRHEIGHT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETCLIRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETFONT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETDC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETDLGCODE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETMINMAXINFO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETMINMAX</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETWIDTH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETTEXTWIDTH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">RELEASEDC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETWINDOWTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GONEXTCTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GOPREVCTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GOTFOCUS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">BRINGWINDOWTOTOP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GRADIENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">HANDLEEVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">WNDHANDLEEVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">HARDCOPY</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NHEIGHT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">HELPTOPIC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">HELPF1</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : __HELPTOPIC<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SHOWWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #0000ff;">HSCROLL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ICONIZE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CLOSEWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ISICONIC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ISVISIBLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ISWINDOWVISIBLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">INITMENUPOPUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">INSPECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">KEYDOWN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">KEYCHAR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LOSTFOCUS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LASTACTIVECTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LBUTTONDOWN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LBUTTONUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LDBLCLICK</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LOADFILE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MENUCHAR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MENUSELECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MOVED</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NCACTIVATE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETFOCUS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NCMOUSEMOVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LWHEN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MAXIMIZE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MBUTTONDOWN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MBUTTONUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MEASUREITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MOUSELEAVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MOUSEMOVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MOUSEWHEEL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NCPAINT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NWIDTH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #0000ff;">PAINT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">PAINTBACK</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">PALETTECHANGED</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">PALCHGEVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">PASTE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">PROPERTY</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">PROPERTIES</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">PROPCOUNT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">QUERYDRAGICON</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">EXTRACTICON</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">QUERYENDSESSION</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">QUERYNEWPALETTE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">QRYNEWPALEVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">RBUTTONDOWN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">RBUTTONUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DESTROY</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">REDO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">INVALIDATERECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">REGISTER</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">RESIZE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">READFILE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ULOADOBJECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SAVEFILE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SAVETOBMP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SAVETORC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SAVETOTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SAYBITMAP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SAYRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SELCOLOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CHOOSECOLOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SELECTALL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SENDMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETBOUNDS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETBRUSH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETCOORS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : __SETFOCUS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SELFONT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETFONT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">TFONT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CHOOSE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETICON</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETMENU</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETPIXEL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETSIZE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">WNDSETSIZE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETWINDOWTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SHOWTOOLTIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SYSCOMMAND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">TASKBAR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #0000ff;">TIMER</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">TIMEREVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">TOOLWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">UNLINK</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">UNZIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CLIENTEDGE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETWINDOWLONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ZIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CLASSNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #0000ff;">VSCROLL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NVERTRES</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETDEVICECAPS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NHORZRES</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">AEVALWHEN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">VBXFIREEVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">VBXEVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETSETGWLSTYLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">WINSTYLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">WINEXSTYLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETALPHALEVEL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NSEETHROCLR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NOPACITY</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETMODULEHANDLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETINSTANCE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETSYSCOLOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">TBRUSH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETCLASSINFO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">REGISTERCLASS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CREATEWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">WNDCREATEERROR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">WNDCREATEERROR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp;Called by: <span style="color: #000000;">SETSKINS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Calls: <span style="color: #000000;">CLASSNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CVALTOCHAR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETERRMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : _FWGENERROR<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #00C800;">NEW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETSYSCOLOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">REGISTER</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SENDMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETMENU</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETFONT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DRAGACCEPTFILES</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SCROLLWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETCLIENTRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">RELEASECAPTURE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">AEVALWHEN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SHOWWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">UPDATEWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LWRUNNING</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETWNDAPP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">RESIZE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">WINRUN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ASYNCSELECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CIRCLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETDC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ELLIPSE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">RELEASEDC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NHIWORD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NLOWORD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETCLASSNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">OWNDFROMHWND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SENDMESSAGE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">UNZIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NPTRWORD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ZIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">COORSUPDATE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETCOORS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CTITLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETWINDOWTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DDEINITIATE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GLOBALGETATOMNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NMAKELONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">FWDISPBEGIN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">FWDISPEND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DRAWITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETPOPUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETDRAWMENU</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETMENUITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETDRAWITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MENUDRAWITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETSKIN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MENUDRAW2007</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ISMENUITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ISSEPARATOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MISTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETDLGITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DROPFILES</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DRAGQUERYPOINT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DRAGQUERYFILES</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DRAGFINISH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GENDBF</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MSGYESNO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GENLOCALS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CGENPRG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ISZOOMED</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETCLIRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">TRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETWNDRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MEASUREITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETMEAITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MENUMEASUREITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETTEXTWIDTH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ISMISEPARATOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">FILLMEASURE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MENUCHAR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETSUBMENU</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MENUSELECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SYSREFRESH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NHEIGHT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">WNDHEIGHT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETNMHDRCODE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETNMHDRHWNDFROM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SELCHANGED</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NWIDTH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">WNDWIDTH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">WNDPRINT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">OSEND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ASAVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">ATOTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp;Called by: <span style="color: #000000;">ATOTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Calls: <span style="color: #000000;">ATOTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SAVETOTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SAVETOBMP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">WNDBITMAP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DIBFROMBITMAP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DIBWRITE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GLOBALFREE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DELETEOBJECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SAVETORC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">STRTOKEN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CLASSNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ISDERIVEDFROM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #00C800;">NEW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">OSEND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CVALTOCHAR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ISKINDOF</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">ASAVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp;Called by: <span style="color: #000000;">WNDCREATEERROR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ASAVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Calls: <span style="color: #000000;">ASAVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CVALTOCHAR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">AREAD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp;Called by: <span style="color: #000000;">AREAD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Calls: <span style="color: #000000;">AREAD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">OREAD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">OREAD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp;Called by: <span style="color: #000000;">AREAD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Calls: <span style="color: #00C800;">NEW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SAVEFILE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NGETFORERGB</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NGETBACKRGB</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETDC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETTEXTALIGN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">WSAY</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CVALTOCHAR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">RELEASEDC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SAYBITMAP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">PALBMPDRAW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SAYRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">WSAYRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LBUTTONDOWN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LBUTTONUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LDBLCLICK</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MOVETO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LINETO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">RBUTTONDOWN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">RBUTTONUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MBUTTONDOWN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MBUTTONUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CLASSNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">WNDBOX</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">XCHANGEPROC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DESTROY</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">UNLINK</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETWNDAPP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">POSTQUITMESSAGE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ISKINDOF</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DEREGDIALOG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">VBXTERM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">RESIZE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">COORSUPDATE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ADJTOP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ADJBOTTOM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #0000ff;">ADJUST</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ADJLEFT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ADJRIGHT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ADJCLIENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETBOUNDS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETWINDOWPOS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETCOORS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">RESTPROC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #0000ff;">VSCROLL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NLOWORD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NHIWORD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GOUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GODOWN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">THUMBPOS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">THUMBTRACK</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SENDMESSAGE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">TOOLWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETWINDOWLONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETWINDOWLONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #0000ff;">HSCROLL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SYSCOMMAND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LOSTFOCUS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">KEYBMODE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">RUNACTION</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #0000ff;">PAINT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ISICONIC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SENDMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DRAWICON</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">EXTRACTICON</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">PAINTBACK</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETBRUSHORGEX</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">FILLRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETCLIENTRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GRADIENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CREATECOMPATIBLEDC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CREATECOMPATIBLEBIT</span><span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SELECTOBJECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GRADIENTFILL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">TBRUSH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CREATEPATTERNBRUSH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">HARDCOPY</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SYSREFRESH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MOVEWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">KEYCHAR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LAND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">INITMENUPOPUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">INITIATE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETPOPUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">KEYDOWN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETKEYSTATE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GOPREVCTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GONEXTCTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ISCHILD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">SETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp;Called by: <span style="color: #000000;">WNDCREATEERROR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">GETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp;Called by: <span style="color: #000000;">GETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Calls: <span style="color: #000000;">GOTFOCUS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETCLASSNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NEXTDLGTAB</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GONEXTCTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CLASSNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GOPREVCTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">OWNDFROMHWND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETFONT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SENDMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETFONTINFO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">TFONT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETTEXTWIDTH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETSYSFONT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">AEVALWHEN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETFONT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : __SETFOCUS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LWHEN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">OSEND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">AREAD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETMENU</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">OREAD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETITEMS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LOADFILE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MSGSTOP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LOSTFOCUS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MOUSELEAVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">MOUSEMOVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CURSORARROW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CHECKTOOLTIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">TRACKMOUSEEVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CLIENTTOSCREEN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">ISVISIBLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETPARENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SHOWTOOLTIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NHEIGHT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">RGB</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DESTROYWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CREATETOOLTIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SENDMESSAGE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETCLASSLONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETCLASSLONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DESTROYTOOLTIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NCMOUSEMOVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">COMMNOTIFY</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : __HELPTOPIC<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">HELPTOPIC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETHELPTOPIC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">HELPINDEX</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">DROPOVER</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETDROPINFO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : _BEGINPAINT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">BEGINPAINT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">SETDROPINFO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">GETDROPINFO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp;Called by: <span style="color: #000000;">GETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">WNDMAIN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Calls: <span style="color: #000000;">GETWNDAPP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: _FWH<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Calls: <span style="color: #000000;">HANDLEEVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LASTACTIVECTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">CLASSNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LAND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETWINDOWLONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">EDITTITLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">FASTEDIT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">FIRSTACTIVECTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETSETGWLSTYLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETWINDOWLONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NAND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NNOT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">NOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETALPHALEVEL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">SETLAYEREDWINDOWATT</span><span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">IFNIL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">WNDPARENTS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Calls: <span style="color: #000000;">SCANPARENTS</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span>procedure in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp;Procedure: <span style="color: #000000;">SCANPARENTS</span><br />*!<br />*! &nbsp; &nbsp; &nbsp;Called by: <span style="color: #000000;">WNDPARENTS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Calls: <span style="color: #000000;">GETPARENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETCLASSNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">LAND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETWINDOWLONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">OWNDFROMHWND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp;Called by: <span style="color: #000000;">WNDCREATEERROR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span style="color: #000000;">GETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">SETALPHA</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">DBUFFEREND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Calls: <span style="color: #000000;">FWDISPEND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br /><br />*!*****************************************************************************<br />*!<br />*! &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">Function</span>: <span style="color: #000000;">BRWCLASSES</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />*!<br />*!*****************************************************************************<br />&nbsp;</div>[/code:1xb84c57]
Snap"" for Clipper
Y aqui snap: [url:2jjveess]http&#58;//www&#46;the-oasis&#46;net/files/utils/snp502&#46;zip[/url:2jjveess]
Snap"" for Clipper
Do you have "Snap" for Clipper ? I would like to review the kind of output that "Snap" produced from PRGs, thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> It seems as there was also a "documentor" from Wallsoft and another named "TechWriter"
Snap"" for Clipper
Tienes "Snap" para Clipper ? Me gustaría revisar el formato de la información que "Snap" producía a partir de los PRGs, gracias <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Parece que tambien existía un "documentor" producido por Wallsoft y otro llamado "TechWriter"
Snap"" for Clipper
[url:2ptwc78x]https&#58;//code&#46;google&#46;com/p/harbourclick/[/url:2ptwc78x]
Snap"" for Clipper
prcsumry.doc [code=fw:1pueohhy]<div class="fw" id="{CB}" style="font-family: monospace;">System: <br /><span style="color: #000000;">Author</span>: <br /><span style="color: #000000;">26</span>/<span style="color: #000000;">10</span>/<span style="color: #000000;">11</span> &nbsp; <span style="color: #000000;">11</span>:<span style="color: #000000;">32</span>:<span style="color: #000000;">10</span><br />Procedure and <span style="color: #00C800;">Function</span> Summary<br /><br />-------------------------------------------------------------------------------<br /><br /><span style="color: #000000;">1</span> files containing procedures in the system<br />&nbsp; &nbsp;<span style="color: #0000ff;">WINDOW</span>.PRG<br />-------------------------------------------------------------------------------<br /><br /><span style="color: #0000ff;">WINDOW</span>.PRG -- Last updated: &nbsp;<span style="color: #000000;">07</span>/<span style="color: #000000;">10</span>/<span style="color: #000000;">113</span> <span style="color: #00C800;">at</span> <span style="color: #000000;">18</span>:<span style="color: #000000;">11</span><br /><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">NWINDOWS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span>Params: <span style="color: #000000;">&#41;</span> ; <span style="color: #00C800;">RETURN</span> LEN<span style="color: #000000;">&#40;</span> AWINDOWS <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">GETALLWIN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span>Params: <span style="color: #000000;">&#41;</span> ; <span style="color: #00C800;">RETURN</span> AWINDOWS<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">SETBALLOON</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span>Params: &nbsp;<span style="color: #000000;">LONOFF</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">SETSKINS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span>Params: &nbsp;<span style="color: #000000;">LONOFF</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CVARNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #00C800;">NEW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ADDCONTROL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ASYNCSELECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: _BEGINPAINT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CAPTURE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETCAPTURE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">WNDCENTER</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CHECKTOOLTIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CHILDLEVEL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">COMMNOTIFY</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CIRCLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">COORSUPDATE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CTLCOLOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETWINDOWLONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETPARENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SENDMESSAGE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CTITLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CUT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DDEINITIATE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DDEACK</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DDEEXECUTE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DDEGETCOMMAND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">POSTMESSAGE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NMAKELONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DDETERMINATE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DESTROYTOOLTIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ENABLEWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DRAWITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DROPFILES</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DROPOVER</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">EDITTITLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LVALID</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">POSTMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ENDPAINT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ERASEBKGND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">EVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">EVECOUNT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">FASTEDIT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">FINDNEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">FIRSTACTIVECTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">FLOODFILL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GENDBF</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GENLOCALS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CGENPRG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NGETCHRHEIGHT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NWNDCHRHEIGHT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETCLIRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETFONT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETDC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETDLGCODE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETMINMAXINFO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETMINMAX</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETWIDTH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETTEXTWIDTH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">RELEASEDC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETWINDOWTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GONEXTCTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GOPREVCTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GOTFOCUS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">BRINGWINDOWTOTOP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GRADIENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">HANDLEEVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">WNDHANDLEEVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">HARDCOPY</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NHEIGHT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">HELPTOPIC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">HELPF1</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: __HELPTOPIC<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SHOWWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #0000ff;">HSCROLL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ICONIZE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CLOSEWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ISICONIC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ISVISIBLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ISWINDOWVISIBLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">INITMENUPOPUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">INSPECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">KEYDOWN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">KEYCHAR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LOSTFOCUS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LASTACTIVECTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LBUTTONDOWN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LBUTTONUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LDBLCLICK</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LOADFILE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MENUCHAR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MENUSELECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MOVED</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NCACTIVATE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETFOCUS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NCMOUSEMOVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LWHEN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MAXIMIZE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MBUTTONDOWN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MBUTTONUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MEASUREITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MOUSELEAVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MOUSEMOVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MOUSEWHEEL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NCPAINT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NWIDTH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #0000ff;">PAINT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">PAINTBACK</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">PALETTECHANGED</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">PALCHGEVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">PASTE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">PROPERTY</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">PROPERTIES</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">PROPCOUNT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">QUERYDRAGICON</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">EXTRACTICON</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">QUERYENDSESSION</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">QUERYNEWPALETTE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">QRYNEWPALEVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">RBUTTONDOWN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">RBUTTONUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DESTROY</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">REDO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">INVALIDATERECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">REGISTER</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">RESIZE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">READFILE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ULOADOBJECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SAVEFILE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SAVETOBMP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SAVETORC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SAVETOTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SAYBITMAP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SAYRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SELCOLOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CHOOSECOLOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SELECTALL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SENDMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETBOUNDS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETBRUSH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETCOORS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: __SETFOCUS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SELFONT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETFONT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">TFONT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CHOOSE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETICON</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETMENU</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETPIXEL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETSIZE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">WNDSETSIZE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETWINDOWTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SHOWTOOLTIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SYSCOMMAND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">TASKBAR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #0000ff;">TIMER</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">TIMEREVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">TOOLWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">UNLINK</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">UNZIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CLIENTEDGE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETWINDOWLONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ZIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CLASSNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #0000ff;">VSCROLL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NVERTRES</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETDEVICECAPS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NHORZRES</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">AEVALWHEN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">VBXFIREEVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">VBXEVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETSETGWLSTYLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">WINSTYLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">WINEXSTYLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETALPHALEVEL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NSEETHROCLR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NOPACITY</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETMODULEHANDLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETINSTANCE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETSYSCOLOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">TBRUSH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETCLASSINFO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">REGISTERCLASS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CREATEWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">WNDCREATEERROR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">WNDCREATEERROR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span>Params: &nbsp;<span style="color: #00C800;">SELF</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; Called by: <span style="color: #000000;">SETSKINS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CLASSNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CVALTOCHAR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETERRMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: _FWGENERROR<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #00C800;">NEW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETSYSCOLOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">REGISTER</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SENDMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETMENU</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETFONT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DRAGACCEPTFILES</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SCROLLWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETCLIENTRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">RELEASECAPTURE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">AEVALWHEN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SHOWWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">UPDATEWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LWRUNNING</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETWNDAPP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">RESIZE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">WINRUN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ASYNCSELECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CIRCLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETDC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ELLIPSE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">RELEASEDC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NHIWORD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NLOWORD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETCLASSNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">OWNDFROMHWND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SENDMESSAGE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">UNZIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NPTRWORD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ZIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">COORSUPDATE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETCOORS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CTITLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETWINDOWTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DDEINITIATE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GLOBALGETATOMNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NMAKELONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">FWDISPBEGIN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">FWDISPEND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DRAWITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETPOPUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETDRAWMENU</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETMENUITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETDRAWITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MENUDRAWITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETSKIN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MENUDRAW2007</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ISMENUITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ISSEPARATOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MISTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETDLGITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DROPFILES</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DRAGQUERYPOINT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DRAGQUERYFILES</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DRAGFINISH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GENDBF</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MSGYESNO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GENLOCALS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CGENPRG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ISZOOMED</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETCLIRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">TRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETWNDRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MEASUREITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETMEAITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MENUMEASUREITEM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETTEXTWIDTH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ISMISEPARATOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">FILLMEASURE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MENUCHAR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETSUBMENU</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MENUSELECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SYSREFRESH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NHEIGHT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">WNDHEIGHT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETNMHDRCODE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETNMHDRHWNDFROM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SELCHANGED</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NWIDTH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">WNDWIDTH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">WNDPRINT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">OSEND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ASAVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">ATOTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span>Params: &nbsp;<span style="color: #000000;">AARRAY</span>, CARRAYNAME, NINDENT <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; Called by: <span style="color: #000000;">ATOTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ATOTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SAVETOTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SAVETOBMP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">WNDBITMAP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DIBFROMBITMAP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DIBWRITE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GLOBALFREE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DELETEOBJECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SAVETORC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">STRTOKEN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CLASSNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ISDERIVEDFROM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #00C800;">NEW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">OSEND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CVALTOCHAR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ISKINDOF</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">ASAVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span>Params: &nbsp;<span style="color: #000000;">AARRAY</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; Called by: <span style="color: #000000;">WNDCREATEERROR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; Called by: <span style="color: #000000;">ASAVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ASAVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CVALTOCHAR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">AREAD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span>Params: &nbsp;<span style="color: #000000;">CINFO</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; Called by: <span style="color: #000000;">AREAD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; Called by: <span style="color: #000000;">GETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">AREAD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">OREAD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">OREAD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span>Params: &nbsp;<span style="color: #000000;">CINFO</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; Called by: <span style="color: #000000;">AREAD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; Called by: <span style="color: #000000;">GETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #00C800;">NEW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SAVEFILE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NGETFORERGB</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NGETBACKRGB</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETDC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETTEXTALIGN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">WSAY</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CVALTOCHAR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">RELEASEDC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SAYBITMAP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">PALBMPDRAW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SAYRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">WSAYRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LBUTTONDOWN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LBUTTONUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LDBLCLICK</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MOVETO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LINETO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">RBUTTONDOWN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">RBUTTONUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MBUTTONDOWN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MBUTTONUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CLASSNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">WNDBOX</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">XCHANGEPROC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DESTROY</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">UNLINK</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETWNDAPP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">POSTQUITMESSAGE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ISKINDOF</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DEREGDIALOG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">VBXTERM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">RESIZE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">COORSUPDATE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ADJTOP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ADJBOTTOM</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #0000ff;">ADJUST</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ADJLEFT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ADJRIGHT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ADJCLIENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETBOUNDS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETWINDOWPOS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETCOORS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">RESTPROC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #0000ff;">VSCROLL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NLOWORD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NHIWORD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GOUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GODOWN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">THUMBPOS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">THUMBTRACK</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SENDMESSAGE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">TOOLWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETWINDOWLONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETWINDOWLONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #0000ff;">HSCROLL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SYSCOMMAND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LOSTFOCUS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">KEYBMODE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">RUNACTION</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #0000ff;">PAINT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ISICONIC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SENDMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DRAWICON</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">EXTRACTICON</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">PAINTBACK</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETBRUSHORGEX</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">FILLRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETCLIENTRECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GRADIENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CREATECOMPATIBLEDC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CREATECOMPATIBLEBITMAP</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SELECTOBJECT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GRADIENTFILL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">TBRUSH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CREATEPATTERNBRUSH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">HARDCOPY</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SYSREFRESH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MOVEWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">KEYCHAR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LAND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">INITMENUPOPUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">INITIATE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETPOPUP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">KEYDOWN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETKEYSTATE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GOPREVCTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GONEXTCTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ISCHILD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">SETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span>Params: &nbsp;<span style="color: #000000;">OWND</span> <span style="color: #000000;">&#41;</span> ; OWNDDEFAULT := OWND ; <span style="color: #00C800;">RETURN</span> <span style="color: #00C800;">NIL</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; Called by: <span style="color: #000000;">WNDCREATEERROR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">GETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span>Params: <span style="color: #000000;">&#41;</span> ; <span style="color: #00C800;">RETURN</span> OWNDDEFAULT<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; Called by: <span style="color: #000000;">GETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GOTFOCUS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETCLASSNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NEXTDLGTAB</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GONEXTCTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CLASSNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GOPREVCTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">OWNDFROMHWND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETFONT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SENDMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETFONTINFO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">TFONT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETTEXTWIDTH</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETSYSFONT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">AEVALWHEN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETFONT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: __SETFOCUS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LWHEN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">OSEND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">AREAD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETMENU</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">OREAD</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETITEMS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LOADFILE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MSGSTOP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LOSTFOCUS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MOUSELEAVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">MOUSEMOVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CURSORARROW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETMSG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CHECKTOOLTIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">TRACKMOUSEEVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CLIENTTOSCREEN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">ISVISIBLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETPARENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SHOWTOOLTIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NHEIGHT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">RGB</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DESTROYWINDOW</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CREATETOOLTIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SENDMESSAGE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETCLASSLONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETCLASSLONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DESTROYTOOLTIP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NCMOUSEMOVE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">COMMNOTIFY</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: __HELPTOPIC<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">HELPTOPIC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETHELPTOPIC</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">HELPINDEX</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">DROPOVER</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETDROPINFO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: _BEGINPAINT<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">BEGINPAINT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">SETDROPINFO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span>Params: &nbsp;<span style="color: #000000;">UINFO</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">GETDROPINFO</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span>Params: <span style="color: #000000;">none</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; Called by: <span style="color: #000000;">GETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">WNDMAIN</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span>Params: <span style="color: #000000;">none</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETWNDAPP</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: _FWH<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span>Params: &nbsp;<span style="color: #000000;">HWND</span>, NMSG, NWPARAM, NLPARAM, NAT <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">HANDLEEVENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LASTACTIVECTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">CLASSNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LAND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETWINDOWLONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">EDITTITLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETTEXT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">FASTEDIT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">FIRSTACTIVECTRL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETSETGWLSTYLE</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETWINDOWLONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NAND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NNOT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">NOR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETALPHALEVEL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SETLAYEREDWINDOWATTRIB</span> &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">IFNIL</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">WNDPARENTS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span>Params: &nbsp;<span style="color: #000000;">XWND1</span>, XWND2 <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">SCANPARENTS</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span>procedure in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">SCANPARENTS</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span>Params: &nbsp;<span style="color: #000000;">XWND</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; Called by: <span style="color: #000000;">WNDPARENTS</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETPARENT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETCLASSNAME</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">LAND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">GETWINDOWLONG</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">OWNDFROMHWND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span>Params: &nbsp;<span style="color: #000000;">HWND</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; Called by: <span style="color: #000000;">WNDCREATEERROR</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; Called by: <span style="color: #000000;">GETWNDDEFAULT</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in <span style="color: #0000ff;">WINDOW</span>.PRG<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">SETALPHA</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span>Params: &nbsp;<span style="color: #000000;">LONOFF</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">DBUFFEREND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span>Params: &nbsp;<span style="color: #000000;">HDC</span>, ARESTORE <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Calls: <span style="color: #000000;">FWDISPEND</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#40;</span><span style="color: #00C800;">function</span> &nbsp;in ?<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Contains: <span style="color: #000000;">BRWCLASSES</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#40;</span>Params: &nbsp;<span style="color: #000000;">CADDCLASS</span> <span style="color: #000000;">&#41;</span><br /><br /><br />-------------------------------------------------------------------------------<br />&nbsp;</div>[/code:1pueohhy]
Snap"" for Clipper
xref.doc [quote:23l0k2s6]Author: 26/10/11   11:32:10 Token Cross-Reference Report ------------------------------------------------------------------------------- 767 tokens are included in this report. Legend for context symbols:    (blank) reference does not change the variable or field value.    = variable or field is changed in an assignment statement.    ! PROCEDURE or FUNCTION statement.    x token is released.    A array is declared.    G GET or MENU statement changes variable or field.    P variable is declared PUBLIC.    R field is replaced.    U database is USEd    V variable is declared PRIVATE.    & variable is referenced in a macro--takes precedence over all others.    @ variable passed as a var parameter    ? reference is of unknown type. File types appear next to tokens that are used as file names.  Some of these tokens may also be used in other ways.                        WINDOW.PRG     1906& 2064& 2350& 0XFFFFFF                WINDOW.PRG     3994 AARRAY                  WINDOW.PRG     1975! 1980  1981  1985  1989  1993  1996  1999  2161! 2166                   2167  2170  2173  2176  2181  2199  2203  2207  2218  2221                   2224  2227  2230  2233  2237 ACONTROLS              WINDOW.PRG      444   496   496   497   887  1149  1589  1590  1647  1649                   1746  1747  2048  2049  2050  2848  2856  2864  2870  2871                   3238  3244  3244  3245  3338  3338  3340  3340  3341  3342                   3342  3343  3344  3346  3848  3852  3856  3857  3858  3859                   3859  3860  3863  3866  3867  3868  3875  3926  3927  3930                   3931  3932  3933  3933  3934  3934  3935  3938  3941  3942                   3943  3950 ACOORS                  WINDOW.PRG     1537  1540  1541  1541 ACTION                  WINDOW.PRG     3897  3899 ADDCONTROL()           (function  in ?)    WINDOW.PRG      495 ADIALOGS                WINDOW.PRG     3239  3239  3288 ADJBOTTOM()            (function  in ?)    WINDOW.PRG     2641 ADJCLIENT()            (function  in ?)    WINDOW.PRG     2659 ADJLEFT()              (function  in ?)    WINDOW.PRG     2652 ADJRIGHT()             (function  in ?)    WINDOW.PRG     2655 ADJTOP()               (function  in ?)    WINDOW.PRG     2638 ADJUST()               (function  in ?)    WINDOW.PRG     2645  2648 AEVALWHEN()            (function  in ?)    WINDOW.PRG      904  1325  3336 AEVENTS                WINDOW.PRG      475   579   581  1932  1933  1934  1935  1936  2113  2114                   2115  2116 AGRADCOLORS            WINDOW.PRG      457   635   852  2952  2956  2956  2958  2966 AINFO                  WINDOW.PRG     1470  1472  1473  1475  2911  2922  2931  3300  3312  3316                   3317  3318  3319  3322 AITEMS                  WINDOW.PRG     1768  1769  1770  1771  3438 AMINMAXINFO            WINDOW.PRG      445   617   618 APARENT1                WINDOW.PRG     4019  4022  4025  4028 APARENT2                WINDOW.PRG     4019  4023  4028 APOINT                  WINDOW.PRG     3534  3539  3540  3541  3541 APROPERTIES            WINDOW.PRG      465   469   742   747  1157  1911  1912  1913  1914  1915                   2079  2083  2084  2089  2093  2094  2097  2106 AREAD()                (function  in WINDOW.PRG)    WINDOW.PRG     2196! 2218  3406 ARECT                  WINDOW.PRG     1425  1427  1428  1429  1430  1699  1701  1701  1701  1701                   1707  1709  1709  1709  1709 ARESTORE                WINDOW.PRG      558  1479  1481  1482  4146! 4148  4149 ARET                    WINDOW.PRG     3831  3836  3837  3839 ASAVE()                (function  in WINDOW.PRG)    WINDOW.PRG     1920  2161! 2170 ASYNCSELECT()          (function  in ?)    WINDOW.PRG      499  1352 ATOOLTIP                WINDOW.PRG     3592 ATOTEXT()              (function  in WINDOW.PRG)    WINDOW.PRG     1975! 1996  2097 AWINDOWS                WINDOW.PRG      169   189!  195! 1175  2550  2556  2558  2559  2700  2708                   2709  3798  3800  3834  4111  4114 AWND                    WINDOW.PRG     2854  2855  2856  4051  4086  4097 BCLRGRAD                WINDOW.PRG      442 BCOMMNOTIFY            WINDOW.PRG      428  3696  3697 BCOPY                  WINDOW.PRG      431   526   526 BCUT                    WINDOW.PRG      431   537   537 BDDEEXECUTE            WINDOW.PRG      427   544   545 BDDEINIT                WINDOW.PRG      427  1451  1455 BDELETE                WINDOW.PRG      432   550   550 BDOWN                  WINDOW.PRG      491  1211  1287  1288 BDROPFILES              WINDOW.PRG      427   492  1212  1226  1227  1227  1539  1541 BDROPOVER              WINDOW.PRG      428  3733  3734 BEGINPAINT()           (function  in ?)    WINDOW.PRG      501  3751 BERASEBKGND            WINDOW.PRG      452  2923  2924 BFIND                  WINDOW.PRG      431   585   585 BFINDNEXT              WINDOW.PRG      432   587   587 BGODOWN                WINDOW.PRG     1288  1291  1311  1314 BGOTFOCUS              WINDOW.PRG      427  3232  3233 BGOUP                  WINDOW.PRG     1281  1284  1304  1307 BINIT                  WINDOW.PRG      424   490  1211  1336  1337 BITMAP                  WINDOW.PRG     2399 BKEYACTION              WINDOW.PRG     2843  2890  2891  3051  3053  3054  3099  3124  3125 BKEYCHAR                WINDOW.PRG      426  3057  3058 BKEYDOWN                WINDOW.PRG      424   490  1211  3138  3139 BLBUTTONUP              WINDOW.PRG      424   493  1213  2443  2444 BLCLICKED              WINDOW.PRG      424   489  1210  1243  1246  1246  1248  1248  1251  1251                   2428  2429 BLDBLCLICK              WINDOW.PRG      426  2453  2454 BLEFT                  WINDOW.PRG      492  1212  1303  1304 BLOSTFOCUS              WINDOW.PRG      427   694   696  3478  3479 BMBUTTONDOWN            WINDOW.PRG      425  2494  2495 BMBUTTONUP              WINDOW.PRG      425  2504  2505 BMENUSELECT            WINDOW.PRG      428  1811  1812 BMLEAVE                WINDOW.PRG      426  3493  3494 BMMOVED                WINDOW.PRG      426  3522  3523 BMOUSEWHEEL            WINDOW.PRG      425   716   716 BMOVED                  WINDOW.PRG      424   489   691   691  1210 BN_CLICKED              WINDOW.PRG     1398 BPAGEDOWN              WINDOW.PRG     1298  1321 BPAGEUP                WINDOW.PRG     1295  1318 BPAINTED                WINDOW.PRG      424   489  1210  1231  1234  1234  1236  1236  1239  1239                   2928  2929 BPASTE                  WINDOW.PRG      431   735   735 BPGDN                  WINDOW.PRG      491 BPGDOWN                WINDOW.PRG     1211  1297  1298 BPGLEFT                WINDOW.PRG      492  1212  1317  1318 BPGRIGHT                WINDOW.PRG      492  1212  1320  1321 BPGUP                  WINDOW.PRG      491  1211  1294  1295 BPRINT                  WINDOW.PRG      431  1879  1880 BPROPERTIES            WINDOW.PRG      432   744   745 BRBUTTONUP              WINDOW.PRG      425  2484  2485 BRCLICKED              WINDOW.PRG      425   489  1210  1255  1258  1258  1260  1260  1263  1263                   2474  2475 BREDO                  WINDOW.PRG      432   763   763 BREPLACE                WINDOW.PRG      432   778   778 BRESIZED                WINDOW.PRG      426   489  1210  2666  2667 BRIGHT                  WINDOW.PRG      492  1212  1310  1311 BRINGWINDOWTOTOP()     (function  in ?)    WINDOW.PRG      633 BRWCLASSES()           (function  in WINDOW.PRG)    WINDOW.PRG     4160! BSELECTALL              WINDOW.PRG      432   805   805 BSOCKET                WINDOW.PRG      452  1354  1355 BTASKBAR                WINDOW.PRG      452   866   867 BUNDO                  WINDOW.PRG      432   873   873 BUNZIP                  WINDOW.PRG      428   878   878 BUP                    WINDOW.PRG      491  1211  1280  1281 BUTTON                  WINDOW.PRG     3897  3899 BVALID                  WINDOW.PRG      426   492   891   891  1212  1222  1223  1223 BWHEN                  WINDOW.PRG      426   700   700  3342  3343 BZIP                    WINDOW.PRG      428   885   885 CADDCLASS              WINDOW.PRG     4160! 4162  4162  4163 CANNOTCREATE_WINDOW_    WINDOW.PRG     1107 CAPTURE()              (function  in ?)    WINDOW.PRG      505 CARGO                  WINDOW.PRG      435 CARRAYNAME              WINDOW.PRG     1975! 1984  1988  1992  1996  1999  2002 CBMPFILE                WINDOW.PRG      784  2011  2016  2020 CBORDER                WINDOW.PRG      486  1115  1123  1128  1129 CBRWCLASSLIST          WINDOW.PRG      180  4080  4162  4163  4166 CBUFFER                WINDOW.PRG     2199  2211  2218  2221  2224  2227  2230  2233  3388  3401                   3406  3410  3412  3418  3420  3423  3430  3433 CCAPTION                WINDOW.PRG      434   855   964   974   980  1101  1143  1440  2036  2044                   3884  3887 CCLASSNAME              WINDOW.PRG     2074  2343  2348  2350  4052  4061  4080  4087  4091 CCLSNAME                WINDOW.PRG      528   962   964   974   980 CDATA                  WINDOW.PRG      665  3388  3396  3406  3409  3412  3416  3418  3420  3423                   3425  3430  3433 CDBFNAME                WINDOW.PRG     1550  1552  1556  1557  1563 CENTERED                WINDOW.PRG     3901 CFACENAME              WINDOW.PRG     2045  3319 CFILENAME              WINDOW.PRG      598   682   776   776   782  1597  1664  1665  2359  2361                   2363  3445  3449  3451  3452  3456 CGENPRG()              (function  in ?)    WINDOW.PRG      598  1597  1620  1639  1649  1659 CHECKTOOLTIP()         (function  in ?)    WINDOW.PRG      510  3511  3532 CHILDLEVEL()           (function  in ?)    WINDOW.PRG      512   512 CHOOSE()               (function  in ?)    WINDOW.PRG      826 CHOOSECOLOR()          (function  in ?)    WINDOW.PRG      801   802 CINFO                  WINDOW.PRG      681  1099  1104  1107  1905  1914  1920  1923  1926  1935                   1938  1945  1947  2062  2071  2089  2090  2094  2097  2098                   2099  2103  2106  2107  2116  2117  2138  2146  2164  2170                   2173  2176  2181  2181  2196! 2201  2208  2209  2211  2341!                   2346  2348  2353  3385  3390  3394  3396  3398  3399  3401                   3447  3456  3457  3459 CIRCLE()               (function  in ?)    WINDOW.PRG      521  1362 CLASS                  WINDOW.PRG      420   469   923   962  1116  1213  1352  1362  1372  1423                   1436  1447  1468  1479  1488  1535  1550  1585  1597  1697G                   1705G 1713  1754  1785  1819  1835  1857  1873  1902  2011                   2034  2060  2359  2368  2394  2414  2426  2436  2451  2461                   2472  2482  2492  2502  2512  2538  2548  2571  2632  2674                   2683  2698  2716  2773  2786  2841  2909  2938  2952  2981                   3004  3020  3049  3069  3097  3228  3256  3273  3298G 3336                   3356  3375  3385  3445  3465  3486  3501  3532  3590  3650                   3658  3672  3694  3704  3731  3741  3846  3882  3907  3921                   3957  3978 CLASSDATA              WINDOW.PRG      459   461   462   465   475 CLASSNAME()            (function  in ?)    WINDOW.PRG      888   945   947   950   964  1100  1232  1244  1256  1269                   1283  1290  1306  1313  1906  1945  1946  1947  2064  2073                   2074  2074  2518  3260  3278  3437  3712  3856  3858  3931                   3933 CLIENTEDGE()           (function  in ?)    WINDOW.PRG      880 CLIENTTOSCREEN()       (function  in ?)    WINDOW.PRG     3540 CLOCALS                WINDOW.PRG     1587  1590  1593 CLOSEWINDOW()          (function  in ?)    WINDOW.PRG      657 CLR_BLACK              WINDOW.PRG     2416 CLR_WHITE              WINDOW.PRG     2416 CMETHOD                WINDOW.PRG     1905  1934  1938  1938  2063  2115  2117 CMSG                    WINDOW.PRG      434  1807  3509 CMSGDEF                WINDOW.PRG     1644  2524 CNAME                  WINDOW.PRG      471   472 CNEWTITLE              WINDOW.PRG      535  1436  1438  1439  1440 COBITMAP                WINDOW.PRG      795  2394  2396  2399  2399  2402  2402  2407 COLDTITLE              WINDOW.PRG     3884G 3899 COLOR_WINDOWTEXT        WINDOW.PRG     1120G COMMNOTIFY()           (function  in ?)    WINDOW.PRG      519  3694 CONSTRUCTOR            WINDOW.PRG      487 COORSUPDATE()          (function  in ?)    WINDOW.PRG      523   851  1423  1554  1603  2634  3014 CPARAMS1                WINDOW.PRG     2065 CPARAMS2                WINDOW.PRG     2065 CPRG                    WINDOW.PRG     1599  1605  1606  1607  1609  1612  1616  1620  1623  1631                   1635  1639  1643  1648  1649  1652  1653  1654  1657  1658                   1659  1660  1661  1665  1668 CPROMPT                WINDOW.PRG     1509  1509  1515  1515  1733  1734  1736  1736  1737  1769                   1770  1771 CPS                    WINDOW.PRG      434   575   575  2929  3743  3751  3752  3752 CRC                    WINDOW.PRG     2036  2038  2039  2040  2041  2043  2044  2045  2046  2050                   2054  2056 CREATECOMPATIBLEBITM    WINDOW.PRG     2963 CREATECOMPATIBLEDC()   (function  in ?)    WINDOW.PRG     2962 CREATEPATTERNBRUSH()   (function  in ?)    WINDOW.PRG     2971 CREATETOOLTIP()        (function  in ?)    WINDOW.PRG     3611 CREATEWINDOW()         (function  in ?)    WINDOW.PRG      974   980 CRLF                    WINDOW.PRG     1100  1104  1557  1558  1605  1605  1607  1607  1609  1612                   1616  1620  1620  1623  1624  1631  1635  1639  1643  1644                   1648  1652  1652  1652  1653  1653  1657  1657  1657  1658                   1658  1659  1660  1660  1985  1989  1993  1996  1999  1999                   2003  2041  2043  2044  2045  2046  2050  2054  2075  2075                   2090  2095  2095  2098  2098  2099  2103  2107  2117  2138 CSHOW                  WINDOW.PRG      489  1210  1217  1327 CS_GLOBALCLASS          WINDOW.PRG      943 CS_HREDRAW              WINDOW.PRG      939 CS_VREDRAW              WINDOW.PRG      939 CTEXT                  WINDOW.PRG      620   620   622   792   797   843   854   855   856  1977                   1984  1985  1988  1989  1992  1993  1996  1999  2002  2003                   2007  2367  2386  2414  2419  2512  2524  2526  2530 CTITLE()               (function  in ?)    WINDOW.PRG      484   535   566  1113  1143  1436  1624  2988  2990  3882                   3886  3887  3889  3889  3894  3897  3903 CTLCOLOR()             (function  in ?)    WINDOW.PRG      530 CTOOLTIP                WINDOW.PRG      434   862  3550  3556  3590  3595  3595  3599  3600  3600                   3611  3611  3611  3614  3615  3616  3618  3618  3619  3619                   3621  3622  3623  3625  3626  3627 CTRL                    WINDOW.PRG     3238  3238  3239  3239 CTYPE                  WINDOW.PRG     1905  1917  1919  1922  1926  1977  1981  1983  1987  1991                   1995  1998  2001  2062  2086  2088  2092  2102  2163  2167                   2169  2172  2176  2199  2208  2217  2220  2223  2226  2229                   2232  2396  2398  2406  3388  3398  3405  3408  3415  3429                   3432 CURSORARROW()          (function  in ?)    WINDOW.PRG     3506 CUT()                  (function  in ?)    WINDOW.PRG      537 CVALTOCHAR()           (function  in ?)    WINDOW.PRG     1101  1926  2107  2176  2386 CVARNAME()             (function  in ?)    WINDOW.PRG      434   471   472   472  1116  1175  1177  1177  1587  1624                   1652  1653  2069  2072  2361  3426 DBUFFEREND()           (function  in WINDOW.PRG)    WINDOW.PRG     4146! DDEACK()               (function  in ?)    WINDOW.PRG      541   541 DDEEXECUTE()           (function  in ?)    WINDOW.PRG      543 DDEGETCOMMAND()        (function  in ?)    WINDOW.PRG      545 DDEINITIATE()          (function  in ?)    WINDOW.PRG      539  1447 DDETERMINATE()         (function  in ?)    WINDOW.PRG      548   548 DELETEOBJECT()         (function  in ?)    WINDOW.PRG     2018 DEREGDIALOG()          (function  in ?)    WINDOW.PRG     2615 DESTROY()              (function  in ?)    WINDOW.PRG      761  2571  2594  2600  2603 DESTROYTOOLTIP()       (function  in ?)    WINDOW.PRG      552  3658 DESTROYWINDOW()        (function  in ?)    WINDOW.PRG     3609 DIALOG                  WINDOW.PRG     3892  3901 DIBFROMBITMAP()        (function  in ?)    WINDOW.PRG     2014 DIBWRITE()             (function  in ?)    WINDOW.PRG     2016 DLL                    WINDOW.PRG     2628 DRAGACCEPTFILES()      (function  in ?)    WINDOW.PRG     1228 DRAGFINISH()           (function  in ?)    WINDOW.PRG     1544 DRAGQUERYFILES()       (function  in ?)    WINDOW.PRG     1541 DRAGQUERYPOINT()       (function  in ?)    WINDOW.PRG     1540 DRAWICON()             (function  in ?)    WINDOW.PRG     2919 DRAWITEM()             (function  in ?)    WINDOW.PRG      560  1488 DROPFILES()            (function  in ?)    WINDOW.PRG      562  1535 DROPOVER()             (function  in ?)    WINDOW.PRG      564  3731 EACH                    WINDOW.PRG     2871 EDITTITLE()            (function  in ?)    WINDOW.PRG      566  3882 ELLIPSE()              (function  in ?)    WINDOW.PRG     1365 ENABLEWINDOW()         (function  in ?)    WINDOW.PRG      555   569 ENDCLASS                WINDOW.PRG      919 ENDMENU                WINDOW.PRG     3913 ENDPAGE                WINDOW.PRG     1894  2997 ENDPAINT()             (function  in ?)    WINDOW.PRG      574   575 ERASEBKGND()           (function  in ?)    WINDOW.PRG      577 EVECOUNT()             (function  in ?)    WINDOW.PRG      581 EVENT()                (function  in ?)    WINDOW.PRG      579 EXTRACTICON()          (function  in ?)    WINDOW.PRG      750  2920 FASTEDIT()             (function  in ?)    WINDOW.PRG      583  3907 FILENAME                WINDOW.PRG     1165  2399 FILLMEASURE()          (function  in ?)    WINDOW.PRG     1747 FILLRECT()             (function  in ?)    WINDOW.PRG     2946 FINDNEXT()             (function  in ?)    WINDOW.PRG      587 FIRSTACTIVECTRL()      (function  in ?)    WINDOW.PRG      589  3921 FLOODFILL()            (function  in ?)    WINDOW.PRG      591   592 FM_CHANGE              WINDOW.PRG     1405 FM_CLICK                WINDOW.PRG     1399 FM_CLOSEUP              WINDOW.PRG     1402 FM_COLOR                WINDOW.PRG      533 FM_DRAW                WINDOW.PRG     1528 FM_SCROLLDOWN          WINDOW.PRG     2753  2821 FM_SCROLLPGDN          WINDOW.PRG     2759  2827 FM_SCROLLPGUP          WINDOW.PRG     2756  2824 FM_SCROLLUP            WINDOW.PRG     2750  2818 FM_THUMBPOS            WINDOW.PRG     2762  2830 FM_THUMBTRACK          WINDOW.PRG     2765  2833 FN_UNZIP                WINDOW.PRG     1409 FONT                    WINDOW.PRG     3325 FUNCTION                WINDOW.PRG      189   195   204   408  1097  1975  2161  2196  2341  2628                   3158  3224  3764  3779  3796  3827  4017  4049  4109  4123                   4146  4160 FWDISPBEGIN()          (function  in ?)    WINDOW.PRG     1472 FWDISPEND()            (function  in ?)    WINDOW.PRG     1481  4149 GENDBF()               (function  in ?)    WINDOW.PRG      594  1550 GENLOCALS()            (function  in ?)    WINDOW.PRG      596  1585  1590  1609 GETALLWIN()            (function  in WINDOW.PRG)    WINDOW.PRG      195! GETCLASSINFO()         (function  in ?)    WINDOW.PRG      945 GETCLASSLONG()         (function  in ?)    WINDOW.PRG     3652 GETCLASSNAME()         (function  in ?)    WINDOW.PRG     1393  3237  3286  4061 GETCLIENTRECT()        (function  in ?)    WINDOW.PRG     1284  1291  1307  1314  1699  2946 GETCLIRECT()           (function  in ?)    WINDOW.PRG      604  1697 GETCOORS()             (function  in ?)    WINDOW.PRG     1425 GETDC()                (function  in ?)    WINDOW.PRG      610   611   622   846   896   901  1364  2382  2402  2418                   2463  2540  2962 GETDEVICECAPS()        (function  in ?)    WINDOW.PRG      896   901 GETDLGCODE()           (function  in ?)    WINDOW.PRG      614 GETDLGITEM()           (function  in ?)    WINDOW.PRG     1528 GETDRAWITEM()          (function  in ?)    WINDOW.PRG     1496  1504 GETDRAWMENU()          (function  in ?)    WINDOW.PRG     1495 GETDROPINFO()          (function  in WINDOW.PRG)    WINDOW.PRG     3734  3779! GETERRMSG()            (function  in ?)    WINDOW.PRG     1104 GETFOCUS()             (function  in ?)    WINDOW.PRG      695   696 GETFONT()              (function  in ?)    WINDOW.PRG      606  1202  3298 GETFONTINFO()          (function  in ?)    WINDOW.PRG     3312 GETHELPTOPIC()         (function  in ?)    WINDOW.PRG     3715 GETINSTANCE()          (function  in ?)    WINDOW.PRG      936 GETKEYSTATE()          (function  in ?)    WINDOW.PRG     3102  3112  3118 GETMEAITEM()           (function  in ?)    WINDOW.PRG     1722  1725  1729 GETMENUITEM()          (function  in ?)    WINDOW.PRG     1496  1504  1722  1725  1729  1803  1805 GETMINMAXINFO()        (function  in ?)    WINDOW.PRG      616 GETMODULEHANDLE()      (function  in ?)    WINDOW.PRG      934 GETNMHDRCODE()         (function  in ?)    WINDOW.PRG     1837 GETNMHDRHWNDFROM()     (function  in ?)    WINDOW.PRG     1838 GETPARENT()            (function  in ?)    WINDOW.PRG      532  3570  4060 GETPOPUP()             (function  in ?)    WINDOW.PRG     1495  3076  3083 GETRECT()              (function  in ?)    WINDOW.PRG      608  1705 GETSETGWLSTYLE()       (function  in ?)    WINDOW.PRG      908   909   910  3957 GETSUBMENU()           (function  in ?)    WINDOW.PRG     1767 GETSYSCOLOR()          (function  in ?)    WINDOW.PRG      940  1120  1121 GETSYSFONT()           (function  in ?)    WINDOW.PRG     3325 GETTEXT()              (function  in ?)    WINDOW.PRG      626  1552  1886 GETTEXTALIGN()         (function  in ?)    WINDOW.PRG     2384 GETTEXTWIDTH()         (function  in ?)    WINDOW.PRG      622  1733  3323 GETWIDTH()             (function  in ?)    WINDOW.PRG      620 GETWINDOW()            (function  in ?)    WINDOW.PRG     3261  3289 GETWINDOWLONG()        (function  in ?)    WINDOW.PRG      531   881  2776  3867  3942  3960  3980  4088 GETWINDOWTEXT()        (function  in ?)    WINDOW.PRG      626  1443 GETWNDAPP()            (function  in ?)    WINDOW.PRG     2610  3798 GETWNDDEFAULT()        (function  in WINDOW.PRG)    WINDOW.PRG     3224! 3425  3426 GETWNDRECT()           (function  in ?)    WINDOW.PRG     1707 GLOBALFREE()           (function  in ?)    WINDOW.PRG     2017 GLOBALGETATOMNAME()    (function  in ?)    WINDOW.PRG     1456  1457 GODOWN()               (function  in ?)    WINDOW.PRG     2729  2798 GONEXTCTRL()           (function  in ?)    WINDOW.PRG      628  3108  3256 GOPREVCTRL()           (function  in ?)    WINDOW.PRG      629  3103  3273 GOTFOCUS()             (function  in ?)    WINDOW.PRG      631  3228 GOUP()                 (function  in ?)    WINDOW.PRG     2726  2795 GRADIENT()             (function  in ?)    WINDOW.PRG      635   852  2952 GRADIENTFILL()         (function  in ?)    WINDOW.PRG     2966 HALPHACOLOR            WINDOW.PRG      481   914   916   916  3983  3993  3994  3994  4000  4002 HALPHALEVEL            WINDOW.PRG      481   915   917   917  3983  3996  3997  3997  4001 HANDLEEVENT()          (function  in ?)    WINDOW.PRG      637  3836 HARDCOPY()             (function  in ?)    WINDOW.PRG      640  2981 HBITMAP                WINDOW.PRG     1511  1517  2402  2970 HBMP                    WINDOW.PRG     2013  2014  2018  2954  2963  2964  2970  2971 HBMPOLD                WINDOW.PRG     2954  2964  2973 HBRUSH                  WINDOW.PRG      948   951  2946  2971 HCTLFOCUS              WINDOW.PRG      443  3236  3237  3238  3239  3241  3246  3247  3266  3284 HCTLNEXT                WINDOW.PRG     3258  3262  3267 HCTLPREV                WINDOW.PRG     3275  3280  3286G 3287  3289  3292 HCTRL                  WINDOW.PRG      628   629  3256  3258  3261  3266  3273  3275  3279  3284 HCURSOR                WINDOW.PRG     3504 HDC                    WINDOW.PRG      436   575   577   592   611   611   612   731   766   766                   1365  1472  1473  1482  1891  2384  2386  2419  2464  2465                   2541  2915  2917  2919  2924  2926  2929  2938  2944  2946                   2954  2962  2963  2964  2966  2973  3751  4146! 4148 HDCCHILD                WINDOW.PRG      530   533 HDIB                    WINDOW.PRG     2014  2016  2017 HDROP                  WINDOW.PRG      562  1535  1540  1541  1544 HELPF1()               (function  in ?)    WINDOW.PRG      648 HELPINDEX()            (function  in ?)    WINDOW.PRG     3716 HELPTOPIC()            (function  in ?)    WINDOW.PRG      646   649   649   651  3713  3718  3722 HFONT                  WINDOW.PRG      602   623  2387  3300  3304  3311  3312G 3314  3314  3359                   3359  3368 HICON                  WINDOW.PRG      750   835   952  1183  2920 HMENU                  WINDOW.PRG      840  1188  1510  1516  1735  1735  1767 HORIZONTAL              WINDOW.PRG     1199 HPALETTE                WINDOW.PRG     2402 HPOPUP                  WINDOW.PRG      663  3069  3076G 3083G HPRVWND                WINDOW.PRG      173  3557  3558  3569  3571  3665  3675 HSCROLL()              (function  in ?)    WINDOW.PRG      655  2786 HTOOLTIP                WINDOW.PRG      174  3551  3640 HUSER                  WINDOW.PRG      925   934   936   945   947   950 HWND                    WINDOW.PRG      422   505   508   508   532   546   555   555   569   569                    575   601   611   626   633   653   657   659   661   695                    702   709   720   738   754   759   766   769   808   840                    850   856   860   880   881   974   977   980   982   986                   1188  1228  1284  1284  1291  1291  1307  1307  1314  1314                   1327  1328  1333  1344  1425  1443  1460  1472  1511  1517                   1523  1528  1626  1627  1652  1699  1707  1822  1824  1825                   1847  1847  1860  1862  1863  1891  2013  2386  2419  2554                   2563  2573  2573  2606  2610  2610  2615  2622  2676  2685                   2701  2701  2703  2704  2775  2776  2777  2913  2946  3012                   3103  3108  3142  3142  3238  3246  3258  3261  3261  3262                   3262  3275  3279  3280  3280  3289  3289  3378  3526  3540                   3550  3551  3557  3558  3569  3570  3571  3592  3609  3611                   3611  3617  3623  3627  3634  3637  3637  3640  3652  3652                   3751  3798  3827! 3867  3942  3960  3967  3969  3980  3986                   3990  3999  4053  4057  4060  4061G 4086  4088  4094  4109!                   4112  4112 HWNDCHILD              WINDOW.PRG      530   531   532G  533 HWNDCLIENT              WINDOW.PRG      539  1447  1455  1460 HWNDCTL                WINDOW.PRG     1374  1379  1383  1390  1393G 1394  1396  1399  1402  1405 HWNDFOCUS              WINDOW.PRG      670   670 HWNDGETFOCUS            WINDOW.PRG      684  3465  3479 HWNDPALCHG              WINDOW.PRG      733   733 HWNDPARENT              WINDOW.PRG      173  3550  3570  3666  3674 HWNDSENDER              WINDOW.PRG      541   541   543   545   546   548   548 I                      WINDOW.PRG     2843  2854 ICON                    WINDOW.PRG     1165  1167 ICONIZE()              (function  in ?)    WINDOW.PRG      657 IFNIL()                (function  in ?)    WINDOW.PRG     4000  4001 INIT                    WINDOW.PRG      437   440   444   456   462   465   475 INITIATE()             (function  in ?)    WINDOW.PRG     3075  3077  3082  3084  3089 INITMENUPOPUP()        (function  in ?)    WINDOW.PRG      663  3069 INLINE                  WINDOW.PRG      471   495   505   507   512   526   530   537   541   543                    548   550   554   568   574   577   579   581   585   587                    591   600G  610G  616   626G  633   646   648   653   657                    659   661   670   690   693   700   702   709   715   720                    733   735   737   742   744   747   749   752   754   759                    763   765   769   776   778   799   805   807   812   832                    837   839   845   849   854   860   866   869   873   877                    880   884   887   891   906   909   910   914   915   916                    917 INSPECT()              (function  in ?)    WINDOW.PRG      665 INVALIDATERECT()       (function  in ?)    WINDOW.PRG      769 ISCHILD()              (function  in ?)    WINDOW.PRG     3142 ISDERIVEDFROM()        (function  in ?)    WINDOW.PRG     2074 ISICONIC()             (function  in ?)    WINDOW.PRG      659   659   754  2913 ISKINDOF()             (function  in ?)    WINDOW.PRG     2140  2614  2849  2853  2857  2863  2865  2872  2914  3113                   3119  3138 ISMENUITEM()           (function  in ?)    WINDOW.PRG     1520  1739 ISMISEPARATOR()        (function  in ?)    WINDOW.PRG     1740 ISSEPARATOR()          (function  in ?)    WINDOW.PRG     1522 ISVISIBLE()            (function  in ?)    WINDOW.PRG      661  3543 ISWINDOWVISIBLE()      (function  in ?)    WINDOW.PRG      661 ISZOOMED()             (function  in ?)    WINDOW.PRG     1626  1627  1652 KEYBMODE()             (function  in ?)    WINDOW.PRG     2875 KEYCHAR()              (function  in ?)    WINDOW.PRG      668  3049  3062 KEYDOWN()              (function  in ?)    WINDOW.PRG      667  3097  3114  3120  3143 L2007                  WINDOW.PRG     1507  1644 L2010                  WINDOW.PRG     1507 LACTIVE                WINDOW.PRG      437   554   568  3860  3866  3935  3941 LAND()                 (function  in ?)    WINDOW.PRG     3053  3867  3942  3964  3982  3985  3989  4088 LASTACTIVECTRL()       (function  in ?)    WINDOW.PRG      672  3846 LBALLOON                WINDOW.PRG      439  3612  3612 LBOLD                  WINDOW.PRG     3318 LBUTTONDOWN()          (function  in ?)    WINDOW.PRG      674  2426 LBUTTONUP()            (function  in ?)    WINDOW.PRG      675  2436 LCANCEL                WINDOW.PRG      438 LCAPTION                WINDOW.PRG      486  1115  1123  1130  1131  1132  1133 LCHECKED                WINDOW.PRG     3859  3934 LCREATEDC              WINDOW.PRG      557 LDBLCLICK()            (function  in ?)    WINDOW.PRG      676  2451 LDEFAULT                WINDOW.PRG      843  2512  2516  2523 LDESIGN                WINDOW.PRG      438 LDESTROY                WINDOW.PRG     3320 LDLGUNITS              WINDOW.PRG      598  1597  1601  1649 LEND                    WINDOW.PRG      572   572   572 LERASE                  WINDOW.PRG      769   770   770 LEXTENDED              WINDOW.PRG      908  3957  3959 LFASTEDIT              WINDOW.PRG      456 LFOCUSED                WINDOW.PRG      438  3230  3467 LFORE                  WINDOW.PRG      799   800   800   800   800   801   802 LFROMUSER              WINDOW.PRG      640 LHSCROLL                WINDOW.PRG      485  1114  1119  1135  1198 LINETO()               (function  in ?)    WINDOW.PRG     2465 LMAX                    WINDOW.PRG      487  1115  1124  1133 LMIN                    WINDOW.PRG      487  1115  1124  1132 LMODAL                  WINDOW.PRG     2141  2614 LNEW                    WINDOW.PRG     1875  1885  1893  3326 LOADFILE()             (function  in ?)    WINDOW.PRG      682  3445 LOGICAL                WINDOW.PRG      437   438   456   459 LOLDSTATUS              WINDOW.PRG     4125  4129  4135 LONOFF                  WINDOW.PRG      204!  208   209   408!  412   413   693   693   908   909                    909   910   910  3957  3965  3966  3968  4123! 4131  4132 LOSTFOCUS()            (function  in ?)    WINDOW.PRG      670   684  2850  2858  2866  3465 LPIXEL                  WINDOW.PRG      487   792  1115  1124  1138  1139  1140  1141  2367  2373                   2387 LPREVIOUS              WINDOW.PRG      206   212   410   416 LREGISTERED            WINDOW.PRG      459   927   929   947   950   955  1155 LREPAINT                WINDOW.PRG      718   849   850  3004  3010  3012 LRIBBON                WINDOW.PRG     2844  2876  2890 LSHOW                  WINDOW.PRG     3706  3708  3709  3724 LSHOWAGAIN              WINDOW.PRG     3490  3543  3545  3679 LSKINS                  WINDOW.PRG      179   410   413 LSTATUS                WINDOW.PRG     4127  4129  4132 LSUBCLASS              WINDOW.PRG      679  2548  2552  2562 LSYSMENU                WINDOW.PRG      486  1115  1123  1131 LSYSTEM                WINDOW.PRG      663  3069  3073 LTOOLTIP                WINDOW.PRG      173  3552  3644  3676 LTRANSPARENT            WINDOW.PRG      793  2368  2374  2387 LTTBALLOON              WINDOW.PRG      178   206   209  3612 LUSEACC                WINDOW.PRG     2874  2885 LUSER                  WINDOW.PRG     2981  2985  2987 LVALID()               (function  in ?)    WINDOW.PRG      572   891 LVALIDATING            WINDOW.PRG      438   497  1151  1220 LVBX                    WINDOW.PRG      438 LVISIBLE                WINDOW.PRG      438   653   860  1148  1330 LVSCROLL                WINDOW.PRG      485  1114  1119  1134  1195 LWHEN()                (function  in ?)    WINDOW.PRG      700  3377 LWRUNNING()            (function  in ?)    WINDOW.PRG     1332  1343 M                      WINDOW.PRG     2062 MAXIMIZE()             (function  in ?)    WINDOW.PRG      702 MBUTTONDOWN()          (function  in ?)    WINDOW.PRG      704  2492 MBUTTONUP()            (function  in ?)    WINDOW.PRG      705  2502 MEASUREITEM()          (function  in ?)    WINDOW.PRG      707  1713 MENUCHAR()             (function  in ?)    WINDOW.PRG      686  1754 MENUDRAW2007()         (function  in ?)    WINDOW.PRG     1514  1521 MENUDRAWITEM()         (function  in ?)    WINDOW.PRG     1508 MENUITEM                WINDOW.PRG     3912 MENUMEASUREITEM()      (function  in ?)    WINDOW.PRG     1732  1740 MENUSELECT()           (function  in ?)    WINDOW.PRG      688  1785 METHOD                  WINDOW.PRG      471   484   489   495   499   501   503   505   507   510                    512   515   517   519   521   523   526   528   530   535                    537   539   541   543   548   550   552   554   557   558                    560   562   564   566   568   571   574   577   579   581                    583   585   587   589   591   594   596   598   600   604                    606   608   610   614   616   620   626   628   629   631                    633   635   637   640   642   646   648   651   653   655                    657   659   661   663   665   667   668   670   672   674                    675   676   678   679   681   682   684   686   688   690                    693   698   700   702   704   705   707   709   711   713                    715   718   720   722   724   727   729   731   733   735                    737   740   742   744   747   749   752   754   756   757                    759   761   763   765   769   772   774   776   778   780                    782   784   788   790   792   795   797   799   805   807                    810   812   817   819   821   823   830   832   837   839                    843   845   849   854   858   860   862   864   866   869                    871   873   875   877   880   884   887   891   893   895                    900   904   906   908   909   910   912   923   962  1113                   1210  1352  1362  1372  1423  1436  1447  1468  1479  1488                   1535  1550  1585  1597  1697  1705  1713  1754  1785  1819                   1835  1857  1873  1902  2011  2034  2060  2359  2367  2394                   2414  2426  2436  2451  2461  2472  2482  2492  2502  2512                   2538  2548  2571  2632  2674  2683  2698  2716  2773  2786                   2841  2909  2938  2952  2981  3004  3020  3049  3069  3097                   3228  3256  3273  3298  3336  3356  3375  3385  3445  3465                   3486  3501  3532  3590  3650  3658  3672  3694  3704  3731                   3741  3846  3882  3907  3921  3957  3978 MISTEXT()              (function  in ?)    WINDOW.PRG     1522 MOUSELEAVE()           (function  in ?)    WINDOW.PRG      711  3486 MOUSEMOVE()            (function  in ?)    WINDOW.PRG      713  3501 MOUSEWHEEL()           (function  in ?)    WINDOW.PRG      715 MOVED()                (function  in ?)    WINDOW.PRG      690 MOVETO()               (function  in ?)    WINDOW.PRG     2464 MOVEWINDOW()           (function  in ?)    WINDOW.PRG     3012 MSGSTOP()              (function  in ?)    WINDOW.PRG     3452 MSGYESNO()             (function  in ?)    WINDOW.PRG     1557 NALIGN                  WINDOW.PRG      793  2368  2384  2387 NAME                    WINDOW.PRG     1886G 2988  2990  3325 NAND()                 (function  in ?)    WINDOW.PRG     3967  3986  3994  3997 NAPPNAME                WINDOW.PRG      539  1447  1456G 1461 NASCII                  WINDOW.PRG      686  1754  1772 NAT                    WINDOW.PRG     1715  1746  1756  1770  1771  2550  2555  2559  2563  2700                   2708  2708  3798  3800  3827! 3833  4111  4114 NBOTTOM                WINDOW.PRG      440   484   503   678   810   966   973   976   981  1113                   1118  1140  1140  1429  1628  1827  2461  2465  2538  2541                   2674  2677  2687  2691  2691  2778 NCACTIVATE()           (function  in ?)    WINDOW.PRG      693 NCHRHEIGHT              WINDOW.PRG      441   601  3322 NCHRWIDTH              WINDOW.PRG      441  3323 NCLR                    WINDOW.PRG      823   823   826   828 NCLRBACK                WINDOW.PRG      486   792   797   817  1114  1121  1179  2367  2371  2377                   2379  2379  2386  2414  2416  2419  3020  3026  3028  3028                   3032  3042 NCLRFORE                WINDOW.PRG      486   792   797   817  1114  1120  1179  2367  2370  2376                   2377  2378  2378  2386  2414  2416  2419  3020  3025  3026                   3027  3027  3031 NCLRPANE                WINDOW.PRG      442   802   802   940   941  2371  2403  3032 NCLRTEXT                WINDOW.PRG      442   801   801   823   828  2370  3031 NCLSSTYLE              WINDOW.PRG      772   923   939   943   943   947   950 NCMOUSEMOVE()          (function  in ?)    WINDOW.PRG      698  3672 NCODE                  WINDOW.PRG      893  1837  1843  1843 NCOL                    WINDOW.PRG      510   521   564   583   591   592   674   675   676   690                    691   698   704   705   711   713   740   756   757   792                    795   797   837   837   862  1362  1365  1365  1873  1877                   1891  2367  2386  2394  2402  2414  2419  2426  2429  2436                   2440  2444  2451  2454  2472  2475  2482  2485  2492  2495                   2502  2505  3486  3494  3501  3511  3515  3518  3523  3532                   3538  3539  3590  3594  3672  3731  3734  3907  3915 NCOLOR                  WINDOW.PRG      845   846 NCOMMAND                WINDOW.PRG      543   545G  546 NCOUNT                  WINDOW.PRG      814   814   814   827  3040  3305  3306  3315  3327  3366                   3367 NCPAINT()              (function  in ?)    WINDOW.PRG      724 NDELTA                  WINDOW.PRG      715   716 NDEVICE                WINDOW.PRG      519  3694  3697 NEVENT                  WINDOW.PRG      579 NEW()                  (function  in ?)    WINDOW.PRG      484   825   941  1113  1701  1709  1909  2077  2352  2969                   3042 NEXSTYLE                WINDOW.PRG      441   487   978   983  1115  1124  1152  1152  3980  3985                   3986  3989  3990 NEXTDLGTAB()           (function  in ?)    WINDOW.PRG     3246  3258  3261  3262  3275  3279  3280  3289 NFLAGS                  WINDOW.PRG      667   668   688  1785  1798  1812  3049  3053  3058  3062                   3097  3114  3120  3135  3139  3143 NFOR                    WINDOW.PRG     4020  4027 NGETBACKRGB()          (function  in ?)    WINDOW.PRG     2379  3028 NGETCHRHEIGHT()        (function  in ?)    WINDOW.PRG      600 NGETFORERGB()          (function  in ?)    WINDOW.PRG     2378  3027 NGWL                    WINDOW.PRG     3959  3960  3967  3969 NHEIGHT()              (function  in ?)    WINDOW.PRG      642   718   774   795   849   850  1819  2041  2394  2403                   2632  2667  2963  2966  3004  3009  3009  3012  3316  3594 NHELPID                WINDOW.PRG      443  3710  3722 NHITTESTCODE            WINDOW.PRG      698  3672 NHIWORD()              (function  in ?)    WINDOW.PRG     1377  1381  2720  2790 NHMENU                  WINDOW.PRG      686   688  1754  1767G 1767G 1785  1798  1812 NHORZRES()             (function  in ?)    WINDOW.PRG      900 NHWNDFROM              WINDOW.PRG     1838  1839 NID                    WINDOW.PRG      436   967   978   983  1374  1378  1382  1388  1391  1746 NIDCTL                  WINDOW.PRG      560   707  1488  1493  1528  1528  1713  1720  1746 NIDCTRL                WINDOW.PRG      722  1835  1848 NIDITEM                WINDOW.PRG      688  1785  1803G 1805G NIL                    WINDOW.PRG      496   508   526   537   544   550   575   575   585   587                    602   611   612   617   621   623   648   691   694   696                    700   716   716   735   744   750   763   766   770   778                    800   805   812   814   824   832   832   834   835   841                    841   852   866   873   878   885   891   930   945   952                    958   969   977   982   992  1109  1182  1187  1190  1219                   1222  1226  1231  1243  1255  1279  1280  1287  1294  1297                   1302  1303  1310  1317  1320  1336  1342  1348  1354  1358                   1368  1387  1390  1419  1432  1438  1451  1452  1459  1464                   1484  1491  1491  1491  1494  1494  1495  1495  1497  1498                   1499  1503  1503  1506  1510  1516  1531  1546  1560  1581                   1611  1615  1619  1630  1634  1638  1642  1656  1721  1724                   1724  1727  1728  1731  1735  1750  1758  1761  1766  1767                   1781  1787  1792  1795  1799  1801  1801  1802  1807  1811                   1815  1831  1841  1853  1869  1879  1881  1884  1898  1932                   1934  2048  2113  2115  2387  2390  2410  2422  2428  2432                   2439  2443  2447  2453  2457  2468  2474  2478  2484  2488                   2494  2498  2504  2508  2518  2522  2529  2534  2544  2567                   2573  2574  2575  2578  2581  2584  2587  2590  2593  2596                   2599  2602  2619  2624  2637  2640  2644  2647  2651  2654                   2658  2662  2666  2670  2679  2694  2703  2705  2712  2723                   2782  2792  2847  2855  2870  2873  2885  2890  2896  2905                   2920  2958  2959  2977  3000  3016  3034  3036  3038  3045                   3053  3057  3061  3065  3076  3079  3083  3093  3102  3107                   3113  3119  3124  3134  3138  3142  3146  3158! 3232  3244                   3245  3269  3294  3302  3302  3302  3310  3340  3342  3342                   3352  3358  3358  3364  3371  3381  3417  3441  3453  3461                   3469  3473  3475  3482  3488  3497  3503  3513  3522  3536                   3547  3550  3556  3560  3562  3564  3566  3572  3574  3576                   3578  3586  3597  3612  3639  3646  3654  3660  3662  3668                   3677  3681  3683  3685  3687  3690  3696  3700  3711  3727                   3733  3737  3745  3754  3768  3783  3800  3842  3874  3917                   3949  3983  3983  3993  3996  4002  4114  4151 NINDENT                WINDOW.PRG      788   790  1975! 1984  1988  1992  1996  1999  2002  2034                   2060  2067  2071  2071  2073  2089  2094  2097  2103  2106                   2116  2138 NINDEX                  WINDOW.PRG      663  3069 NKEY                    WINDOW.PRG      667   668   715   716  3049  3051  3058  3061  3062  3097                   3099  3102  3107  3112  3114  3118  3120  3129  3135  3139                   3143 NKEYFLAGS              WINDOW.PRG      564   674   675   676   704   705   711   713   756   757                   2426  2429  2436  2440  2444  2451  2454  2472  2475  2482                   2485  2492  2495  2502  2505  3486  3494  3501  3515  3518                   3523  3731  3734 NLASTKEY                WINDOW.PRG      441   614G 1150 NLEFT                  WINDOW.PRG      440   484   503   678   718   810   966   975   975   981                   1113  1118  1139  1139  1428  1627  1865  2039  2461  2464                   2538  2541  2674  2676  2676  2685  2686  2690  2690  2777                   2777  3004  3007  3007  3012  3538  3538 NLEN                    WINDOW.PRG     2198  2201  2203  2209  2211  2212  2218  2343  2346  2348                   2349  3387  3394  3396  3397  3399  3401  3402  4020  4025                   4027 NLENTOOLTIP            WINDOW.PRG     3592 NLOWORD()              (function  in ?)    WINDOW.PRG     1379  1382  2719  2789 NLPARAM                WINDOW.PRG      499   517   541   541   637   638   655   737   738   807                    808   864   866   867  1352  1355  1372  1377  1379  1383                   1394  1410  1413  2716  2718  2786  2788  2841  3827! 3836 NMAKELONG()            (function  in ?)    WINDOW.PRG      546  1461  1773 NMSG                    WINDOW.PRG      637   638   737   738   807   808  3827! 3836 NNEW                    WINDOW.PRG      916   916   917   917 NNEWHEIGHT              WINDOW.PRG      642  1819  1822 NNEWWIDTH              WINDOW.PRG      727  1857  1860 NNOT()                 (function  in ?)    WINDOW.PRG     3967  3986 NNOTIFYCODE            WINDOW.PRG     1374  1377  1381  1398  1401  1404 NOLDPROC                WINDOW.PRG      422  2563  2703  2704  2705  3837 NOPACITY()             (function  in ?)    WINDOW.PRG      915   917 NOR()                  (function  in ?)    WINDOW.PRG      881   939   943   970  1127  2776  3604  3652  3969  3990 NORGX                  WINDOW.PRG     2941  2943  2944 NORGY                  WINDOW.PRG     2941  2943  2944 NPAINTCOUNT            WINDOW.PRG      434   574   612   612   612   765  3745  3746  3748 NPERCENT                WINDOW.PRG      877   878 NPOS                    WINDOW.PRG      893  2198  2201  2202  2208  2209  2210  2211  2212  2344                   2346  2347  2348  2349  2353  2720  2738  2741  2762  2765                   2790  2807  2810  2830  2833  3387  3390  3391  3394  3395                   3396  3397  3398  3399  3400  3401  3402  3447  3457  3457                   3459 NPOSITION              WINDOW.PRG      455 NPROPS                  WINDOW.PRG     1907  1916  1937  1947  2063  2085  2118  3387  3390  3393 NPTRNMHDR              WINDOW.PRG      722  1835  1837G 1838G 1848 NPTRWORD()             (function  in ?)    WINDOW.PRG     1410 NRES                    WINDOW.PRG      896   896   897   901   901   902 NRESULT                WINDOW.PRG      443  1219  2574  2574  2574 NRGBCOLOR              WINDOW.PRG      591   592 NRIGHT                  WINDOW.PRG      440   484   503   678   810   966   975   981  1113  1118                   1141  1141  1430  1628  1865  2461  2465  2538  2541  2674                   2676  2686  2692  2692  2777 NROW                    WINDOW.PRG      510   521   564   583   591   592   674   675   676   690                    691   698   704   705   711   713   740   756   757   792                    795   797   837   837   862  1362  1365  1365  1873  1877                   1891  2367  2386  2394  2402  2414  2419  2426  2429  2436                   2440  2444  2451  2454  2472  2475  2482  2485  2492  2495                   2502  2505  3486  3494  3501  3511  3515  3518  3523  3532                   3537  3539  3590  3594  3672  3731  3734  3907  3915 NSCALE                  WINDOW.PRG      640   740  1873  1877  1891  2981  2996 NSCRHANDLE              WINDOW.PRG     2718  2722  2750  2753  2756  2759  2762  2765  2788  2792                   2818  2821  2824  2827  2830  2833 NSCROLLCODE            WINDOW.PRG     2719  2725  2728  2731  2734  2737  2740  2743  2749  2752                   2755  2758  2761  2764  2789  2794  2797  2800  2803  2806                   2809  2812  2817  2820  2823  2826  2829  2832 NSEETHROCLR()          (function  in ?)    WINDOW.PRG      914   916 NSET                    WINDOW.PRG     3960  3961  3964  3967  3969 NSIZE                  WINDOW.PRG      620   622   624 NSIZETYPE              WINDOW.PRG      774  2632  2667 NSOCKET                WINDOW.PRG      499  1352  1355 NSTATUS                WINDOW.PRG      519  3694  3697 NSTYLE                  WINDOW.PRG      441   484   908   909   909   910   910   965   970   970                    974   980  1113  1122  1126  1127  1142  1142  3957  3963                   3964  3967  3969  3982 NTIMERID                WINDOW.PRG      869   869 NTOOLTIP                WINDOW.PRG      462 NTOP                    WINDOW.PRG      440   484   503   678   718   810   966   975   976   981                   1113  1118  1138  1138  1427  1626  1827  2038  2461  2464                   2538  2541  2674  2676  2677  2685  2687  2689  2689  2777                   2778  3004  3006  3006  3012  3537  3537 NTOPICNAME              WINDOW.PRG      539  1447  1457G 1461 NTYPE                  WINDOW.PRG      686  1754 NUMERIC                WINDOW.PRG      440   462 NVERTRES()             (function  in ?)    WINDOW.PRG      895 NWEIGHT                WINDOW.PRG     3317 NWIDTH()               (function  in ?)    WINDOW.PRG      521   718   727   774   795   797   849   850  1362  1365                   1365  1857  2040  2394  2403  2414  2419  2632  2667  2963                   2966  3004  3008  3008  3012 NWINDOWS()             (function  in WINDOW.PRG)    WINDOW.PRG      189! NWNDCHRHEIGHT()        (function  in ?)    WINDOW.PRG      601 NWPARAM                WINDOW.PRG      517   637   638   655   737   738   807   808   864   866                    867  1372  1378  1381  1382  1394  1409  1412  2716  2719                   2720  2786  2789  2790  2841  2869  2896  2897  2900  2900                   3827! 3836 NX                      WINDOW.PRG      845   846 NXPOS                  WINDOW.PRG      715   716 NY                      WINDOW.PRG      845   846 NYPOS                  WINDOW.PRG      715   716 NZIPINFO                WINDOW.PRG      884   885 O                      WINDOW.PRG      888   888   888   889   889  2701  2701  2701  2845  2871                   2872  2873  2874  2875  2879  2881  3798  3798  3798  4112                   4112  4112 OACCTABLE              WINDOW.PRG      841   841  1190  1191 OBAR                    WINDOW.PRG      446  1611  1638  1639  2647  2647  2648  2847  2848  2855                   2856 OBOTTOM                WINDOW.PRG      450  2518  2518  2519  2640  2641  2644 OBRUSH                  WINDOW.PRG      446   485   812   812   812   813   813   814   814   814                    817   941   948   951  1114  1179  1615  1619  1620  1634                   2578  2579  2943  2946  2968  2969  2970  2971  3020  3034                   3035  3036  3038  3039  3039  3040  3042 OCLASS                  WINDOW.PRG      512   512 OCLIENT                WINDOW.PRG      450  2658  2659 OCONTROL                WINDOW.PRG      495   497  3849  3863  3868  3874  3875  3878  3924  3938                   3943  3949  3950  3953 OCTL                    WINDOW.PRG     2849  2849  2850  2857  2857  2858  2865  2865  2866  3276                   3287  3288 OCTLFOCUS              WINDOW.PRG      449 OCTRL                  WINDOW.PRG     1649  1649  1746  1746  1839  1841  1844  1847  1848 OCURSOR                WINDOW.PRG      446   486  1115  1144  1144  2581  2582  3503  3504 ODLG                    WINDOW.PRG     3276  3288  3289  3289  3884  3892  3894  3897  3897  3899                   3899  3901 ODRAGCURSOR            WINDOW.PRG      448  2584  2585 OFONT                  WINDOW.PRG      446   602   602   620   620   621   621   621   621   623                    623   792   824   826   827   830  2045  2367  2372  2372                   2387  2387  2590  2591  3300  3302  3302  3303  3303  3304                   3305  3306  3307  3310  3313  3314  3315  3316  3317  3318                   3319  3320  3321  3321  3325  3326  3327  3332  3356  3358                   3358  3359  3359  3360  3364  3365  3365  3366  3367  3368 OGET                    WINDOW.PRG     3884  3894G OHSCROLL                WINDOW.PRG      447  1199  1215  1272  1272  1276  1276  1302  1304  1307                   1311  1314  1318  1321  2602  2603  2792  2795  2798  2801                   2804  2807  2810 OICON                  WINDOW.PRG      446   485   750   750   832   832   832   833   833   834                    835   952   952  1114  1147  1147  1163  1164  1165  1165                   1167  1167  1169  1169  1182  1183  2587  2588  2920  2920 OITEM                  WINDOW.PRG     1490  1496  1497  1503  1504  1506  1507  1507  1509  1509                   1511  1513  1515  1515  1517  1715  1722  1724  1725  1727                   1729  1731  1733  1734  1735  1736  1736  1737 OLEFT                  WINDOW.PRG      450  2651  2652 OMENU                  WINDOW.PRG      446   484   839   839   839   839   840   841   841  1113                   1145  1145  1187  1188  1189  1190  1191  1390  1391  1494                   1503  1504  1507  1507  1510  1510  1513  1516  1516  1630                   1656  1659  1729  1735  1735  1735  1756  1759  1761  1762                   1762  1766  1767  1767  1767  1768  1769  1770  1771  1801                   1805  2593  2594  3081  3082  3083 OMITEMSELECT            WINDOW.PRG      461   648   649  1799  1803  1805  1807  1807  1812 OMSGBAR                WINDOW.PRG      447  1642  1644  1644  2514  2514  2519  2522  2524  2526                   2644  2644  2645 ONCLICK                WINDOW.PRG      454  2439  2440 ONKEYDOWN              WINDOW.PRG      454  3134  3135 ONMOUSEMOVE            WINDOW.PRG      454  3513  3514  3515  3517  3518 ONMOVE                  WINDOW.PRG      454 ONPAINT                WINDOW.PRG      454 ONRESIZE                WINDOW.PRG      454  2662  2663 OOBJ                    WINDOW.PRG     2343  2350  2352  2353  2355 OPANELACC              WINDOW.PRG     2873 OPARENT                WINDOW.PRG      485 OPOPUP                  WINDOW.PRG      447  1387  1388  1491  1491  1491  1494  1495  1495  1496                   1498  1499  1721  1722  1728  1758  1759  1801  1802  1803                   3071  3074  3075  3076  3076  3077  3083  3084  3909  3911G                   3915 OPRN                    WINDOW.PRG     2983  2988  2990  2996 ORADMENU                WINDOW.PRG     3849  3857  3857  3859  3859  3924  3932  3932  3934  3934 OREAD()                (function  in WINDOW.PRG)    WINDOW.PRG     2221  2341! 3410  3412 ORECT                  WINDOW.PRG      819  2683  2685  2685  2686  2686  2687  2687  2689  2690                   2691  2692 ORIBBON                WINDOW.PRG     2845  2881  2885  2885 ORIGHT                  WINDOW.PRG      450  2654  2655 OSEND()                (function  in ?)    WINDOW.PRG     1912  1913  1934  2083  2084  2115  3406  3412  3418  3418                   3420  3420  3423  3426  3430  3433  3518 OSYSMENU                WINDOW.PRG      447  1491  1491  1724  1725  2596  2597  2896  2897  3088                   3089 OTARGET                WINDOW.PRG      740  1873  1884  1886  1891 OTEMP                  WINDOW.PRG     3592  3607  3636 OTMR                    WINDOW.PRG      173  3564  3565  3566  3576  3577  3578  3685  3686  3687 [/quote:23l0k2s6]
Snap"" for Clipper
404 Not Found The resource requested could not be found on this server! Regards.
Speech Recognition"" y FWH
Algun compañero del foro ha experimentado con "Speech Recognition" (comandos via voz). Es decir controlar nuestros programas por medio de comandos dados de forma hablada en lugar de usar el teclado. En que se basa esta tecnica? Cual ActiveX es el recomendado para trabajar con xHarbour + FWH? Saludos, George
Speech Recognition"" y FWH
Es curioso que ningun miembro del foro, ni siquiera A. Linares, haya experimentado con SAPI + FWH. Es decir controlar nuestros programas por medio de "Comando de Voz" en vez de usar el teclado o el "mouse". Aqui les dejo algunos links por si les interesa el tema: <!-- m --><a class="postlink" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=5e86ec97-40a7-453f-b0ee-6583171b4530&displaylang=en">http://www.microsoft.com/downloads/deta ... laylang=en</a><!-- m --> <!-- m --><a class="postlink" href="http://www.research-lab.com/sedllread.htm">http://www.research-lab.com/sedllread.htm</a><!-- m --> <!-- m --><a class="postlink" href="http://www.em-t.com/Free-Voice-Recognition-Software-ViaVoice-for-Linux-s/223.htm">http://www.em-t.com/Free-Voice-Recognit ... -s/223.htm</a><!-- m --> <!-- m --><a class="postlink" href="http://www.nuance.com/naturallyspeaking/products/sdk/sdk_client.asp">http://www.nuance.com/naturallyspeaking ... client.asp</a><!-- m --> <!-- m --><a class="postlink" href="http://cslu.cse.ogi.edu/HLTsurvey/ch1node4.html">http://cslu.cse.ogi.edu/HLTsurvey/ch1node4.html</a><!-- m --> Saludos, George
Starting With"" ""Containing""
[quote="Marc Venken":1xyjmy4u]From Mr. Rao... [code=fw:1xyjmy4u]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">'fivewin.ch'</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">'ord.ch'</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">'xbrowse.ch'</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">'hbcompat.ch'</span><br /><br />REQUEST DBFCDX<br /><br /><span style="color: #B900B9;">//----------------------------------------------------------------------------//</span><br /><br /><span style="color: #00C800;">function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   <span style="color: #00C800;">local</span> oDlg, oBrw, oFont, nWild := <span style="color: #000000;">2</span><br />   <span style="color: #00C800;">local</span> cList, aFlds, aHdrs<br />   <span style="color: #00C800;">local</span> nChoice, uDataSource<br /><br />   SET DATE ITALIAN<br />   SET CENTURY <span style="color: #0000ff;">ON</span><br />   RDDSETDEFAULT<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"DBFCDX"</span> <span style="color: #000000;">&#41;</span><br /><br />   cList := <span style="color: #ff0000;">"First,Last,Street,State,HireDate"</span><br /><br />   nChoice     := ALERT<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Choose Data Souce"</span>, <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DBF"</span>, <span style="color: #ff0000;">"ADO"</span>, <span style="color: #ff0000;">"ARRAY"</span> <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span><br />   uDataSource := OpenData<span style="color: #000000;">&#40;</span> nChoice, cList <span style="color: #000000;">&#41;</span><br /><br />   <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">FONT</span> oFont <span style="color: #0000ff;">NAME</span> <span style="color: #ff0000;">"TAHOMA"</span> <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">0</span>,<span style="color: #000000;">-12</span><br /><br />   <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">750</span>,<span style="color: #000000;">300</span> <span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">FONT</span> oFont ;<br />      <span style="color: #0000ff;">TITLE</span> <span style="color: #ff0000;">"XBrowse Incremental Filters"</span><br /><br />   aFlds := aHdrs := HB_ATokens<span style="color: #000000;">&#40;</span> cList, <span style="color: #ff0000;">','</span> <span style="color: #000000;">&#41;</span><br />   <span style="color: #00C800;">if</span> nChoice == <span style="color: #000000;">3</span><br />      aFlds := Array<span style="color: #000000;">&#40;</span> Len<span style="color: #000000;">&#40;</span> aFlds <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br />      AEval<span style="color: #000000;">&#40;</span> aFlds, <span style="color: #000000;">&#123;</span> |u,i| aFlds<span style="color: #000000;">&#91;</span> i <span style="color: #000000;">&#93;</span> := i <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span><br />   <span style="color: #00C800;">endif</span><br /><br />   @ <span style="color: #000000;">30</span>,<span style="color: #000000;">10</span> <span style="color: #0000ff;">XBROWSE</span> oBrw <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">-10</span>,<span style="color: #000000;">-10</span> <span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">OF</span> oDlg ;<br />      COLUMNS aFlds HEADERS aHdrs ;<br />      DATASOURCE uDataSource AUTOSORT CELL LINES NOBORDER<br /><br />   WITH OBJECT oBrw<br />      :<span style="color: #000000;">lIncrFilter</span>   := .t.<br />      :<span style="color: #000000;">lSeekWild</span>     := <span style="color: #000000;">&#40;</span> nWild == <span style="color: #000000;">2</span> <span style="color: #000000;">&#41;</span><br />      :<span style="color: #000000;">cFilterFld</span>    := <span style="color: #ff0000;">"FIRST"</span><br />      :<span style="color: #000000;">nStretchCol</span>   := STRETCHCOL_WIDEST<br />   END<br /><br />   @ <span style="color: #000000;">10</span>, <span style="color: #000000;">10</span> <span style="color: #0000ff;">COMBOBOX</span> oBrw:<span style="color: #000000;">cFilterFld</span> ;<br />      <span style="color: #0000ff;">ITEMS</span> aHdrs ;<br />      <span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">CHANGE</span> <span style="color: #000000;">&#40;</span> oBrw:<span style="color: #000000;">Seek</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">""</span> <span style="color: #000000;">&#41;</span>, oBrw:<span style="color: #000000;">SetFocus</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> ;<br />      <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">50</span>,<span style="color: #000000;">400</span> <span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">OF</span> oDlg<br /><br />   @ <span style="color: #000000;">10</span>, <span style="color: #000000;">70</span> <span style="color: #0000ff;">COMBOBOX</span> nWild <span style="color: #0000ff;">ITEMS</span> <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"Starting With"</span>, <span style="color: #ff0000;">"Containing"</span> <span style="color: #000000;">&#125;</span> ;<br />      <span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">CHANGE</span> <span style="color: #000000;">&#40;</span> oBrw:<span style="color: #000000;">lSeekWild</span> := <span style="color: #000000;">&#40;</span> nWild == <span style="color: #000000;">2</span> <span style="color: #000000;">&#41;</span>, ;<br />                  oBrw:<span style="color: #000000;">Seek</span><span style="color: #000000;">&#40;</span> <span style="color: #00C800;">If</span><span style="color: #000000;">&#40;</span> oBrw:<span style="color: #000000;">lSeekWild</span>, oBrw:<span style="color: #000000;">cSeek</span>, <span style="color: #ff0000;">""</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>, ;<br />                  oBrw:<span style="color: #000000;">SetFocus</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> ;<br />      <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">70</span>,<span style="color: #000000;">400</span> <span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">OF</span> oDlg<br /><br />   @ <span style="color: #000000;">11</span>,<span style="color: #000000;">160</span> <span style="color: #0000ff;">SAY</span> oBrw:<span style="color: #000000;">oSeek</span> <span style="color: #0000ff;">PROMPT</span> oBrw:<span style="color: #000000;">cSeek</span> <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">200</span>,<span style="color: #000000;">10</span> <span style="color: #0000ff;">PIXEL</span> ;<br />      <span style="color: #0000ff;">OF</span> oDlg <span style="color: #0000ff;">COLOR</span> CLR_BLACK,CLR_YELLOW <span style="color: #0000ff;">PICTURE</span> <span style="color: #ff0000;">'@!'</span><br /><br />   oBrw:<span style="color: #000000;">CreateFromCode</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   <span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">CENTERED</span> <span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">INIT</span> <span style="color: #000000;">&#40;</span> oBrw:<span style="color: #000000;">SetFocus</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>, .f. <span style="color: #000000;">&#41;</span><br /><br />   <span style="color: #0000ff;">RELEASE</span> <span style="color: #0000ff;">FONT</span> oFont<br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br /><br /><span style="color: #B900B9;">//----------------------------------------------------------------------------//</span><br /><br /><span style="color: #00C800;">static</span> <span style="color: #00C800;">function</span> OpenData<span style="color: #000000;">&#40;</span> nSource, cList <span style="color: #000000;">&#41;</span><br /><br />   <span style="color: #00C800;">local</span> oCn, uSource<br /><br />   <span style="color: #00C800;">SWITCH</span> nSource<br />   <span style="color: #00C800;">CASE</span> <span style="color: #000000;">1</span><br />   <span style="color: #00C800;">CASE</span> <span style="color: #000000;">3</span><br />      USE CUSTOMER SHARED <span style="color: #00C800;">NEW</span> <span style="color: #0000ff;">ALIAS</span> CUST<br />      SET ORDER <span style="color: #0000ff;">TO</span> TAG FIRST<br />      GO TOP<br />      <span style="color: #00C800;">if</span> nSource == <span style="color: #000000;">3</span><br />         uSource  := CUST-><span style="color: #000000;">&#40;</span> FW_DbfToArray<span style="color: #000000;">&#40;</span> cList <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br />         CLOSE CUST<br />      <span style="color: #00C800;">else</span><br />         uSource  := <span style="color: #ff0000;">"CUST"</span><br />      <span style="color: #00C800;">endif</span><br />      EXIT<br />   <span style="color: #00C800;">CASE</span> <span style="color: #000000;">2</span><br />      oCn   := FW_OpenAdoConnection<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Provider=Microsoft.Jet.OLEDB.4.0;Data Source="</span> + ;<br />                                      cFilePath<span style="color: #000000;">&#40;</span> GetModuleFileName<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> + ;<br />                                      <span style="color: #ff0000;">"xbrtest.mdb;User Id=admin;Password=;"</span> <span style="color: #000000;">&#41;</span><br />      <span style="color: #00C800;">if</span> oCn != <span style="color: #00C800;">nil</span><br />         uSource  := FW_OpenRecordSet<span style="color: #000000;">&#40;</span> oCn, <span style="color: #ff0000;">"CUSTOMER"</span> <span style="color: #000000;">&#41;</span><br />      <span style="color: #00C800;">endif</span><br />      EXIT<br />   <span style="color: #00C800;">DEFAULT</span><br />      QUIT<br />   END<br /><br /><span style="color: #00C800;">return</span> uSource<br /><br /><span style="color: #B900B9;">//----------------------------------------------------------------------------//</span><br /> </div>[/code:1xyjmy4u][/quote:1xyjmy4u] I have another type of configuration, I'll explain briefly [img:1xyjmy4u]https&#58;//i&#46;postimg&#46;cc/TYkYQcTD/comuni&#46;png[/img:1xyjmy4u] [code=fw:1xyjmy4u]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00C800;">local</span> &nbsp;aCols &nbsp; &nbsp;:= <span style="color: #000000;">&#123;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"COMUNE"</span>, &nbsp;<span style="color: #ff0000;">"Comune"</span> &nbsp; ,, &nbsp; <span style="color: #000000;">120</span>, <span style="color: #000000;">&#125;</span>,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PROV"</span>, &nbsp; &nbsp;<span style="color: #ff0000;">"Provincia"</span>,, &nbsp; <span style="color: #000000;">70</span>, <span style="color: #000000;">&#125;</span>,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CAP"</span>, &nbsp; &nbsp; <span style="color: #ff0000;">"Cap"</span> &nbsp; &nbsp; &nbsp;,, &nbsp; <span style="color: #000000;">50</span>, <span style="color: #000000;">&#125;</span>,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"CODREG"</span>, &nbsp;<span style="color: #ff0000;">"Regione"</span> &nbsp;,, &nbsp; <span style="color: #000000;">80</span>, <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#125;</span><br /><br /><br />oDbf:=TComuni<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp;oDbf:<span style="color: #000000;">setorder</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">1</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp;oDbf:<span style="color: #000000;">Gotop</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp;<span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> oDlg....<br /><br /><br />&nbsp;<span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">BUTTONBAR</span> oBarDialog <span style="color: #0000ff;">OF</span> oDlg &nbsp;<span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">80</span>,<span style="color: #000000;">70</span> &nbsp;TOP NOBORDER &nbsp;<span style="color: #000000;">2015</span><br />&nbsp;<br />&nbsp;@ <span style="color: #000000;">12</span>,<span style="color: #000000;">15</span> <span style="color: #0000ff;">say</span> oSay<span style="color: #000000;">&#91;</span><span style="color: #000000;">1</span><span style="color: #000000;">&#93;</span> <span style="color: #0000ff;">Prompt</span> <span style="color: #ff0000;">"Cerca"</span> <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">46</span>,<span style="color: #000000;">24</span> <span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">OF</span> oDlg <span style="color: #0000ff;">FONT</span> oBold TRANSPARENT<br />&nbsp;@ <span style="color: #000000;">12</span>,<span style="color: #000000;">450</span> <span style="color: #0000ff;">say</span> oSay<span style="color: #000000;">&#91;</span><span style="color: #000000;">2</span><span style="color: #000000;">&#93;</span> <span style="color: #0000ff;">Prompt</span> <span style="color: #ff0000;">"in"</span> <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">40</span>,<span style="color: #000000;">24</span> <span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">OF</span> oDlg <span style="color: #0000ff;">FONT</span> oBold &nbsp; &nbsp;TRANSPARENT<br />&nbsp; &nbsp; &nbsp; &nbsp;@ <span style="color: #000000;">10</span>, <span style="color: #000000;">165</span> <span style="color: #0000ff;">GET</span> oGet <span style="color: #0000ff;">VAR</span> cSeek <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">200</span>,<span style="color: #000000;">19</span> <span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">OF</span> oDlg <span style="color: #0000ff;">PICTURE</span> <span style="color: #ff0000;">"@!"</span> ......<br /><br /><br />&nbsp; &nbsp;@ <span style="color: #000000;">110</span>,<span style="color: #000000;">10</span> <span style="color: #0000ff;">XBROWSE</span> oBrw <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">-10</span>,<span style="color: #000000;">-10</span> <span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">OF</span> oDlg ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; DATASOURCE oDbf COLUMNS aCols ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AUTOSORT <span style="color: #0000ff;">FONT</span> oFont;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; NOBORDER CELL LINES<br /><br /><br />&nbsp;WITH OBJECT oBrw<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;:<span style="color: #000000;">oSeek</span> := oGet<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; :<span style="color: #000000;">CreateFromCode</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; END<br /><br />&nbsp; &nbsp;@ <span style="color: #000000;">10</span>, <span style="color: #000000;">550</span> <span style="color: #0000ff;">COMBOBOX</span> oBrw:<span style="color: #000000;">oSortCbx</span> <span style="color: #0000ff;">VAR</span> oBrw:<span style="color: #000000;">cSortOrder</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">100</span>,<span style="color: #000000;">400</span> <span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">OF</span> oDlg HEIGHTGET <span style="color: #000000;">14.8</span> <span style="color: #0000ff;">STYLE</span> CBS_DROPDOWN<br /><br /><br /><span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">CENTERED</span><br /><br /><br />&nbsp;</div>[/code:1xyjmy4u] I wish add on combobox also the option "start with" and "contain..."
Starting With"" ""Containing""
I made the search on xbrowse with @ 10, 165 GET oGet VAR cSeek..... @ 10, 550 COMBOBOX oBrw:oSortCbx VAR oBrw:cSortOrder; SIZE 150,400 PIXEL OF oDlg HEIGHTGET 14.8 STYLE CBS_DROPDOWN I'd like add also the options "Starting With", "Containing" on combobox but I not Know how make it I saw this on [b:3dc8vt6m]xbincflt.prg[/b:3dc8vt6m] [code=fw:3dc8vt6m]<div class="fw" id="{CB}" style="font-family: monospace;">@ <span style="color: #000000;">10</span>, <span style="color: #000000;">70</span> <span style="color: #0000ff;">COMBOBOX</span> nWild <span style="color: #0000ff;">ITEMS</span> <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"Starting With"</span>, <span style="color: #ff0000;">"Containing"</span> <span style="color: #000000;">&#125;</span> ;<br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">CHANGE</span> <span style="color: #000000;">&#40;</span> oBrw:<span style="color: #000000;">lSeekWild</span> := <span style="color: #000000;">&#40;</span> nWild == <span style="color: #000000;">2</span> <span style="color: #000000;">&#41;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; oBrw:<span style="color: #000000;">Seek</span><span style="color: #000000;">&#40;</span> <span style="color: #00C800;">If</span><span style="color: #000000;">&#40;</span> oBrw:<span style="color: #000000;">lSeekWild</span>, oBrw:<span style="color: #000000;">cSeek</span>, <span style="color: #ff0000;">""</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; oBrw:<span style="color: #000000;">SetFocus</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> ;<br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">70</span>,<span style="color: #000000;">400</span> <span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">OF</span> oDlg</div>[/code:3dc8vt6m] in my opinion these two options should be by default perhaps with a logical option like "lStartContain "
Starting With"" ""Containing""
From Mr. Rao... [code=fw:3ndns0j5]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">'fivewin.ch'</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">'ord.ch'</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">'xbrowse.ch'</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">'hbcompat.ch'</span><br /><br />REQUEST DBFCDX<br /><br /><span style="color: #B900B9;">//----------------------------------------------------------------------------//</span><br /><br /><span style="color: #00C800;">function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oDlg, oBrw, oFont, nWild := <span style="color: #000000;">2</span><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> cList, aFlds, aHdrs<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> nChoice, uDataSource<br /><br />&nbsp; &nbsp;SET DATE ITALIAN<br />&nbsp; &nbsp;SET CENTURY <span style="color: #0000ff;">ON</span><br />&nbsp; &nbsp;RDDSETDEFAULT<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"DBFCDX"</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;cList := <span style="color: #ff0000;">"First,Last,Street,State,HireDate"</span><br /><br />&nbsp; &nbsp;nChoice &nbsp; &nbsp; := ALERT<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Choose Data Souce"</span>, <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DBF"</span>, <span style="color: #ff0000;">"ADO"</span>, <span style="color: #ff0000;">"ARRAY"</span> <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;uDataSource := OpenData<span style="color: #000000;">&#40;</span> nChoice, cList <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">FONT</span> oFont <span style="color: #0000ff;">NAME</span> <span style="color: #ff0000;">"TAHOMA"</span> <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">0</span>,<span style="color: #000000;">-12</span><br /><br />&nbsp; &nbsp;<span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">750</span>,<span style="color: #000000;">300</span> <span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">FONT</span> oFont ;<br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">TITLE</span> <span style="color: #ff0000;">"XBrowse Incremental Filters"</span><br /><br />&nbsp; &nbsp;aFlds := aHdrs := HB_ATokens<span style="color: #000000;">&#40;</span> cList, <span style="color: #ff0000;">','</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">if</span> nChoice == <span style="color: #000000;">3</span><br />&nbsp; &nbsp; &nbsp; aFlds := Array<span style="color: #000000;">&#40;</span> Len<span style="color: #000000;">&#40;</span> aFlds <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; AEval<span style="color: #000000;">&#40;</span> aFlds, <span style="color: #000000;">&#123;</span> |u,i| aFlds<span style="color: #000000;">&#91;</span> i <span style="color: #000000;">&#93;</span> := i <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">endif</span><br /><br />&nbsp; &nbsp;@ <span style="color: #000000;">30</span>,<span style="color: #000000;">10</span> <span style="color: #0000ff;">XBROWSE</span> oBrw <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">-10</span>,<span style="color: #000000;">-10</span> <span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">OF</span> oDlg ;<br />&nbsp; &nbsp; &nbsp; COLUMNS aFlds HEADERS aHdrs ;<br />&nbsp; &nbsp; &nbsp; DATASOURCE uDataSource AUTOSORT CELL LINES NOBORDER<br /><br />&nbsp; &nbsp;WITH OBJECT oBrw<br />&nbsp; &nbsp; &nbsp; :<span style="color: #000000;">lIncrFilter</span> &nbsp; := .t.<br />&nbsp; &nbsp; &nbsp; :<span style="color: #000000;">lSeekWild</span> &nbsp; &nbsp; := <span style="color: #000000;">&#40;</span> nWild == <span style="color: #000000;">2</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; :<span style="color: #000000;">cFilterFld</span> &nbsp; &nbsp;:= <span style="color: #ff0000;">"FIRST"</span><br />&nbsp; &nbsp; &nbsp; :<span style="color: #000000;">nStretchCol</span> &nbsp; := STRETCHCOL_WIDEST<br />&nbsp; &nbsp;END<br /><br />&nbsp; &nbsp;@ <span style="color: #000000;">10</span>, <span style="color: #000000;">10</span> <span style="color: #0000ff;">COMBOBOX</span> oBrw:<span style="color: #000000;">cFilterFld</span> ;<br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">ITEMS</span> aHdrs ;<br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">CHANGE</span> <span style="color: #000000;">&#40;</span> oBrw:<span style="color: #000000;">Seek</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">""</span> <span style="color: #000000;">&#41;</span>, oBrw:<span style="color: #000000;">SetFocus</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> ;<br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">50</span>,<span style="color: #000000;">400</span> <span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">OF</span> oDlg<br /><br />&nbsp; &nbsp;@ <span style="color: #000000;">10</span>, <span style="color: #000000;">70</span> <span style="color: #0000ff;">COMBOBOX</span> nWild <span style="color: #0000ff;">ITEMS</span> <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"Starting With"</span>, <span style="color: #ff0000;">"Containing"</span> <span style="color: #000000;">&#125;</span> ;<br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">CHANGE</span> <span style="color: #000000;">&#40;</span> oBrw:<span style="color: #000000;">lSeekWild</span> := <span style="color: #000000;">&#40;</span> nWild == <span style="color: #000000;">2</span> <span style="color: #000000;">&#41;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; oBrw:<span style="color: #000000;">Seek</span><span style="color: #000000;">&#40;</span> <span style="color: #00C800;">If</span><span style="color: #000000;">&#40;</span> oBrw:<span style="color: #000000;">lSeekWild</span>, oBrw:<span style="color: #000000;">cSeek</span>, <span style="color: #ff0000;">""</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; oBrw:<span style="color: #000000;">SetFocus</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> ;<br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">70</span>,<span style="color: #000000;">400</span> <span style="color: #0000ff;">PIXEL</span> <span style="color: #0000ff;">OF</span> oDlg<br /><br />&nbsp; &nbsp;@ <span style="color: #000000;">11</span>,<span style="color: #000000;">160</span> <span style="color: #0000ff;">SAY</span> oBrw:<span style="color: #000000;">oSeek</span> <span style="color: #0000ff;">PROMPT</span> oBrw:<span style="color: #000000;">cSeek</span> <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">200</span>,<span style="color: #000000;">10</span> <span style="color: #0000ff;">PIXEL</span> ;<br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">OF</span> oDlg <span style="color: #0000ff;">COLOR</span> CLR_BLACK,CLR_YELLOW <span style="color: #0000ff;">PICTURE</span> <span style="color: #ff0000;">'@!'</span><br /><br />&nbsp; &nbsp;oBrw:<span style="color: #000000;">CreateFromCode</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">CENTERED</span> <span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">INIT</span> <span style="color: #000000;">&#40;</span> oBrw:<span style="color: #000000;">SetFocus</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>, .f. <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #0000ff;">RELEASE</span> <span style="color: #0000ff;">FONT</span> oFont<br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br /><br /><span style="color: #B900B9;">//----------------------------------------------------------------------------//</span><br /><br /><span style="color: #00C800;">static</span> <span style="color: #00C800;">function</span> OpenData<span style="color: #000000;">&#40;</span> nSource, cList <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oCn, uSource<br /><br />&nbsp; &nbsp;<span style="color: #00C800;">SWITCH</span> nSource<br />&nbsp; &nbsp;<span style="color: #00C800;">CASE</span> <span style="color: #000000;">1</span><br />&nbsp; &nbsp;<span style="color: #00C800;">CASE</span> <span style="color: #000000;">3</span><br />&nbsp; &nbsp; &nbsp; USE CUSTOMER SHARED <span style="color: #00C800;">NEW</span> <span style="color: #0000ff;">ALIAS</span> CUST<br />&nbsp; &nbsp; &nbsp; SET ORDER <span style="color: #0000ff;">TO</span> TAG FIRST<br />&nbsp; &nbsp; &nbsp; GO TOP<br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">if</span> nSource == <span style="color: #000000;">3</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;uSource &nbsp;:= CUST-><span style="color: #000000;">&#40;</span> FW_DbfToArray<span style="color: #000000;">&#40;</span> cList <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CLOSE CUST<br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">else</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;uSource &nbsp;:= <span style="color: #ff0000;">"CUST"</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">endif</span><br />&nbsp; &nbsp; &nbsp; EXIT<br />&nbsp; &nbsp;<span style="color: #00C800;">CASE</span> <span style="color: #000000;">2</span><br />&nbsp; &nbsp; &nbsp; oCn &nbsp; := FW_OpenAdoConnection<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Provider=Microsoft.Jet.OLEDB.4.0;Data Source="</span> + ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cFilePath<span style="color: #000000;">&#40;</span> GetModuleFileName<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> + ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">"xbrtest.mdb;User Id=admin;Password=;"</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">if</span> oCn != <span style="color: #00C800;">nil</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;uSource &nbsp;:= FW_OpenRecordSet<span style="color: #000000;">&#40;</span> oCn, <span style="color: #ff0000;">"CUSTOMER"</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">endif</span><br />&nbsp; &nbsp; &nbsp; EXIT<br />&nbsp; &nbsp;<span style="color: #00C800;">DEFAULT</span><br />&nbsp; &nbsp; &nbsp; QUIT<br />&nbsp; &nbsp;END<br /><br /><span style="color: #00C800;">return</span> uSource<br /><br /><span style="color: #B900B9;">//----------------------------------------------------------------------------//</span><br />&nbsp;</div>[/code:3ndns0j5]
Starting With"" ""Containing""
[quote:1a46sphe]I'd like add also the options "Starting With", "Containing" on combobox but I not Know how make it [/quote:1a46sphe] XBROWSER.PRG already has the code for it. Please adapt .
Starting With"" ""Containing""
[quote="nageswaragunupudi":1e0nb9aw][quote:1e0nb9aw]I'd like add also the options "Starting With", "Containing" on combobox but I not Know how make it [/quote:1e0nb9aw] XBROWSER.PRG already has the code for it. Please adapt .[/quote:1e0nb9aw] yes I saw but I need to create this : when I insert this line @ 10, 550 COMBOBOX oBrw:oSortCbx VAR oBrw:cSortOrder; SIZE 100,400 PIXEL OF oDlg HEIGHTGET 14.8 STYLE CBS_DROPDOWN add also "Starting With", "Containing" on the same combobox and not on another combobox
Text"" Date/Time to ""Number"" ?
hi, have write my own "phpBB Froum Grabber" but i have use HMG Syntax. it work well with HMG and Xbase++ phpBB Forum but with FiveWin Forum i have Problem with Date/Time Format [quote:3zb6m28v]&raquo; Thu Oct 06, 2005 6:24 pm </p> &raquo; Thu Oct 06, 2005 8:28 pm </p> &raquo; Fri Oct 07, 2005 7:11 pm </p> &raquo; Sun Feb 26, 2006 9:17 am </p>[/quote:3zb6m28v] how can i convert those Date/Time String into his Format <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> [code=fw:3zb6m28v]<div class="fw" id="{CB}" style="font-family: monospace;">YYYY-MM-DD HH:<span style="color: #000000;">MM</span>:<span style="color: #000000;">SS</span></div>[/code:3zb6m28v]
Text"" Date/Time to ""Number"" ?
<!-- m --><a class="postlink" href="https://github.com/Petewg/harbour-core/wiki/Date-Time">https://github.com/Petewg/harbour-core/wiki/Date-Time</a><!-- m -->
Text"" Date/Time to ""Number"" ?
hi, [quote="cnavarro":1fvn72ds]https://github.com/Petewg/harbour-core/wiki/Date-Time[/quote:1fvn72ds] thx for Answer. which hb_* Function is to use to convert "Oct 06, 2005" into Type "D" <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> which DATE Format is need <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> i do have [code=fw:1fvn72ds]<div class="fw" id="{CB}" style="font-family: monospace;">   SET DATE ANSI<br />   SET CENTURY <span style="color: #0000ff;">ON</span></div>[/code:1fvn72ds]
Text"" Date/Time to ""Number"" ?
Do you wan to convert the string "&raquo; Thu Oct 06, 2005 6:24 pm </p>" into string "2005-10-06 18:24:00" ? You said you could do it with Xbase++. Can you please share your XBase++ code that does this conversion?
Text"" Date/Time to ""Number"" ?
hi, [quote="nageswaragunupudi":174pjj53]Do you wan to convert the string "&raquo; Thu Oct 06, 2005 6:24 pm </p>" into string "2005-10-06 18:24:00" ?[/quote:174pjj53] Yes [quote="nageswaragunupudi":174pjj53] You said you could do it with Xbase++. Can you please share your XBase++ code that does this conversion?[/quote:174pjj53] there is not special Xbase++ Function to convert that String into Date/Time Format i have made a ""Quick & Dirty" Function to convert [code=fw:174pjj53]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">FUNCTION</span> StringDate<span style="color: #000000;">&#40;</span> cLine, cTime <span style="color: #000000;">&#41;</span><br /><span style="color: #00C800;">LOCAL</span> ii, nPosi, cMonth, cNext, cYear, nSec, cMore<br /><span style="color: #00C800;">LOCAL</span> cYYYY, cMM, cDD, cHHMMSS<br /><span style="color: #00C800;">LOCAL</span> aMonth := <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"Jan"</span>, ;<br />                     <span style="color: #ff0000;">"Feb"</span>, ;<br />                     <span style="color: #ff0000;">"Mar"</span>, ;<br />                     <span style="color: #ff0000;">"Apr"</span>, ;<br />                     <span style="color: #ff0000;">"May"</span>, ;<br />                     <span style="color: #ff0000;">"Jun"</span>, ;<br />                     <span style="color: #ff0000;">"Jul"</span>, ;<br />                     <span style="color: #ff0000;">"Aug"</span>, ;<br />                     <span style="color: #ff0000;">"Sep"</span>, ;<br />                     <span style="color: #ff0000;">"Oct"</span>, ;<br />                     <span style="color: #ff0000;">"Nov"</span>, ;<br />                     <span style="color: #ff0000;">"Dec"</span> <span style="color: #000000;">&#125;</span><br /><br />   cTime := <span style="color: #ff0000;">"00:00:00"</span><br /><br />   <span style="color: #00C800;">FOR</span> ii := <span style="color: #000000;">1</span> <span style="color: #0000ff;">TO</span> LEN<span style="color: #000000;">&#40;</span> aMonth <span style="color: #000000;">&#41;</span><br />      <span style="color: #00C800;">IF</span> aMonth<span style="color: #000000;">&#91;</span> ii <span style="color: #000000;">&#93;</span> $ cLine<br />         cMM := STRZERO<span style="color: #000000;">&#40;</span> ii, <span style="color: #000000;">2</span> <span style="color: #000000;">&#41;</span><br />         cMonth := aMonth<span style="color: #000000;">&#91;</span> ii <span style="color: #000000;">&#93;</span><br />         EXIT<br />      <span style="color: #00C800;">ENDIF</span><br />   <span style="color: #00C800;">NEXT</span><br />   <span style="color: #00C800;">IF</span> EMPTY<span style="color: #000000;">&#40;</span> cMM <span style="color: #000000;">&#41;</span><br />      <span style="color: #00C800;">RETURN</span> CTOD<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">" . . "</span> <span style="color: #000000;">&#41;</span><br />   <span style="color: #00C800;">ENDIF</span><br /><br />   nPosi := <span style="color: #00C800;">AT</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"&raquo;"</span>, cLine <span style="color: #000000;">&#41;</span><br />   <span style="color: #00C800;">IF</span> nPosi > <span style="color: #000000;">0</span><br />      cLine := <span style="color: #0000ff;">SUBSTR</span><span style="color: #000000;">&#40;</span> cLine, nPosi + <span style="color: #000000;">7</span> <span style="color: #000000;">&#41;</span><br />   <span style="color: #00C800;">ELSE</span><br />      <span style="color: #00C800;">RETURN</span> CTOD<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">" . . "</span> <span style="color: #000000;">&#41;</span><br />   <span style="color: #00C800;">ENDIF</span><br /><br />   <span style="color: #B900B9;">//  &raquo; Thu Oct 06, 2005 6:24 pm </p></span><br />   nPosi := <span style="color: #00C800;">AT</span><span style="color: #000000;">&#40;</span> cMonth, cLine <span style="color: #000000;">&#41;</span><br />   <span style="color: #00C800;">IF</span> nPosi > <span style="color: #000000;">0</span><br />      cNext := <span style="color: #0000ff;">SUBSTR</span><span style="color: #000000;">&#40;</span> cLine, nPosi + <span style="color: #000000;">3</span> <span style="color: #000000;">&#41;</span><br /><br />      nPosi := <span style="color: #00C800;">AT</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">","</span>, cNext <span style="color: #000000;">&#41;</span><br />      <span style="color: #00C800;">IF</span> nPosi > <span style="color: #000000;">0</span><br />         cDD := LTRIM<span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">SUBSTR</span><span style="color: #000000;">&#40;</span> cNext, <span style="color: #000000;">1</span>, nPosi - <span style="color: #000000;">1</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br /><br />         cYear := LTRIM<span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">SUBSTR</span><span style="color: #000000;">&#40;</span> cNext, nPosi + <span style="color: #000000;">1</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br />         cYYYY := <span style="color: #0000ff;">SUBSTR</span><span style="color: #000000;">&#40;</span> cYear, <span style="color: #000000;">1</span>, <span style="color: #000000;">4</span> <span style="color: #000000;">&#41;</span><br /><br />         cMore := <span style="color: #0000ff;">SUBSTR</span><span style="color: #000000;">&#40;</span> cYear, <span style="color: #000000;">5</span> <span style="color: #000000;">&#41;</span><br />         <span style="color: #00C800;">IF</span> <span style="color: #ff0000;">"pm"</span> $ cMore<br />            nPosi := <span style="color: #00C800;">AT</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"pm"</span>, cMore <span style="color: #000000;">&#41;</span><br />            cHHMMSS := <span style="color: #0000ff;">SUBSTR</span><span style="color: #000000;">&#40;</span> cMore, <span style="color: #000000;">1</span>, nPosi - <span style="color: #000000;">1</span> <span style="color: #000000;">&#41;</span><br />            nSec := HMS2SEC<span style="color: #000000;">&#40;</span> cHHMMSS <span style="color: #000000;">&#41;</span><br />            nSec += <span style="color: #000000;">&#40;</span> <span style="color: #000000;">12</span> * <span style="color: #000000;">60</span> * <span style="color: #000000;">60</span> <span style="color: #000000;">&#41;</span><br />            cHHMMSS := SEC2HMS<span style="color: #000000;">&#40;</span> nSec <span style="color: #000000;">&#41;</span><br />         <span style="color: #00C800;">ELSE</span><br />            nPosi := <span style="color: #00C800;">AT</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"am"</span>, cMore <span style="color: #000000;">&#41;</span><br />            cHHMMSS := <span style="color: #0000ff;">SUBSTR</span><span style="color: #000000;">&#40;</span> cMore, <span style="color: #000000;">1</span>, nPosi - <span style="color: #000000;">1</span> <span style="color: #000000;">&#41;</span><br />            nSec := HMS2SEC<span style="color: #000000;">&#40;</span> cHHMMSS <span style="color: #000000;">&#41;</span><br />            cHHMMSS := SEC2HMS<span style="color: #000000;">&#40;</span> nSec <span style="color: #000000;">&#41;</span><br />         <span style="color: #00C800;">ENDIF</span><br /><br />      <span style="color: #00C800;">ELSE</span><br />         <span style="color: #00C800;">RETURN</span> CTOD<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">" . . "</span> <span style="color: #000000;">&#41;</span><br />      <span style="color: #00C800;">ENDIF</span><br />   <span style="color: #00C800;">ELSE</span><br />      <span style="color: #00C800;">RETURN</span> CTOD<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">" . . "</span> <span style="color: #000000;">&#41;</span><br />   <span style="color: #00C800;">ENDIF</span><br /><br />   cTime := cHHMMSS<br /><br /><span style="color: #00C800;">RETURN</span> STOD<span style="color: #000000;">&#40;</span> cYYYY + cMM + cDD <span style="color: #000000;">&#41;</span></div>[/code:174pjj53] p.s. HMS2SEC() and SEC2HMS() are to convert HH:MM:SS <-> Seconds is there a harbour Function <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
Text"" Date/Time to ""Number"" ?
Not sure this is useful to anybody to me, but this is how I convert back and forth from harbour datetime to ISO datetime. [code=fw:2dymxiv8]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// -------------------------------------------------------------------------- //</span><br /><br /><span style="color: #B900B9;">// DateTimeToISO8601( t )</span><br /><span style="color: #00C800;">FUNCTION</span> hb_TToI<span style="color: #000000;">&#40;</span> t <span style="color: #000000;">&#41;</span><br /><br />   hb_Default<span style="color: #000000;">&#40;</span> @t, DateTime<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br />   t := hb_TToS<span style="color: #000000;">&#40;</span> t <span style="color: #000000;">&#41;</span><br />   <span style="color: #00C800;">RETURN</span> <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> t, <span style="color: #000000;">01</span>, <span style="color: #000000;">04</span> <span style="color: #000000;">&#41;</span> + <span style="color: #ff0000;">"-"</span> + ;<br />          <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> t, <span style="color: #000000;">05</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> + <span style="color: #ff0000;">"-"</span> + ;<br />          <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> t, <span style="color: #000000;">07</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> + <span style="color: #ff0000;">"T"</span> + ;<br />          <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> t, <span style="color: #000000;">09</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> + <span style="color: #ff0000;">":"</span> + ;<br />          <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> t, <span style="color: #000000;">11</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> + <span style="color: #ff0000;">":"</span> + ;<br />          <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> t, <span style="color: #000000;">13</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> + <span style="color: #ff0000;">"."</span> + ;<br />          <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> t, <span style="color: #000000;">15</span>, <span style="color: #000000;">03</span> <span style="color: #000000;">&#41;</span><br /><br /><span style="color: #B900B9;">// -------------------------------------------------------------------------- //</span><br /><br /><span style="color: #B900B9;">// IS8601ToDateTime</span><br /><span style="color: #00C800;">FUNCTION</span> hb_IToT<span style="color: #000000;">&#40;</span> cISO <span style="color: #000000;">&#41;</span><br /><br />   <span style="color: #00C800;">IF</span> Empty<span style="color: #000000;">&#40;</span> cISO <span style="color: #000000;">&#41;</span><br />      <span style="color: #00C800;">RETURN</span> _EMPTY_DATETIME<br />   <span style="color: #00C800;">ENDIF</span><br /><br />   <span style="color: #00C800;">RETURN</span> hb_DateTime<span style="color: #000000;">&#40;</span> Val<span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> cISO, <span style="color: #000000;">01</span>, <span style="color: #000000;">04</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>, ;<br />                       Val<span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> cISO, <span style="color: #000000;">06</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>, ;<br />                       Val<span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> cISO, <span style="color: #000000;">09</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>, ;<br />                       Val<span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> cISO, <span style="color: #000000;">12</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>, ;<br />                       Val<span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> cISO, <span style="color: #000000;">15</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>, ;<br />                       Val<span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> cISO, <span style="color: #000000;">18</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>, ;<br />                       Val<span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> cISO, <span style="color: #000000;">21</span>, <span style="color: #000000;">03</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br /><br /><br /><br /> </div>[/code:2dymxiv8]
Text"" Date/Time to ""Number"" ?
[code=fw:30u03v7p]<div class="fw" id="{CB}" style="font-family: monospace;">Secs<span style="color: #000000;">&#40;</span> <cTimeStr> / <tDateTime> <span style="color: #000000;">&#41;</span> --> nSecs<br />TimeToSec<span style="color: #000000;">&#40;</span> <cTimeStr> <span style="color: #000000;">&#41;</span> --> nSecs<br /><br /><br />TString<span style="color: #000000;">&#40;</span> nSecs <span style="color: #000000;">&#41;</span> --> cTimeStr<br />SecToTime<span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#91;</span><nSeconds><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><lHundredth><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span> --> cTime<br />&nbsp;</div>[/code:30u03v7p]
Text"" Date/Time to ""Number"" ?
Thanks Rao. The secs() function in harbour actually gets mapped to hb_sec() in dateshb.c, which took me a few minutes to find. But I see a bunch of potentially useful functions there now that I'm going to test to see if I can get rid of the code I'm currently using and revert to native harbour. Robb
Text"" Date/Time to ""Number"" ?
[quote="rhlawek":zby7shvq]Not sure this is useful to anybody to me, but this is how I convert back and forth from harbour datetime to ISO datetime. [code=fw:zby7shvq]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// -------------------------------------------------------------------------- //</span><br /><br /><span style="color: #B900B9;">// DateTimeToISO8601( t )</span><br /><span style="color: #00C800;">FUNCTION</span> hb_TToI<span style="color: #000000;">&#40;</span> t <span style="color: #000000;">&#41;</span><br /><br />   hb_Default<span style="color: #000000;">&#40;</span> @t, DateTime<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br />   t := hb_TToS<span style="color: #000000;">&#40;</span> t <span style="color: #000000;">&#41;</span><br />   <span style="color: #00C800;">RETURN</span> <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> t, <span style="color: #000000;">01</span>, <span style="color: #000000;">04</span> <span style="color: #000000;">&#41;</span> + <span style="color: #ff0000;">"-"</span> + ;<br />          <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> t, <span style="color: #000000;">05</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> + <span style="color: #ff0000;">"-"</span> + ;<br />          <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> t, <span style="color: #000000;">07</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> + <span style="color: #ff0000;">"T"</span> + ;<br />          <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> t, <span style="color: #000000;">09</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> + <span style="color: #ff0000;">":"</span> + ;<br />          <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> t, <span style="color: #000000;">11</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> + <span style="color: #ff0000;">":"</span> + ;<br />          <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> t, <span style="color: #000000;">13</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> + <span style="color: #ff0000;">"."</span> + ;<br />          <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> t, <span style="color: #000000;">15</span>, <span style="color: #000000;">03</span> <span style="color: #000000;">&#41;</span><br /><br /><span style="color: #B900B9;">// -------------------------------------------------------------------------- //</span><br /><br /><span style="color: #B900B9;">// IS8601ToDateTime</span><br /><span style="color: #00C800;">FUNCTION</span> hb_IToT<span style="color: #000000;">&#40;</span> cISO <span style="color: #000000;">&#41;</span><br /><br />   <span style="color: #00C800;">IF</span> Empty<span style="color: #000000;">&#40;</span> cISO <span style="color: #000000;">&#41;</span><br />      <span style="color: #00C800;">RETURN</span> _EMPTY_DATETIME<br />   <span style="color: #00C800;">ENDIF</span><br /><br />   <span style="color: #00C800;">RETURN</span> hb_DateTime<span style="color: #000000;">&#40;</span> Val<span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> cISO, <span style="color: #000000;">01</span>, <span style="color: #000000;">04</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>, ;<br />                       Val<span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> cISO, <span style="color: #000000;">06</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>, ;<br />                       Val<span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> cISO, <span style="color: #000000;">09</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>, ;<br />                       Val<span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> cISO, <span style="color: #000000;">12</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>, ;<br />                       Val<span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> cISO, <span style="color: #000000;">15</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>, ;<br />                       Val<span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> cISO, <span style="color: #000000;">18</span>, <span style="color: #000000;">02</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>, ;<br />                       Val<span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">SubStr</span><span style="color: #000000;">&#40;</span> cISO, <span style="color: #000000;">21</span>, <span style="color: #000000;">03</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br /><br /><br /><br /> </div>[/code:zby7shvq][/quote:zby7shvq] I think these functions can be simplified like this: [code=fw:zby7shvq]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> ISO2DateTime<span style="color: #000000;">&#40;</span> cDate <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> df &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;:= Set<span style="color: #000000;">&#40;</span> _SET_DATEFORMAT, <span style="color: #ff0000;">"YYYY-MM-DD"</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> tf &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;:= Set<span style="color: #000000;">&#40;</span> _SET_TIMEFORMAT, <span style="color: #ff0000;">"HH:MM:SS.fff"</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> tDateTime &nbsp; := HB_CTOT<span style="color: #000000;">&#40;</span> cDate <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;Set<span style="color: #000000;">&#40;</span> _SET_DATEFORMAT, df <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Set<span style="color: #000000;">&#40;</span> _SET_TIMEFORMAT, tf <span style="color: #000000;">&#41;</span><br /><br /><span style="color: #00C800;">return</span> tDateTime<br /><br /><span style="color: #00C800;">function</span> DateTime2ISO<span style="color: #000000;">&#40;</span> tDateTime <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> df &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;:= Set<span style="color: #000000;">&#40;</span> _SET_DATEFORMAT, <span style="color: #ff0000;">"YYYY-MM-DD"</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> tf &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;:= Set<span style="color: #000000;">&#40;</span> _SET_TIMEFORMAT, <span style="color: #ff0000;">"HH:MM:SS.fff"</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> cDate &nbsp; &nbsp; &nbsp; := StrTran<span style="color: #000000;">&#40;</span> HB_TTOC<span style="color: #000000;">&#40;</span> tDateTime <span style="color: #000000;">&#41;</span>, <span style="color: #ff0000;">" "</span>, <span style="color: #ff0000;">"T"</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;Set<span style="color: #000000;">&#40;</span> _SET_DATEFORMAT, df <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;Set<span style="color: #000000;">&#40;</span> _SET_TIMEFORMAT, tf <span style="color: #000000;">&#41;</span><br /><br /><span style="color: #00C800;">return</span> cDate<br />&nbsp;</div>[/code:zby7shvq]
VMWare server"" - too good to be true?
Hello! <!-- m --><a class="postlink" href="http://www.theregister.co.uk/2006/02/03/vmware_goes_free/">http://www.theregister.co.uk/2006/02/03 ... goes_free/</a><!-- m --> <!-- m --><a class="postlink" href="http://news.com.com/VMware+to+make+server+product+free/2100-1012_3-6034615.html">http://news.com.com/VMware+to+make+serv ... 34615.html</a><!-- m --> More info at: <!-- m --><a class="postlink" href="http://www.virtualization.info/">http://www.virtualization.info/</a><!-- m --> Cheers, Roman PS. The Rings of Power <!-- m --><a class="postlink" href="http://www.devx.com/Intel/Article/30125">http://www.devx.com/Intel/Article/30125</a><!-- m --> PPS. Tu-ring <!-- m --><a class="postlink" href="http://www.itjungle.com/tfh/tfh013006-story04.html">http://www.itjungle.com/tfh/tfh013006-story04.html</a><!-- m -->
Windows to Go"" by Microsoft
[url:5cyasopb]http&#58;//www&#46;redmondpie&#46;com/microsoft-shows-off-windows-to-go-usb-stick-runs-windows-8-on-older-windows-7-pcs/[/url:5cyasopb]
Wine"" free source code
The free source code of "Wine" ([b:13s708qw]Win[/b:13s708qw]dows [b:13s708qw]E[/b:13s708qw]mulator) is a great source of information for many Windows APIs functions:<!-- m --><a class="postlink" href="http://cvs.winehq.org/cvsweb/wine/dlls/">http://cvs.winehq.org/cvsweb/wine/dlls/</a><!-- m --><!-- m --><a class="postlink" href="http://www.winehq.org">http://www.winehq.org</a><!-- m -->
Wine"" free source code
[quote="Antonio Linares":qoli4u1e]The free source code of "Wine" ([b:qoli4u1e]Win[/b:qoli4u1e]dows [b:qoli4u1e]E[/b:qoli4u1e]mulator) is a great source of information for many Windows APIs functions: <!-- m --><a class="postlink" href="http://cvs.winehq.org/cvsweb/wine/dlls/">http://cvs.winehq.org/cvsweb/wine/dlls/</a><!-- m --> <!-- m --><a class="postlink" href="http://www.winehq.org">http://www.winehq.org</a><!-- m -->[/quote:qoli4u1e]He descargado el source via CVSa estudiar, jjejjejje
Wine"" free source code
William,Si tienes Linux instalado tambien, puedes instalarle "Wine" y ejecutar tus aplicaciones Windows en Linux. Tambien está disponible para Mac, aunque como producto comercial denominado "CrossOver", pero es "Wine" <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->Funciona muy bien y nos permite "ver" el código fuente de algunas funciones de Windows que pueden resultar interesantes <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Wine"" free source code
Antonio,asi es, he estado estudiando C++, y veo muchas cosas interesantes.
close"" FW_OpenADOExcelSheet()
hi, i use[code=fw:1af16qre]<div class="fw" id="{CB}" style="font-family: monospace;">   objRS := FW_OpenADOExcelSheet<span style="color: #000000;">&#40;</span> cPathcFile, cSheet, cRange, lHeaders <span style="color: #000000;">&#41;</span></div>[/code:1af16qre] to get "ADODB.Recordset" of Excel Sheet FW_OpenADOExcelSheet() also open "ADODB.Connection" [code=fw:1af16qre]<div class="fw" id="{CB}" style="font-family: monospace;">   <span style="color: #00C800;">if</span> <span style="color: #000000;">&#40;</span> oCn := FW_OpenAdoExcelBook<span style="color: #000000;">&#40;</span> @cFile, lHeaders <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> == <span style="color: #00C800;">nil</span></div>[/code:1af16qre] i can "close" [code=fw:1af16qre]<div class="fw" id="{CB}" style="font-family: monospace;">   objRS:<span style="color: #000000;">Close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span></div>[/code:1af16qre] but *.XLSx Files seems to be "Lock" after use FW_OpenADOExcelSheet() how about "ADODB.Connection" which was called when use FW_OpenAdoExcelBook() <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
close"" FW_OpenADOExcelSheet()
[code=fw:6sz2ehe0]<div class="fw" id="{CB}" style="font-family: monospace;">oRs:<span style="color: #000000;">Close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />oRs:<span style="color: #000000;">ActiveConnection</span>:<span style="color: #000000;">Close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span></div>[/code:6sz2ehe0]
close"" FW_OpenADOExcelSheet()
hi, thx for Answer
disable"" Item in Listbox / Combobox
hi, when have a Listbox / Combobox with Drive-Letter i want to show all but "disable" all "fix Drive" [img:2hpibtwb]https&#58;//i&#46;postimg&#46;cc/TYsL2Qjp/Listbox-disable-Items&#46;png[/img:2hpibtwb] i want to use it for USB-Stick which i want to "safe eject"
disable"" Item in Listbox / Combobox
Try using GetDriveType() = DRIVE_REMOVABLE.
disable"" Item in Listbox / Combobox
hi Enrico, i do have use GetDriveType to get Drive Type now i want to change LISTBOX to "show" Removable Drive in other Color HMG [code=fw:2ujshgjr]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">PUBLIC</span> bColorUSB := <span style="color: #000000;">&#123;</span> || <span style="color: #00C800;">IF</span><span style="color: #000000;">&#40;</span> USB_DeviceColor<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>, SP_nColor2<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>, SP_nColor13<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span><br /><br /> <span style="color: #0000ff;">DEFINE</span> GRID Grid_Device<br />   ...<br />   DYNAMICFORECOLOR <span style="color: #000000;">&#123;</span> bColorUSB, bColorUSB <span style="color: #000000;">&#125;</span></div>[/code:2ujshgjr] Xbase++ [code=fw:2ujshgjr]<div class="fw" id="{CB}" style="font-family: monospace;"><br />   oListBox := MyListbox<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> :<span style="color: #00C800;">new</span><span style="color: #000000;">&#40;</span>...<span style="color: #000000;">&#41;</span><br /><br /><span style="color: #00C800;">METHOD</span> MyListbox:<span style="color: #0000ff;">Init</span><span style="color: #000000;">&#40;</span>...<span style="color: #000000;">&#41;</span><br />   ::<span style="color: #000000;">XbpListbox</span>:<span style="color: #0000ff;">Init</span><span style="color: #000000;">&#40;</span>...<span style="color: #000000;">&#41;</span><br />   ::<span style="color: #000000;">DrawMode</span> := XBP_DRAW_OWNER<br />   ::<span style="color: #000000;">XbpListbox</span>:<span style="color: #000000;">MeasureItem</span> := <span style="color: #000000;">&#123;</span> | nItem, aDims, oSelf | oSelf:<span style="color: #000000;">MyMeasureItem</span><span style="color: #000000;">&#40;</span> nItem, aDims, oSelf <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span><br />   ::<span style="color: #000000;">XbpListbox</span>:<span style="color: #000000;">drawItem</span> := <span style="color: #000000;">&#123;</span> | oPS, aInfo, oSelf | oSelf:<span style="color: #000000;">MyDrawItem</span><span style="color: #000000;">&#40;</span> oPS, aInfo, oSelf <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span><br /><br /><span style="color: #00C800;">METHOD</span> MyListbox:<span style="color: #000000;">MyDrawItem</span><span style="color: #000000;">&#40;</span> oPS, aInfo, oSelf <span style="color: #000000;">&#41;</span><br />    ...<br />      <span style="color: #00C800;">IF</span> ::<span style="color: #000000;">aCargo</span><span style="color: #000000;">&#91;</span> nItem <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#91;</span> <span style="color: #000000;">3</span> <span style="color: #000000;">&#93;</span> = .F.<br />         aSAttrs<span style="color: #000000;">&#91;</span> GRA_AS_COLOR <span style="color: #000000;">&#93;</span> := SP_nColor13<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />      <span style="color: #00C800;">ELSE</span><br />         aSAttrs<span style="color: #000000;">&#91;</span> GRA_AS_COLOR <span style="color: #000000;">&#93;</span> := IIF<span style="color: #000000;">&#40;</span> BAnd<span style="color: #000000;">&#40;</span> nState, XBP_DRAWSTATE_DISABLED <span style="color: #000000;">&#41;</span> != <span style="color: #000000;">0</span>, SP_nColor13<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>, SP_nColor2<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br />      <span style="color: #00C800;">ENDIF</span><br /><br />      aSAttrs<span style="color: #000000;">&#91;</span> GRA_AS_HORIZALIGN <span style="color: #000000;">&#93;</span> := GRA_HALIGN_RIGHT<br />      aSAttrs<span style="color: #000000;">&#91;</span> GRA_AS_VERTALIGN <span style="color: #000000;">&#93;</span> := GRA_VALIGN_HALF<br />      aSAttrs<span style="color: #000000;">&#91;</span> GRA_AS_ANGLE <span style="color: #000000;">&#93;</span> := <span style="color: #000000;">&#123;</span> <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span><br />      aOldAttrs := GRASETATTRSTRING<span style="color: #000000;">&#40;</span> oPS, aSAttrs <span style="color: #000000;">&#41;</span><br /><br />      oPS:<span style="color: #000000;">DrawCaptionStr</span><span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#123;</span> nFix * <span style="color: #000000;">1</span>, aTxtBox<span style="color: #000000;">&#91;</span> <span style="color: #000000;">2</span> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#125;</span>, ;<br />                          <span style="color: #000000;">&#123;</span> nFix * <span style="color: #000000;">2</span>, aTxtBox<span style="color: #000000;">&#91;</span> <span style="color: #000000;">4</span> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#125;</span>, cStr <span style="color: #000000;">&#41;</span><br /><br />      cVol := ::<span style="color: #000000;">aCargo</span><span style="color: #000000;">&#91;</span> nItem <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#91;</span> <span style="color: #000000;">2</span> <span style="color: #000000;">&#93;</span><br />      <span style="color: #00C800;">IF</span> EMPTY<span style="color: #000000;">&#40;</span> cVol <span style="color: #000000;">&#41;</span><br />      <span style="color: #00C800;">ELSE</span><br />         oPS:<span style="color: #000000;">DrawCaptionStr</span><span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#123;</span> nFix * <span style="color: #000000;">2</span>, aTxtBox<span style="color: #000000;">&#91;</span> <span style="color: #000000;">2</span> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#125;</span>, ;<br />                             <span style="color: #000000;">&#123;</span> aTxtBox<span style="color: #000000;">&#91;</span> <span style="color: #000000;">3</span> <span style="color: #000000;">&#93;</span> + IMAGE_BOX, aTxtBox<span style="color: #000000;">&#91;</span> <span style="color: #000000;">4</span> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#125;</span>, cVol <span style="color: #000000;">&#41;</span><br />      <span style="color: #00C800;">ENDIF</span></div>[/code:2ujshgjr] so my Question is : how under FiveWin <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
error adding symbols"" error with buildg.bat?
"d:\harbour201712\lib\win\mingw/libhbmacro.a: error adding symbols: Malformed archive collect2.exe: error: ld returned 1 exit status My setting in buildg.bat if "%fwh%" == "" set fwh=.\.. set hdir=d:\harbour201712 set hdirc=%hdir%\bin\harbour.exe set hlibs=%hdir%\lib\win\mingw set mingw=%hdir%\comp\mingw set path=%mingw%\bin Using latest harbour (nightly build) ang Mingw Any ideas? Thanks Taavi.
error adding symbols"" error with buildg.bat?
[quote="Taavi":2seu8yko]"d:\harbour201712\lib\win\mingw/libhbmacro.a: error adding symbols: Malformed archive collect2.exe: error: ld returned 1 exit status My setting in buildg.bat if "%fwh%" == "" set fwh=.\.. set hdir=d:\harbour201712 set hdirc=%hdir%\bin\harbour.exe set hlibs=%hdir%\lib\win\mingw set mingw=%hdir%\comp\mingw set path=%mingw%\bin Using latest harbour (nightly build) ang Mingw Any ideas? Thanks Taavi.[/quote:2seu8yko] Hi Tavi, Try to rearrange the libs you linked. There's no exact "how to", but try it randomly.
id"" for PRIMARY KEY ?
hi, i saw Name "id" for PRIMARY KEY in PostgreSQL Sample does Fivewin use Name "id" as default also for "other" SQL <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
id"" for PRIMARY KEY ?
Jimmy .. you can use any value you want to name your Primary key ..When I create all my Sql Tables I use the name of the table +EID .. example I have a table names "User" .. so the primary key I would create would be "UserEID" Totally you choice on how to name your primary key .. ps I do not use the "Auto" incremating feature .. I create my Primary key values myself .. Auto incremating Primary keys lend themselves to Sql Injection attacks .. Rick
id"" for PRIMARY KEY ?
[quote:rthc4moo]does Fivewin use Name "id" as default also for "other" SQL <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> [/quote:rthc4moo] Yes, by default for autoincrement primary field. Programmer can choose different field names. FWH functions allow specifying the structure of a table using a structure like DBSTRUCT(). FWH creates the required SQL for creating the table using the structure internally and creates the table. Using FWH functions for creating tables has the benefit of portability across different RDBMSs
id"" for PRIMARY KEY ?
hi, ok, understand @Rick are your User Name UNIQUE <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> [quote:15hchrz5]Auto incremating Primary keys lend themselves to Sql Injection attacks[/quote:15hchrz5] did you have a Sample to show the Problem <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
id"" for PRIMARY KEY ?
Jimmy I create my own primary keys that way I control when a table is appended .. if you use auto increment an attacker could force an table append or "Inject" records into your tables and the database doesn't care .. the primary keys are generated automatically .. for me I create ALL my primary keys programmatically to is someone infiltrates my database security and tries to create ne records or "Inject" ( append ) records they will fail because there is no primary key and the injection fails .. Just something to keep in mind .. .
id"" for PRIMARY KEY ?
[quote="Rick Lipkin":3h8gyr2h]Jimmy I create my own primary keys that way I control when a table is appended .. if you use auto increment an attacker could force an table append or "Inject" records into your tables and the database doesn't care .. the primary keys are generated automatically .. for me I create ALL my primary keys programmatically to is someone infiltrates my database security and tries to create ne records or "Inject" ( append ) records they will fail because there is no primary key and the injection fails .. Just something to keep in mind .. .[/quote:3h8gyr2h] I am not fully convinced. Can you please provide an example of a FWH program where a regular user can "inject" ?
id"" for PRIMARY KEY ?
Rao I am not talking about a regular user .. I am talking about a cyber attacker who wishes to gain control of your application and then try to insert or "Inject" malicious rows into your database .. If you have autoincrement set on your primary key .. there is nothing to stop a malicious attack to insert new rows into your SQL table. If I, on the other hand, have a routine on append to create programmatically to create a unique ID .. I don't have to worry about a hacker getting into my sql machine and trying to inject bogus rows because you can not append without a Primary key value .. [code=fw:3qb8zg1z]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">//-------------------</span><br /><span style="color: #00C800;">Static</span> Func _GenEid<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br /><span style="color: #B900B9;">// generate a unique primary key</span><br /><br /><br /><span style="color: #00C800;">LOCAL</span> nRAND,cRand<br /><span style="color: #00C800;">LOCAL</span> oRs, cSQL, oERR<br /><br />oRs:= TOleAuto<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"ADODB.Recordset"</span> <span style="color: #000000;">&#41;</span><br />oRs:<span style="color: #000000;">CursorType</span>     := <span style="color: #000000;">1</span>        <span style="color: #B900B9;">// opendkeyset</span><br />oRs:<span style="color: #000000;">CursorLocation</span> := <span style="color: #000000;">3</span>        <span style="color: #B900B9;">// local cache</span><br />oRs:<span style="color: #000000;">LockType</span>       := <span style="color: #000000;">3</span>        <span style="color: #B900B9;">// lockoportunistic</span><br /><br />cSQL := <span style="color: #ff0000;">"SELECT UserEid from UserInfo"</span><br /><br /><span style="color: #00C800;">TRY</span><br />   oRs:<span style="color: #000000;">Open</span><span style="color: #000000;">&#40;</span> cSQL,xCONNECT <span style="color: #000000;">&#41;</span><br />CATCH oErr<br />   <span style="color: #0000ff;">MsgInfo</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Error in Opening USERINFO table to Create Unique EID"</span> <span style="color: #000000;">&#41;</span><br />   <span style="color: #00C800;">RETURN</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"BOGUS"</span><span style="color: #000000;">&#41;</span><br />END <span style="color: #00C800;">TRY</span><br /><br /><span style="color: #00C800;">DO</span> <span style="color: #00C800;">WHILE</span> .T.<br /><br />   nRAND := nRANDOM<span style="color: #000000;">&#40;</span><span style="color: #000000;">10000000000000000</span><span style="color: #000000;">&#41;</span><br /><br />   <span style="color: #B900B9;">// 1 is reserved and 0 is a null key //</span><br /><br />   <span style="color: #00C800;">IF</span> nRAND = <span style="color: #000000;">1</span> .or. nRAND = <span style="color: #000000;">0</span> .or. nRAND = <span style="color: #00C800;">NIL</span><br />      LOOP<br />   <span style="color: #00C800;">ENDIF</span><br /><br />   cRAND := STR<span style="color: #000000;">&#40;</span>nRAND,<span style="color: #000000;">17</span><span style="color: #000000;">&#41;</span><br /><br />   <span style="color: #00C800;">IF</span> oRs:<span style="color: #000000;">eof</span><br />   <span style="color: #00C800;">ELSE</span><br />      oRs:<span style="color: #000000;">MoveFirst</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />      oRs:<span style="color: #000000;">Find</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"UserEid = '"</span>+cRAND+<span style="color: #ff0000;">"'"</span> <span style="color: #000000;">&#41;</span><br />   <span style="color: #00C800;">ENDIF</span><br /><br />   <span style="color: #00C800;">IF</span> oRs:<span style="color: #000000;">eof</span><br />      EXIT<br />   <span style="color: #00C800;">ELSE</span><br />      LOOP<br />   <span style="color: #00C800;">ENDIF</span><br /><br />   EXIT<br /><br /><span style="color: #00C800;">ENDDO</span><br /><br />oRs:<span style="color: #000000;">Close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />oRs := <span style="color: #00C800;">nil</span><br /><br /><span style="color: #00C800;">RETURN</span><span style="color: #000000;">&#40;</span> cRAND <span style="color: #000000;">&#41;</span><br /><br /><br /> </div>[/code:3qb8zg1z]
id"" for PRIMARY KEY ?
I am not asking how do generate unique primary key. I am asking for an example of an FWH program, using which SQLI (sql injection) is possible.
id"" for PRIMARY KEY ?
Rao .. I do not have an answer .. My "primary key procedure" is more of a preventative measure to keep attackers (from using whatever means) to hack my tables and covertly insert rows . Rick Lipkin
id"" for PRIMARY KEY ?
It all depends on our program. Not on autoinc keys We will discuss about SQLI after a few days.
swaping"" de funciones
Esto es un "hack" de la máquina virtual <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->, pero puede resultar muy util en determinadas circunstancias. Lo publico aqui por si alguien quiere probarlo:test.prg[code:1hekecyf] #include "FiveWin&#46;ch" static pOld function Main&#40;&#41; pOld &#58;= FunSwap&#40; "TIME", "MYTIME" &#41; MsgInfo&#40; Time&#40;&#41; &#41; // Hemos reemplazado la función Time&#40;&#41; original ! &#58;-&#41; return nil function MyTime&#40;&#41; local uRet &#58;= ExecPtr&#40; pOld &#41; // en caso de que queramos llamar a la función original return "now" #pragma BEGINDUMP #include <hbapi&#46;h> typedef void &#40; * PFUNC &#41; &#40; void &#41;; HB_FUNC&#40; FUNSWAP &#41; &#123; PHB_SYMB symFirst = hb_dynsymSymbol&#40; hb_dynsymFindName&#40; hb_parc&#40; 1 &#41; &#41; &#41;; PHB_SYMB symLast = hb_dynsymSymbol&#40; hb_dynsymFindName&#40; hb_parc&#40; 2 &#41; &#41; &#41;; PHB_FUNC pFirst = symFirst->value&#46;pFunPtr; symFirst->value&#46;pFunPtr = symLast->value&#46;pFunPtr; hb_retnl&#40; &#40; LONG &#41; pFirst &#41;; &#125; HB_FUNC&#40; EXECPTR &#41; &#123; PFUNC p = &#40; PFUNC &#41; hb_parnl&#40; hb_pcount&#40;&#41; &#41;; p&#40;&#41;; &#125; #pragma ENDDUMP [/code:1hekecyf]
swaping"" de funciones
Otro ejemplo:test.prg[code:2hsvc0m4] #include "FiveWin&#46;ch" static pOld function Main&#40;&#41; pOld &#58;= FunSwap&#40; "DATE", "TOMORROW" &#41; MsgInfo&#40; Date&#40;&#41; &#41; // We have replaced the original Date&#40;&#41; function! &#58;-&#41; return nil function Tomorrow&#40;&#41; local uRet &#58;= ExecPtr&#40; pOld &#41; // in case that we want to call the original function return uRet + 1 #pragma BEGINDUMP #include <hbapi&#46;h> typedef void &#40; * PFUNC &#41; &#40; void &#41;; HB_FUNC&#40; FUNSWAP &#41; &#123; PHB_SYMB symFirst = hb_dynsymSymbol&#40; hb_dynsymFindName&#40; hb_parc&#40; 1 &#41; &#41; &#41;; PHB_SYMB symLast = hb_dynsymSymbol&#40; hb_dynsymFindName&#40; hb_parc&#40; 2 &#41; &#41; &#41;; PHB_FUNC pFirst = symFirst->value&#46;pFunPtr; symFirst->value&#46;pFunPtr = symLast->value&#46;pFunPtr; hb_retnl&#40; &#40; LONG &#41; pFirst &#41;; &#125; HB_FUNC&#40; EXECPTR &#41; &#123; PFUNC p = &#40; PFUNC &#41; hb_parnl&#40; hb_pcount&#40;&#41; &#41;; p&#40;&#41;; &#125; #pragma ENDDUMP [/code:2hsvc0m4]
swaping"" de funciones
Una manera util de crear logs ó verificar parámetros:test.prg[code:30843blq] #include "FiveWin&#46;ch" static pOld function Main&#40;&#41; pOld &#58;= FunSwap&#40; "TEST", "LOGIT" &#41; MsgInfo&#40; Test&#40; "Hello", " world!" &#41; &#41; return nil function Test&#40; u1, u2 &#41; return u1 + u2 function LogIt&#40; u1, u2 &#41; local uRet &#58;= ExecPtr&#40; u1, u2, pOld &#41; // in case that we want to call the original function MsgInfo&#40; "Test&#40;&#41; called with these parameters&#58; " + u1 + ", " + u2 &#41; return uRet #pragma BEGINDUMP #include <hbapi&#46;h> typedef void &#40; * PFUNC &#41; &#40; void &#41;; HB_FUNC&#40; FUNSWAP &#41; &#123; PHB_SYMB symFirst = hb_dynsymSymbol&#40; hb_dynsymFindName&#40; hb_parc&#40; 1 &#41; &#41; &#41;; PHB_SYMB symLast = hb_dynsymSymbol&#40; hb_dynsymFindName&#40; hb_parc&#40; 2 &#41; &#41; &#41;; PHB_FUNC pFirst = symFirst->value&#46;pFunPtr; symFirst->value&#46;pFunPtr = symLast->value&#46;pFunPtr; hb_retnl&#40; &#40; LONG &#41; pFirst &#41;; &#125; HB_FUNC&#40; EXECPTR &#41; &#123; PFUNC p = &#40; PFUNC &#41; hb_parnl&#40; hb_pcount&#40;&#41; &#41;; p&#40;&#41;; &#125; #pragma ENDDUMP [/code:30843blq]
swaping"" de funciones
Gracias, esto esta muy interesante, con esto ya no hay duda a la hora de querer reemplazar una función de la librería por una nuestra, ya le encontré utilidad con la gran ventaja de poder hacer llamado a la original, algo así como si fuera un método de la clase superior <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> ¿habrá alguna manera de poder leer el valor de una variable estática?
swaping"" de funciones
¿habrá alguna manera de mandar el apuntador para poder substituir por una función estática? algo como esto (es xharbour no se si también lo tenga harbour)pOld := FunSwap( "TIME", @mytime() )o inclusivepOld := FunSwap( @time(), @mytime() )realmente la única importante sería la primera, ya que time() siempre es visible
swaping"" de funciones
Quique,Sabía que te iba a interesar este tema <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->Se puede hacer todo lo que comentas, pero ojo, el código ha de ser distinto, ya que @name() devuelve un item "pointer", pero a partir de él podemos llegar a su puntero real <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> (El verdadero puntero en C del código).
swaping"" de funciones
Jajajajaja ¿tan obvio soy? <!-- s:P --><img src="{SMILIES_PATH}/icon_razz.gif" alt=":P" title="Razz" /><!-- s:P --> Si me interesa, de hecho, ya tengo el programa en el que lo voy a probar, pero si me interesa la posibilidad de utilizar funciones estáticas para las funciones substitutas, esto es con el fin de no tener que preocuparme si existe alguna otra con el mismo nombre, ya sea en en el programa o alguna librería, despues de todo no será llamada en ningún otro lado con el nombre real.Y el tema de las estáticas también lo tengo, necesito conocer el valor de una variable estática (en este caso dentro del prg no de la función), para no tener que copiar todo el prg para modificar una sola función.
swaping"" de funciones
Quique,No es que sea adivino, sino que esta mañana encontré esto <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --><!-- m --><a class="postlink" href="http://groups.google.com/group/comp.lang.xharbour/browse_thread/thread/690659b43475b371">http://groups.google.com/group/comp.lan ... b43475b371</a><!-- m -->Basándote en el código que he proporcionado, y usando un item "pointer" deberias poder acceder a funciones estáticas.
swaping"" de funciones
Pues me echaré un clavado, si no, le pediré ayuda a los expertos, lo que pasa es que mi conocimiento de C es algo menos que básico, ya escribiré aquí la solución para que la suban al fivewin wiki
swaping"" de funciones
Cortesia de Vic (<!-- e --><a href="mailto:vic@guerra.com.mx">vic@guerra.com.mx</a><!-- e -->) (no es conocido del foro porque no se asoma por aquí), gracias gran gurú de xharbour.[code:2k2i2alr] function Main&#40;&#41; FunSwapPtr&#40; "DATE", @MyDate&#40;&#41; &#41; ? DATE&#40;&#41; ? &&#40; "DATE&#40;&#41;" &#41; return nil #pragma BEGINDUMP #include <hbapi&#46;h> typedef void &#40; * PFUNC &#41; &#40; void &#41;; HB_FUNC&#40; FUNSWAPPTR &#41; &#123; PHB_SYMB symFirst = hb_dynsymSymbol&#40; hb_dynsymFindName&#40; hb_parc&#40; 1 &#41; &#41; &#41;; PHB_FUNC pFirst = symFirst->value&#46;pFunPtr; symFirst->value&#46;pFunPtr = &#40; &#40; PHB_SYMB &#41; hb_parptr&#40; 2 &#41; &#41;->value&#46;pFunPtr; hb_retnl&#40; &#40; LONG &#41; pFirst &#41;; &#125; #pragma ENDDUMP STATIC FUNCTION MyDate&#40;&#41; RETURN STOD&#40; "19680329" &#41; [/code:2k2i2alr]