messages
listlengths
1
1
topic
stringlengths
2
60
[ { "date": "2006-04-27", "forum": "FiveWin para Harbour/xHarbour", "text": "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. \n\nEl 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?\n\nGeorge", "time": "13:22", "topic": "\"Pegar\" DIALOGO a MAIN WINDOW", "username": "George" } ]
"Pegar" DIALOGO a MAIN WINDOW
[ { "date": "2006-04-27", "forum": "FiveWin para Harbour/xHarbour", "text": "George,\n\nPara que el diálogo sea \"child\" de la ventana, usa la claúsula OF:\n\nDEFINE DIALOG ... OF oWnd\n\nAsí se moverá a la vez que se mueva la ventana.", "time": "14:58", "topic": "\"Pegar\" DIALOGO a MAIN WINDOW", "username": "Antonio Linares" } ]
"Pegar" DIALOGO a MAIN WINDOW
[ { "date": "2006-04-27", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio\n\nAsi es que lo tengo desde el principio, debe ser otra cosa que me falta.\n\nAbajo esta el codigo simplificado a ver si tu puedes ver algo que yo estoy pasando por alto\n\n>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\nFUNCTION Main()\n BWCCRegister(GetResources())\n\nPUBLIC oWnd\n\n DEFINE FONT oFont NAME \"MS SANS SERIF\" SIZE 0,-8 //BOLD\n DEFINE FONT oFont01 NAME \"VERDANA\" SIZE 0,-11 BOLD\n\n\n Inicio()\n\n cAppliDir := SFN2LFN(cAppliDir)\n\n DEFINE BRUSH oBrush COLOR CLR_WHITE\n DEFINE WINDOW oWnd MDI;\n\t\tFROM 4,10 TO 45.70, 140;\n TITLE (\"Customer's Verification Software\");\n\tBRUSH oBrush\n\t\n oWnd:SetFont(oFont)\n\n FrameBar()\n oWnd:SetMenu(MainMenu())\n\n \n ACTIVATE WINDOW oWnd ON INIT ( Seguridad(), ActivateDialog() )\n \nRETURN (.T.)\n\n\nFUNCTION ActivateDialog()\n\n DEFINE DIALOG oDlg RESOURCE \"DIALOG_4\" of oWnd ;\n\n.......\n........\n.........\n\n ACTIVATE DIALOG oDlg NOWAIT ON INIT oDlg:Move(155, 85)\n\nRETURN .T.\n\n>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\nAsi 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\n\nGracias por todo\n\nGeorge", "time": "23:42", "topic": "\"Pegar\" DIALOGO a MAIN WINDOW", "username": "George" } ]
"Pegar" DIALOGO a MAIN WINDOW
[ { "date": "2006-04-28", "forum": "FiveWin para Harbour/xHarbour", "text": "George,\n\nEs preciso que muestres como está definido \"DIALOG_4\" en tu fichero RC.", "time": "09:30", "topic": "\"Pegar\" DIALOGO a MAIN WINDOW", "username": "Antonio Linares" } ]
"Pegar" DIALOGO a MAIN WINDOW
[ { "date": "2006-04-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio,\n\nEl 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.\n\nSaludos\n\n\nGeorge", "time": "13:31", "topic": "\"Pegar\" DIALOGO a MAIN WINDOW", "username": "George" } ]
"Pegar" DIALOGO a MAIN WINDOW
[ { "date": "2006-04-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Esto quiza te pueda servir\n\n[code:2y8fvhcj]/*\n ╔════════════════════════════════════════════════════════════════════════╗\n ║ Program......: DlgChild.prg ║\n ║ Date.........: 07-01-2004 ║\n ║ Author.......: Renzo A. Balboa Flores ║\n ║ Compiler.....: Clipper Ver 5.3 ║\n ║ Description..: Clase TDlgChild hereda de TMDIChild ║\n ║ Child con dialogo inscrustado ║\n ╠════════════════════════════════════════════════════════════════════════╣\n ║ Modificación : Mon - 14/Feb/2005 --- 01:27 AM ║\n ╚════════════════════════════════════════════════════════════════════════╝\n*/\n\n#Include 'Fivewin.ch'\n\nCLASS TDlgChild FROM TMDIChild\n\n DATA oDlg\n DATA lModal AS LOGICAL INIT .T.\n\n METHOD New() CONSTRUCTOR\n METHOD Activate()\n METHOD DefControl( oCtrl ) INLINE ::oDlg:DefControl( oCtrl )\n METHOD End()\n METHOD Update() INLINE ::oDlg:Update()\n METHOD ClassName() INLINE 'TDIALOG' //para tsbrowse\n\n ENDCLASS\n\n//----------------------------------------------------------------------------//\n\nMETHOD New( cTitle, cResource, nTop, nLeft, nBottom, nRight, lPixel ) CLASS TDlgChild\n DEFAULT lPixel := .F.\n\n ::bEnd := { || Nil }\n\n Super:New( ::nTop, ::nLeft, ::nBottom, ::nRight, cTitle, Nil, Nil, Nil, ;\n oApp:oWnd:oIcon, .F., Nil, Nil, Nil, Nil, .T., .F., Nil, Nil, .T., ;\n .T., .T., .F. ) //No Maximize\n\n If Empty( cResource )\n If lPixel\n DEFINE DIALOG ::oDlg FROM nTop, nLeft TO nBottom, nRight PIXEL OF Self STYLE WS_CHILD\n ::hWnd := 0\n Else\n DEFINE DIALOG ::oDlg FROM nTop, nLeft TO nBottom, nRight OF Self STYLE WS_CHILD\n ::hWnd := 0\n EndIf\n Else\n DEFINE DIALOG ::oDlg RESOURCE cResource OF Self\n EndIf\n\n Return Self\n\n//----------------------------------------------------------------------------//\n\nMETHOD Activate( bInit ) CLASS TDlgChild\n Local nW := If( IsWinNT(), 8, 8 )\n Local nH := If( IsWinNT(),33, 27 )\n Local oChild := Self\n\n ACTIVATE DIALOG ::oDlg NOWAIT VALID ( oChild:End(), .T. )\n\n ::oDlg:Move( 0,0 )\n\n ::nWidth := ::oDlg:nWidth + nW\n ::nHeight := ::oDlg:nHeight + nH\n\n Super:Activate(,,,,,,, bInit, )\n/*( cShow, bLClicked, bRClicked, bMoved, bResized, bPainted,;\n bKeyDown, bInit, bUp, bDown, bPgUp, bPgDn, bLeft, bRight,;\n bPgLeft, bPgRight, bValid ) */\n Return Self\n\n//----------------------------------------------------------------------------// [/code:2y8fvhcj]\n\nMode de uso:\n[code:2y8fvhcj]\n\n oDlg := TDlgChild( \"Tu Titulo\", \"DLGRECURSO\" )\n\n\n[/code:2y8fvhcj]\n\nPara los controles los declaras normal", "time": "15:16", "topic": "\"Pegar\" DIALOGO a MAIN WINDOW", "username": "RenOmaS" } ]
"Pegar" DIALOGO a MAIN WINDOW
[ { "date": "2006-04-29", "forum": "FiveWin para Harbour/xHarbour", "text": "Renomas\n\nGracias por tu ayuda\nPero al tratar de compilar la clase que me enviaste se me genera un error: Unresolved external symbol HB_FUN_TDLGCHILD_END.\nParece que no existe el metodo END.\n\nSaludos\n\n\nGeorge", "time": "03:51", "topic": "\"Pegar\" DIALOGO a MAIN WINDOW", "username": "George" } ]
"Pegar" DIALOGO a MAIN WINDOW
[ { "date": "2006-04-29", "forum": "FiveWin para Harbour/xHarbour", "text": "George,\n\nPor favor revisa el ejemplo samples\\TestMdi4.prg", "time": "07:40", "topic": "\"Pegar\" DIALOGO a MAIN WINDOW", "username": "Antonio Linares" } ]
"Pegar" DIALOGO a MAIN WINDOW
[ { "date": "2006-04-30", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio,\n\nSolucionado gracias al ejemplo testmdi4.prg\n\nGracias\n\n\nGeorge", "time": "15:08", "topic": "\"Pegar\" DIALOGO a MAIN WINDOW", "username": "George" } ]
"Pegar" DIALOGO a MAIN WINDOW
[ { "date": "2008-08-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Dear Antonio and friends!\r\n\r\n[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]\r\n\r\nMy syntax is here:\r\n[code:20op8ghm]REDEFINE SAY PROMPT \"Test oSay Transparent\" ID 4001 OF oDlg FONT ( TFont():new( \"Tahoma\", 0, 25,, .T. ) ) TRANSPARENT[/code:20op8ghm]\r\nBut, still not work!", "time": "18:48", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "JC" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello JC,\r\n\r\ni couldn't detect any problem.\r\n\r\nAs you can see : a transparent SAY on Gradient-background.\r\nValue 0.50 is a GET\r\n\r\nThe say-text is directly written inside the resource. !!!!\r\n\r\nI didn't use REDEFINE SAY\r\n\r\n[img:2761oldd]http&#58;//www&#46;pflegeplus&#46;com/pictures/setting9&#46;jpg[/img:2761oldd]\r\n\r\nRegards\r\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->", "time": "19:10", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "ukoenig" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Uwe, this is my REDEFINE SAY into our application:\r\n\r\n[img:2swl9dyx]http&#58;//lh3&#46;ggpht&#46;com/ferreira&#46;together/SLWbm9euuWI/AAAAAAAAAKc/qRhMwH5JeZM/s800/say&#46;JPG[/img:2swl9dyx]\r\n\r\nIt's on top of a bitmap image from resource!\r\nNot works!", "time": "19:24", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "JC" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello JC,\r\n\r\nI understand.\r\nThis is complete different ( Text on BMP ).\r\nI will give you a source-sample for this in this topic.\r\n\r\nRegards\r\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->", "time": "19:29", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "ukoenig" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-27", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"ukoenig\":20ata0f5]Hello JC,\n\nI understand.\nThis is complete different ( Text on BMP ).\nI will give you a source-sample for this in this topic.\n\nRegards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->[/quote:20ata0f5]\r\n\r\nUew, please send me on <!-- e --><a href=\"mailto:[email protected]\">[email protected]</a><!-- e -->! And thanks!", "time": "19:31", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "JC" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Júlio,\r\n\r\nAre you using a BRUSH from a bitmap for the Dialog ?", "time": "19:32", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "Antonio Linares" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-27", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Antonio Linares\":e3pmnzzd]Júlio,\n\nAre you using a BRUSH from a bitmap for the Dialog ?[/quote:e3pmnzzd]\r\n\r\nAntonio, not! I'm using this way:\r\n[code:e3pmnzzd]TBitmap&#40;&#41;&#58;redefine&#40; nId, cResName,, oDlg,,,, lStretch,,,,,, lTransparent &#41;[/code:e3pmnzzd]", "time": "19:37", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "JC" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Júlio,\r\n\r\nThen try to use:\r\n\r\noBitmap:Say( nRow, nCol, cText, ... )\r\n\r\n METHOD Say( nRow, nCol, cText, nClrFore, nClrBack, oFont, lPixel,;\r\n lTransparent, nAlign )", "time": "19:39", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "Antonio Linares" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-27", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Antonio Linares\":12vzrf65]Júlio,\n\nThen try to use:\n\noBitmap:Say( nRow, nCol, cText, ... )\n\n METHOD Say( nRow, nCol, cText, nClrFore, nClrBack, oFont, lPixel,;\n lTransparent, nAlign )[/quote:12vzrf65]\r\n\r\nAntonio,\r\n\r\nI tried with this implementation, but not works!\r\n[code:12vzrf65] oBitmap &#58;= TBitmap&#40;&#41;&#58;redefine&#40; 100, \"IMG_BARRA_TOP\",, oDlg &#41;\n oBitmap&#58;say&#40; 2, 2, \"Cadastro Plano de Contas\",,,,, &#46;T&#46; &#41;[/code:12vzrf65]\r\n\r\nThis the result image:\r\n[img:12vzrf65]http&#58;//lh6&#46;ggpht&#46;com/ferreira&#46;together/SLWhsC5clfI/AAAAAAAAAKk/AAeAjppQlRY/s800/say&#46;JPG[/img:12vzrf65]", "time": "19:47", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "JC" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Julio,\r\n\r\nYou have to do that call from the ON INIT of the dialog:\r\n\r\nACTIVATE DIALOG oDlg ;\r\nON INIT oBitmap:Say( 2, 2, \"Cadastro Plano de Contas\",,,,, .T. )", "time": "19:50", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "Antonio Linares" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-27", "forum": "FiveWin for Harbour/xHarbour", "text": "And remove the SAY control ! (\"text\") <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->", "time": "19:51", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "Antonio Linares" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-27", "forum": "FiveWin for Harbour/xHarbour", "text": "In fact, it should be used from the ON PAINT, to properly refresh:\r\n\r\nACTIVATE DIALOG oDlg ; \r\nON PAINT oBitmap:Say( 2, 2, \"Cadastro Plano de Contas\",,,,, .T. )", "time": "19:52", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "Antonio Linares" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\r\n\r\nMy code:\r\n\r\n[code:95ak1q3i]DEFINE DIALOG oDlg RESOURCE \"DEFAULT_FORM\" OF oWnd ICON oIcon\n\n oBitmap &#58;= TBitmap&#40;&#41;&#58;redefine&#40; 100, \"IMG_BARRA_TOP\",, oDlg &#41;\n \n &#46;&#46;&#46;\n\nACTIVATE DIALOG oDlg CENTER ON PAINT &#40; oBitmap&#58;say&#40; 2, 2, \"Cadastro Plano de Contas\",,,,, &#46;T&#46; &#41; &#41;[/code:95ak1q3i]\r\nSorry, but still not work!\r\n\r\nWe using the class TSSay with syntax [b:95ak1q3i]REDEFINE SENSITIVE SAY ... TRANSPARENT[/b:95ak1q3i] and this works fine!\r\nI really want to use the native class of FWH with transparency! It's very better than!", "time": "19:59", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "JC" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello JC,\r\n\r\nLike Antonio told you : You have to use ONPAINT, to solve your problem. \r\n\r\nHere is just a quick sample, how i use text-writing on BMP's from Resource on any places.\r\nThe BMP-resource is filled with a brush or color, then a text is painted. \r\nI use it for my Title-paintings. \r\nMaybe you can find some informations on it.\r\n\r\nThe resource < Blanc > is a small BMP inside the resource, used as container. ID 100 is your BMP with the original size.\r\nPOSLEFT defines the needed left-position of the text.\r\nThe top-position of the text is calculated from the font- and BMP-height,\r\nto center the text vertical.\r\n\r\n[code:1eal7zdi]\n\nREDEFINE BITMAP oBmp1 ID 100 ADJUST RESOURCE \"Blanc\" OF oDlg1\noBmp1&#58;bPainted &#58;= &#123; |hDC|OnPaint&#40; oDlg1,hDC,oBMP1, \"Your Text\", oFont, POSLEFT &#41; &#125; \n\n//----------------------------------------------------------------// \n\nFUNCTION ONPAINT&#40;oDlg1,hDC,oBmp,cText, oBFont,nPOSLEFT &#41; \nLOCAL hOldFont, oNewbrush, hBitmap, aRect, nTOP, nLEFT\n\nhOldFont &#58;= SelectObject&#40; hDC, oBFont&#58;hFont &#41;\n\n// find the text-length\n\nnTXTLG &#58;= GettextWidth&#40; hDC, cText &#41; \n\nnBMPLONG &#58;= oBmp&#58;Super&#58;nWidth&#40;&#41; \nnBMPHIGHT &#58;= oBmp&#58;Super&#58;nHeight&#40;&#41; \nnFONTHIGHT &#58;= oBfont&#58;nInpHeight * -1 \n\n// The text-pos is calculated\n\nnLEFT &#58;= 5\n\nIF nPOSLEFT = 0\n // Center-position in BMP if POSLEFT = 0\n nLEFT &#58;= &#40;nBMPLONG - nTXTLG&#41; / 2 \nELSE\n // defined left-position\n nLEFT &#58;= nPOSLEFT \nENDIF\n\nnNEWHIGHT &#58;= nFONTHIGHT\n\n// Text-top-position is calculated&#46;\n\nnTOP &#58;= &#40;nBMPHIGHT - nNEWHIGHT&#41; / 2\n\naRect &#58;= GETCLIENTRECT&#40; oBmp&#58;hWnd &#41;\n\noBmp&#58;oBrush &#58;= oNewbrush \n\nSetTextColor&#40; hDC,nColor&#41;\nSetBkMode&#40; oBmp&#58;hDC, 0 &#41;\n\n// Fills your BMP with a brush\n\nFillRect&#40; hDC, aRect, oBmp&#58;oBrush&#58;hBrush &#41;\n\nIF nPOSLEFT > 0\n TextOut&#40; hDC, nTOP, nLEFT, cText &#41;\nELSE\n TextOut&#40; hDC, nTOP, nLEFT, cText &#41; \nENDIF\nSelectObject&#40; hDC, hOldFont &#41; \n\nRETURN NIL\n\n[/code:1eal7zdi]\r\n\r\nRegards\r\nUwe", "time": "20:03", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "ukoenig" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-28", "forum": "FiveWin for Harbour/xHarbour", "text": "Uwe,\r\n\r\n>Like Antonio told you : You have to use ONPAINT, to solve your problem. \r\n\r\nI 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.\r\n\r\nJames", "time": "00:10", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "James Bott" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-28", "forum": "FiveWin for Harbour/xHarbour", "text": "James,\r\n\r\nFWH uses a Windows standard control (\"static\") for the SAYs. This way standard static controls can be used from the resources editors. \r\n\r\nI guess that TSSay implements a user defined control to solve those limitations.", "time": "12:05", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "Antonio Linares" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-28", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"James Bott\":333azhx0]Uwe,\n\n>Like Antonio told you : You have to use ONPAINT, to solve your problem. \n\nI 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.\n\nJames[/quote:333azhx0]\r\n\r\nDear James,\r\n\r\nThat's it! With native say control, if works, is too much complicated!", "time": "12:33", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "JC" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-28", "forum": "FiveWin for Harbour/xHarbour", "text": "Dear friends!\r\n\r\nThe TSSay class!\r\n\r\n<!-- m --><a class=\"postlink\" href=\"http://rapidshare.com/files/140764158/SSay.prg.html\">http://rapidshare.com/files/140764158/SSay.prg.html</a><!-- m -->", "time": "12:36", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "JC" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-28", "forum": "FiveWin for Harbour/xHarbour", "text": "Júlio,\r\n\r\nHere you have a working example <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\r\n\r\ntest.prg\r\n[code:25b1g35e]\n#include \"FiveWin&#46;ch\" \n\nfunction Main&#40;&#41; \n\n local oDlg, oBmp, oFont \n\n DEFINE FONT oFont NAME \"Verdana\" SIZE 0, -16 BOLD\n\n DEFINE DIALOG oDlg RESOURCE \"Test\" COLOR \"N/B\"\n \n REDEFINE BITMAP oBmp ID 100 OF oDlg FILENAME \"test&#46;bmp\"\n \n oBmp&#58;bPainted = &#123; | hDC | oBmp&#58;Say&#40; 12, 20, \"Cadastro Plano de Contas\",,, oFont, &#46;T&#46;, &#46;T&#46; &#41; &#125;\n\n ACTIVATE DIALOG oDlg CENTERED\n \n oFont&#58;End&#40;&#41;\n\nreturn nil\n[/code:25b1g35e]\ntest.rc\n[code:25b1g35e]\ntest DIALOG 98, 55, 185, 147\nSTYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU\nCAPTION \"Test\"\nFONT 8, \"MS Sans Serif\"\n&#123;\n CONTROL \"\", 100, \"TBitmap\", 0 | WS_CHILD | WS_VISIBLE, 0, -1, 185, 29\n DEFPUSHBUTTON \"OK\", 1, 67, 128, 50, 14\n&#125;\n[/code:25b1g35e]\r\n[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]", "time": "12:37", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "Antonio Linares" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-28", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio, James, Uwe and friends!\r\n\r\nIt's works now! With very much strength!! <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->\r\n\r\nThis is my generic user function:\r\n[code:3vzdns3p]FUNCTION aplImage&#40; oDlg, nId, cResNome, lTransparente, lStretch, cLabel &#41;\n\nLOCAL oBitmap\n\nDEFAULT lTransparente &#58;= &#46;F&#46; , ;\n cResNome &#58;= \"IMG_BARRA_TOP\", ;\n nId &#58;= 100 , ;\n lStretch &#58;= &#46;F&#46; , ;\n cLabel &#58;= NIL\n\n\noBitmap &#58;= TBitmap&#40;&#41;&#58;redefine&#40; nId, cResNome,, oDlg,,,, lStretch,,,,,, lTransparente &#41;\n\nIF !empty&#40; cLabel &#41;\n 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;\nENDIF\n\nRETURN&#40; oBitmap &#41;[/code:3vzdns3p]", "time": "12:57", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "JC" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-28", "forum": "FiveWin for Harbour/xHarbour", "text": "Julio,\r\n\r\nYou have to modify your function as you are creating fonts and you are not releasing them:\r\n[code:9weg12lc]\nFUNCTION aplImage&#40; oDlg, nId, cResNome, lTransparente, lStretch, cLabel &#41; \n\nLOCAL oBitmap \n\nstatic oFont\n\nDEFAULT lTransparente &#58;= &#46;F&#46; , ; \n cResNome &#58;= \"IMG_BARRA_TOP\", ; \n nId &#58;= 100 , ; \n lStretch &#58;= &#46;F&#46; , ; \n cLabel &#58;= NIL \n\noBitmap &#58;= TBitmap&#40;&#41;&#58;redefine&#40; nId, cResNome,, oDlg,,,, lStretch,,,,,, lTransparente &#41; \n\nIF ! Empty&#40; cLabel &#41; \n if oFont == nil\n oFont = TFont&#40;&#41;&#58;new&#40; \"Tahoma\", 0, 25,, &#46;T&#46; &#41;\n endif\n oBitmap&#58;bPainted = &#123;|hDC| oBitmap&#58;Say&#40; 12, 20, cLabel,,, oFont, &#46;T&#46;, &#46;T&#46; &#41; &#125; \nENDIF \n\nRETURN oBitmap\n[/code:9weg12lc]", "time": "13:05", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "Antonio Linares" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-28", "forum": "FiveWin for Harbour/xHarbour", "text": "Thank you Linares!\r\n\r\nI have changed my source!\r\n\r\nAntonio, no have a way for redefine the say with this syntax and with the same effect of a bPainted call?\r\n\r\n[b:1l7s06ig]REDEFINE SAY ... TRANPARENT[/b:1l7s06ig]", "time": "13:44", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "JC" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2008-08-28", "forum": "FiveWin for Harbour/xHarbour", "text": "Júlio,\r\n\r\nNo, not yet", "time": "17:02", "topic": "\"REDEFINE SAY ... TRANSPARENT\" not work! SOLVED!", "username": "Antonio Linares" } ]
"REDEFINE SAY ... TRANSPARENT" not work! SOLVED!
[ { "date": "2009-05-06", "forum": "FiveWin for Pocket PC", "text": "Hi,\nWhat event gets triggered when the user resizes the column width of the tcbrowse control? I appreciate any help.\n\nBert", "time": "16:25", "topic": "\"Resize\" event for tcbrowse column", "username": "hterce" } ]
"Resize" event for tcbrowse column
[ { "date": "2009-05-07", "forum": "FiveWin for Pocket PC", "text": "Bert,\n\nClass TCBrowse does not send any specific notification for such event.\n\nWhat 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:-) -->", "time": "01:56", "topic": "\"Resize\" event for tcbrowse column", "username": "Antonio Linares" } ]
"Resize" event for tcbrowse column
[ { "date": "2009-05-07", "forum": "FiveWin for Pocket PC", "text": "Hi,\n\nThis 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.\n\nThanks\nBert", "time": "02:40", "topic": "\"Resize\" event for tcbrowse column", "username": "hterce" } ]
"Resize" event for tcbrowse column
[ { "date": "2009-05-07", "forum": "FiveWin for Pocket PC", "text": "Bert,\n\nYou 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:\n[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]\noBrowse:bColResized = { | oBrowse | ... your code ... }", "time": "03:12", "topic": "\"Resize\" event for tcbrowse column", "username": "Antonio Linares" } ]
"Resize" event for tcbrowse column
[ { "date": "2009-05-07", "forum": "FiveWin for Pocket PC", "text": "Antonio, thanks a lot. This should do it. Have a nice day.\n\nBert", "time": "03:58", "topic": "\"Resize\" event for tcbrowse column", "username": "hterce" } ]
"Resize" event for tcbrowse column
[ { "date": "2021-09-22", "forum": "mod_harbour", "text": "HEllo friends,\n[b:3gc71n11]Project name \"SUBMARINE\"[/b:3gc71n11]\ntemplate for a web page\n\nWe will evolve step by step this example.\n\ndata comes from a DBF file\nbootstrap 4 -> card-columns from w3 school\nadded a bs4 w3school slider snippet\nLive-Demo\n[url:3gc71n11]https&#58;//www&#46;modharbour&#46;club/submarine/index&#46;prg[/url:3gc71n11]\nDownload\n[url:3gc71n11]https&#58;//www&#46;modharbour&#46;club/submarine/submarine&#46;zip[/url:3gc71n11]\n\nBest regards,\nOtto", "time": "19:38", "topic": "\"SUBMARINE\" - template for a web page (DBF database)", "username": "Otto" } ]
"SUBMARINE" - template for a web page (DBF database)
[ { "date": "2023-01-13", "forum": "FiveWin for Harbour/xHarbour", "text": "hi,\n\nwhen \"read\" XLSx via Excel ActiveX i often have \"Header\" which are longer than 10 Sign for FIELD in DBF\nthose \"Header\" Name can be equal on SUBSTR(\"Headername\",1,10) so i need a \"Shortname\"\n\ndid 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:?: -->", "time": "23:58", "topic": "\"Shortname\" for FIELD of DBF", "username": "Jimmy" } ]
"Shortname" for FIELD of DBF
[ { "date": "2023-01-14", "forum": "FiveWin for Harbour/xHarbour", "text": "Dear Jimmy,\nI tried \nChatGPT \n:=)\nBest regards and have a nice Sunday,\nOtto\n\n\n\nhi,\n\nwhen \"read\" XLSx via Excel ActiveX i often have \"Header\" which are longer than 10 Sign for FIELD in DBF\nthose \"Header\" Name can be equal on SUBSTR(\"Headername\",1,10) so i need a \"Shortname\"\n\ndid somebody know a Way to get a unique \"Shortname\" from String which is longer than 10 Sign \nThere are several ways to create a unique \"shortname\" from a string that is longer than 10 characters:\n\nUse 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.\n\nUse 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\".\n\nUse 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.\n\nUse a combination of letters and numbers: You can use a combination of letters and numbers such as a timestamp to make the shortname unique.\n\nUse a unique id generator library: You can use a library that generates unique ids, such as uuid.\n\nUltimately, the best approach will depend on your specific use case and requirements.\n\nhow to do this with harbour\nHere'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:\n\nUse the SUBSTR() function to get the first 10 characters of the original string:\nCopy code\n shortname := SUBSTR( original_string, 1, 10 )\nUse the HASH() function to create a hash of the original string:\nCopy code\n shortname := HASH( original_string, \"md5\" )\nUse the first and last characters of the original string:\nCopy code\n shortname := SUBSTR( original_string, 1, 1 ) + \"-\" + SUBSTR( original_string, LEN( original_string ), 1 )\nUse a counter:\nCopy code\n static counter := 0\n shortname := SUBSTR( original_string, 1, 10 ) + \"-\" + counter\n counter += 1\nUse a combination of letters and numbers:\nCopy code\n shortname := SUBSTR( original_string, 1, 8 ) + \"_\" + DATE()\nUse a unique id generator library:\nCopy code\n shortname := UUID()\nYou can use any of the above approach to get a unique shortname, depending on your specific use case and requirements.", "time": "09:46", "topic": "\"Shortname\" for FIELD of DBF", "username": "Otto" } ]
"Shortname" for FIELD of DBF
[ { "date": "2023-01-14", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Jimmy\":irwek2cd]hi,\n\nwhen \"read\" XLSx via Excel ActiveX i often have \"Header\" which are longer than 10 Sign for FIELD in DBF\nthose \"Header\" Name can be equal on SUBSTR(\"Headername\",1,10) so i need a \"Shortname\"\n\ndid 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]\n\nAt first I simply did something like this : (there was a time I was thinking it only was 8 chars )))\n\n[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]\n\nBut 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.\n\nalso as third...\n\nRead the first line of exel with OLE, changes the headers into the xls and save it. Then use exeltodbf function to generate the dbf\n\nIf needed one of these, I have some basic code for it", "time": "17:05", "topic": "\"Shortname\" for FIELD of DBF", "username": "Marc Venken" } ]
"Shortname" for FIELD of DBF
[ { "date": "2023-01-14", "forum": "FiveWin for Harbour/xHarbour", "text": "hi Otto,\n[quote=\"Otto\":2bkl1k7s]I tried ChatGPT [/quote:2bkl1k7s]\nAnswer from ChatGPT might work ... but a Hash is not \"readable\" for Human\n\nas Marc say to change last 2 Sign (of 10) is enough to make it unique for 99 \"Header\"", "time": "21:47", "topic": "\"Shortname\" for FIELD of DBF", "username": "Jimmy" } ]
"Shortname" for FIELD of DBF
[ { "date": "2013-10-26", "forum": "Off Topic / Otros temas", "text": "Snap outout for FWH window.prg:\n\nfilelist.doc\n[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]\n\nheadings.doc\n[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]", "time": "10:38", "topic": "\"Snap\" for Clipper", "username": "Antonio Linares" } ]
"Snap" for Clipper
[ { "date": "2013-10-26", "forum": "Off Topic / Otros temas", "text": "Y aqui snap:\n\n[url:2jjveess]http&#58;//www&#46;the-oasis&#46;net/files/utils/snp502&#46;zip[/url:2jjveess]", "time": "10:18", "topic": "\"Snap\" for Clipper", "username": "Antonio Linares" } ]
"Snap" for Clipper
[ { "date": "2013-10-26", "forum": "Off Topic / Otros temas", "text": "Do you have \"Snap\" for Clipper ? \n\nI 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:-) -->\n\nIt seems as there was also a \"documentor\" from Wallsoft and another named \"TechWriter\"", "time": "09:35", "topic": "\"Snap\" for Clipper", "username": "Antonio Linares" } ]
"Snap" for Clipper
[ { "date": "2013-10-26", "forum": "Off Topic / Otros temas", "text": "Tienes \"Snap\" para Clipper ?\n\nMe 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:-) -->\n\nParece que tambien existía un \"documentor\" producido por Wallsoft y otro llamado \"TechWriter\"", "time": "09:37", "topic": "\"Snap\" for Clipper", "username": "Antonio Linares" } ]
"Snap" for Clipper
[ { "date": "2013-10-26", "forum": "Off Topic / Otros temas", "text": "[url:2ptwc78x]https&#58;//code&#46;google&#46;com/p/harbourclick/[/url:2ptwc78x]", "time": "09:40", "topic": "\"Snap\" for Clipper", "username": "Antonio Linares" } ]
"Snap" for Clipper
[ { "date": "2013-10-26", "forum": "Off Topic / Otros temas", "text": "prcsumry.doc\n[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]", "time": "10:40", "topic": "\"Snap\" for Clipper", "username": "Antonio Linares" } ]
"Snap" for Clipper
[ { "date": "2013-10-26", "forum": "Off Topic / Otros temas", "text": "xref.doc\n\n[quote:23l0k2s6]Author: \n26/10/11   11:32:10\nToken Cross-Reference Report\n\n-------------------------------------------------------------------------------\n\n767 tokens are included in this report.\n\n\nLegend for context symbols:\n   (blank) reference does not change the variable or field value.\n   = variable or field is changed in an assignment statement.\n   ! PROCEDURE or FUNCTION statement.\n   x token is released.\n   A array is declared.\n   G GET or MENU statement changes variable or field.\n   P variable is declared PUBLIC.\n   R field is replaced.\n   U database is USEd\n   V variable is declared PRIVATE.\n   & variable is referenced in a macro--takes precedence over all others.\n   @ variable passed as a var parameter\n   ? reference is of unknown type.\n\nFile types appear next to tokens that are used as file names.  Some of these\ntokens may also be used in other ways.\n\n                    \n   WINDOW.PRG     1906& 2064& 2350&\n\n0XFFFFFF            \n   WINDOW.PRG     3994 \n\nAARRAY              \n   WINDOW.PRG     1975! 1980  1981  1985  1989  1993  1996  1999  2161! 2166 \n                  2167  2170  2173  2176  2181  2199  2203  2207  2218  2221 \n                  2224  2227  2230  2233  2237 \n\nACONTROLS           \n   WINDOW.PRG      444   496   496   497   887  1149  1589  1590  1647  1649 \n                  1746  1747  2048  2049  2050  2848  2856  2864  2870  2871 \n                  3238  3244  3244  3245  3338  3338  3340  3340  3341  3342 \n                  3342  3343  3344  3346  3848  3852  3856  3857  3858  3859 \n                  3859  3860  3863  3866  3867  3868  3875  3926  3927  3930 \n                  3931  3932  3933  3933  3934  3934  3935  3938  3941  3942 \n                  3943  3950 \n\nACOORS              \n   WINDOW.PRG     1537  1540  1541  1541 \n\nACTION              \n   WINDOW.PRG     3897  3899 \n\nADDCONTROL()           (function  in ?)\n   WINDOW.PRG      495 \n\nADIALOGS            \n   WINDOW.PRG     3239  3239  3288 \n\nADJBOTTOM()            (function  in ?)\n   WINDOW.PRG     2641 \n\nADJCLIENT()            (function  in ?)\n   WINDOW.PRG     2659 \n\nADJLEFT()              (function  in ?)\n   WINDOW.PRG     2652 \n\nADJRIGHT()             (function  in ?)\n   WINDOW.PRG     2655 \n\nADJTOP()               (function  in ?)\n   WINDOW.PRG     2638 \n\nADJUST()               (function  in ?)\n   WINDOW.PRG     2645  2648 \n\nAEVALWHEN()            (function  in ?)\n   WINDOW.PRG      904  1325  3336 \n\nAEVENTS             \n   WINDOW.PRG      475   579   581  1932  1933  1934  1935  1936  2113  2114 \n                  2115  2116 \n\nAGRADCOLORS         \n   WINDOW.PRG      457   635   852  2952  2956  2956  2958  2966 \n\nAINFO               \n   WINDOW.PRG     1470  1472  1473  1475  2911  2922  2931  3300  3312  3316 \n                  3317  3318  3319  3322 \n\nAITEMS              \n   WINDOW.PRG     1768  1769  1770  1771  3438 \n\nAMINMAXINFO         \n   WINDOW.PRG      445   617   618 \n\nAPARENT1            \n   WINDOW.PRG     4019  4022  4025  4028 \n\nAPARENT2            \n   WINDOW.PRG     4019  4023  4028 \n\nAPOINT              \n   WINDOW.PRG     3534  3539  3540  3541  3541 \n\nAPROPERTIES         \n   WINDOW.PRG      465   469   742   747  1157  1911  1912  1913  1914  1915 \n                  2079  2083  2084  2089  2093  2094  2097  2106 \n\nAREAD()                (function  in WINDOW.PRG)\n   WINDOW.PRG     2196! 2218  3406 \n\nARECT               \n   WINDOW.PRG     1425  1427  1428  1429  1430  1699  1701  1701  1701  1701 \n                  1707  1709  1709  1709  1709 \n\nARESTORE            \n   WINDOW.PRG      558  1479  1481  1482  4146! 4148  4149 \n\nARET                \n   WINDOW.PRG     3831  3836  3837  3839 \n\nASAVE()                (function  in WINDOW.PRG)\n   WINDOW.PRG     1920  2161! 2170 \n\nASYNCSELECT()          (function  in ?)\n   WINDOW.PRG      499  1352 \n\nATOOLTIP            \n   WINDOW.PRG     3592 \n\nATOTEXT()              (function  in WINDOW.PRG)\n   WINDOW.PRG     1975! 1996  2097 \n\nAWINDOWS            \n   WINDOW.PRG      169   189!  195! 1175  2550  2556  2558  2559  2700  2708 \n                  2709  3798  3800  3834  4111  4114 \n\nAWND                \n   WINDOW.PRG     2854  2855  2856  4051  4086  4097 \n\nBCLRGRAD            \n   WINDOW.PRG      442 \n\nBCOMMNOTIFY         \n   WINDOW.PRG      428  3696  3697 \n\nBCOPY               \n   WINDOW.PRG      431   526   526 \n\nBCUT                \n   WINDOW.PRG      431   537   537 \n\nBDDEEXECUTE         \n   WINDOW.PRG      427   544   545 \n\nBDDEINIT            \n   WINDOW.PRG      427  1451  1455 \n\nBDELETE             \n   WINDOW.PRG      432   550   550 \n\nBDOWN               \n   WINDOW.PRG      491  1211  1287  1288 \n\nBDROPFILES          \n   WINDOW.PRG      427   492  1212  1226  1227  1227  1539  1541 \n\nBDROPOVER           \n   WINDOW.PRG      428  3733  3734 \n\nBEGINPAINT()           (function  in ?)\n   WINDOW.PRG      501  3751 \n\nBERASEBKGND         \n   WINDOW.PRG      452  2923  2924 \n\nBFIND               \n   WINDOW.PRG      431   585   585 \n\nBFINDNEXT           \n   WINDOW.PRG      432   587   587 \n\nBGODOWN             \n   WINDOW.PRG     1288  1291  1311  1314 \n\nBGOTFOCUS           \n   WINDOW.PRG      427  3232  3233 \n\nBGOUP               \n   WINDOW.PRG     1281  1284  1304  1307 \n\nBINIT               \n   WINDOW.PRG      424   490  1211  1336  1337 \n\nBITMAP              \n   WINDOW.PRG     2399 \n\nBKEYACTION          \n   WINDOW.PRG     2843  2890  2891  3051  3053  3054  3099  3124  3125 \n\nBKEYCHAR            \n   WINDOW.PRG      426  3057  3058 \n\nBKEYDOWN            \n   WINDOW.PRG      424   490  1211  3138  3139 \n\nBLBUTTONUP          \n   WINDOW.PRG      424   493  1213  2443  2444 \n\nBLCLICKED           \n   WINDOW.PRG      424   489  1210  1243  1246  1246  1248  1248  1251  1251 \n                  2428  2429 \n\nBLDBLCLICK          \n   WINDOW.PRG      426  2453  2454 \n\nBLEFT               \n   WINDOW.PRG      492  1212  1303  1304 \n\nBLOSTFOCUS          \n   WINDOW.PRG      427   694   696  3478  3479 \n\nBMBUTTONDOWN        \n   WINDOW.PRG      425  2494  2495 \n\nBMBUTTONUP          \n   WINDOW.PRG      425  2504  2505 \n\nBMENUSELECT         \n   WINDOW.PRG      428  1811  1812 \n\nBMLEAVE             \n   WINDOW.PRG      426  3493  3494 \n\nBMMOVED             \n   WINDOW.PRG      426  3522  3523 \n\nBMOUSEWHEEL         \n   WINDOW.PRG      425   716   716 \n\nBMOVED              \n   WINDOW.PRG      424   489   691   691  1210 \n\nBN_CLICKED          \n   WINDOW.PRG     1398 \n\nBPAGEDOWN           \n   WINDOW.PRG     1298  1321 \n\nBPAGEUP             \n   WINDOW.PRG     1295  1318 \n\nBPAINTED            \n   WINDOW.PRG      424   489  1210  1231  1234  1234  1236  1236  1239  1239 \n                  2928  2929 \n\nBPASTE              \n   WINDOW.PRG      431   735   735 \n\nBPGDN               \n   WINDOW.PRG      491 \n\nBPGDOWN             \n   WINDOW.PRG     1211  1297  1298 \n\nBPGLEFT             \n   WINDOW.PRG      492  1212  1317  1318 \n\nBPGRIGHT            \n   WINDOW.PRG      492  1212  1320  1321 \n\nBPGUP               \n   WINDOW.PRG      491  1211  1294  1295 \n\nBPRINT              \n   WINDOW.PRG      431  1879  1880 \n\nBPROPERTIES         \n   WINDOW.PRG      432   744   745 \n\nBRBUTTONUP          \n   WINDOW.PRG      425  2484  2485 \n\nBRCLICKED           \n   WINDOW.PRG      425   489  1210  1255  1258  1258  1260  1260  1263  1263 \n                  2474  2475 \n\nBREDO               \n   WINDOW.PRG      432   763   763 \n\nBREPLACE            \n   WINDOW.PRG      432   778   778 \n\nBRESIZED            \n   WINDOW.PRG      426   489  1210  2666  2667 \n\nBRIGHT              \n   WINDOW.PRG      492  1212  1310  1311 \n\nBRINGWINDOWTOTOP()     (function  in ?)\n   WINDOW.PRG      633 \n\nBRWCLASSES()           (function  in WINDOW.PRG)\n   WINDOW.PRG     4160!\n\nBSELECTALL          \n   WINDOW.PRG      432   805   805 \n\nBSOCKET             \n   WINDOW.PRG      452  1354  1355 \n\nBTASKBAR            \n   WINDOW.PRG      452   866   867 \n\nBUNDO               \n   WINDOW.PRG      432   873   873 \n\nBUNZIP              \n   WINDOW.PRG      428   878   878 \n\nBUP                 \n   WINDOW.PRG      491  1211  1280  1281 \n\nBUTTON              \n   WINDOW.PRG     3897  3899 \n\nBVALID              \n   WINDOW.PRG      426   492   891   891  1212  1222  1223  1223 \n\nBWHEN               \n   WINDOW.PRG      426   700   700  3342  3343 \n\nBZIP                \n   WINDOW.PRG      428   885   885 \n\nCADDCLASS           \n   WINDOW.PRG     4160! 4162  4162  4163 \n\nCANNOTCREATE_WINDOW_\n   WINDOW.PRG     1107 \n\nCAPTURE()              (function  in ?)\n   WINDOW.PRG      505 \n\nCARGO               \n   WINDOW.PRG      435 \n\nCARRAYNAME          \n   WINDOW.PRG     1975! 1984  1988  1992  1996  1999  2002 \n\nCBMPFILE            \n   WINDOW.PRG      784  2011  2016  2020 \n\nCBORDER             \n   WINDOW.PRG      486  1115  1123  1128  1129 \n\nCBRWCLASSLIST       \n   WINDOW.PRG      180  4080  4162  4163  4166 \n\nCBUFFER             \n   WINDOW.PRG     2199  2211  2218  2221  2224  2227  2230  2233  3388  3401 \n                  3406  3410  3412  3418  3420  3423  3430  3433 \n\nCCAPTION            \n   WINDOW.PRG      434   855   964   974   980  1101  1143  1440  2036  2044 \n                  3884  3887 \n\nCCLASSNAME          \n   WINDOW.PRG     2074  2343  2348  2350  4052  4061  4080  4087  4091 \n\nCCLSNAME            \n   WINDOW.PRG      528   962   964   974   980 \n\nCDATA               \n   WINDOW.PRG      665  3388  3396  3406  3409  3412  3416  3418  3420  3423 \n                  3425  3430  3433 \n\nCDBFNAME            \n   WINDOW.PRG     1550  1552  1556  1557  1563 \n\nCENTERED            \n   WINDOW.PRG     3901 \n\nCFACENAME           \n   WINDOW.PRG     2045  3319 \n\nCFILENAME           \n   WINDOW.PRG      598   682   776   776   782  1597  1664  1665  2359  2361 \n                  2363  3445  3449  3451  3452  3456 \n\nCGENPRG()              (function  in ?)\n   WINDOW.PRG      598  1597  1620  1639  1649  1659 \n\nCHECKTOOLTIP()         (function  in ?)\n   WINDOW.PRG      510  3511  3532 \n\nCHILDLEVEL()           (function  in ?)\n   WINDOW.PRG      512   512 \n\nCHOOSE()               (function  in ?)\n   WINDOW.PRG      826 \n\nCHOOSECOLOR()          (function  in ?)\n   WINDOW.PRG      801   802 \n\nCINFO               \n   WINDOW.PRG      681  1099  1104  1107  1905  1914  1920  1923  1926  1935 \n                  1938  1945  1947  2062  2071  2089  2090  2094  2097  2098 \n                  2099  2103  2106  2107  2116  2117  2138  2146  2164  2170 \n                  2173  2176  2181  2181  2196! 2201  2208  2209  2211  2341!\n                  2346  2348  2353  3385  3390  3394  3396  3398  3399  3401 \n                  3447  3456  3457  3459 \n\nCIRCLE()               (function  in ?)\n   WINDOW.PRG      521  1362 \n\nCLASS               \n   WINDOW.PRG      420   469   923   962  1116  1213  1352  1362  1372  1423 \n                  1436  1447  1468  1479  1488  1535  1550  1585  1597  1697G\n                  1705G 1713  1754  1785  1819  1835  1857  1873  1902  2011 \n                  2034  2060  2359  2368  2394  2414  2426  2436  2451  2461 \n                  2472  2482  2492  2502  2512  2538  2548  2571  2632  2674 \n                  2683  2698  2716  2773  2786  2841  2909  2938  2952  2981 \n                  3004  3020  3049  3069  3097  3228  3256  3273  3298G 3336 \n                  3356  3375  3385  3445  3465  3486  3501  3532  3590  3650 \n                  3658  3672  3694  3704  3731  3741  3846  3882  3907  3921 \n                  3957  3978 \n\nCLASSDATA           \n   WINDOW.PRG      459   461   462   465   475 \n\nCLASSNAME()            (function  in ?)\n   WINDOW.PRG      888   945   947   950   964  1100  1232  1244  1256  1269 \n                  1283  1290  1306  1313  1906  1945  1946  1947  2064  2073 \n                  2074  2074  2518  3260  3278  3437  3712  3856  3858  3931 \n                  3933 \n\nCLIENTEDGE()           (function  in ?)\n   WINDOW.PRG      880 \n\nCLIENTTOSCREEN()       (function  in ?)\n   WINDOW.PRG     3540 \n\nCLOCALS             \n   WINDOW.PRG     1587  1590  1593 \n\nCLOSEWINDOW()          (function  in ?)\n   WINDOW.PRG      657 \n\nCLR_BLACK           \n   WINDOW.PRG     2416 \n\nCLR_WHITE           \n   WINDOW.PRG     2416 \n\nCMETHOD             \n   WINDOW.PRG     1905  1934  1938  1938  2063  2115  2117 \n\nCMSG                \n   WINDOW.PRG      434  1807  3509 \n\nCMSGDEF             \n   WINDOW.PRG     1644  2524 \n\nCNAME               \n   WINDOW.PRG      471   472 \n\nCNEWTITLE           \n   WINDOW.PRG      535  1436  1438  1439  1440 \n\nCOBITMAP            \n   WINDOW.PRG      795  2394  2396  2399  2399  2402  2402  2407 \n\nCOLDTITLE           \n   WINDOW.PRG     3884G 3899 \n\nCOLOR_WINDOWTEXT    \n   WINDOW.PRG     1120G\n\nCOMMNOTIFY()           (function  in ?)\n   WINDOW.PRG      519  3694 \n\nCONSTRUCTOR         \n   WINDOW.PRG      487 \n\nCOORSUPDATE()          (function  in ?)\n   WINDOW.PRG      523   851  1423  1554  1603  2634  3014 \n\nCPARAMS1            \n   WINDOW.PRG     2065 \n\nCPARAMS2            \n   WINDOW.PRG     2065 \n\nCPRG                \n   WINDOW.PRG     1599  1605  1606  1607  1609  1612  1616  1620  1623  1631 \n                  1635  1639  1643  1648  1649  1652  1653  1654  1657  1658 \n                  1659  1660  1661  1665  1668 \n\nCPROMPT             \n   WINDOW.PRG     1509  1509  1515  1515  1733  1734  1736  1736  1737  1769 \n                  1770  1771 \n\nCPS                 \n   WINDOW.PRG      434   575   575  2929  3743  3751  3752  3752 \n\nCRC                 \n   WINDOW.PRG     2036  2038  2039  2040  2041  2043  2044  2045  2046  2050 \n                  2054  2056 \n\nCREATECOMPATIBLEBITM\n   WINDOW.PRG     2963 \n\nCREATECOMPATIBLEDC()   (function  in ?)\n   WINDOW.PRG     2962 \n\nCREATEPATTERNBRUSH()   (function  in ?)\n   WINDOW.PRG     2971 \n\nCREATETOOLTIP()        (function  in ?)\n   WINDOW.PRG     3611 \n\nCREATEWINDOW()         (function  in ?)\n   WINDOW.PRG      974   980 \n\nCRLF                \n   WINDOW.PRG     1100  1104  1557  1558  1605  1605  1607  1607  1609  1612 \n                  1616  1620  1620  1623  1624  1631  1635  1639  1643  1644 \n                  1648  1652  1652  1652  1653  1653  1657  1657  1657  1658 \n                  1658  1659  1660  1660  1985  1989  1993  1996  1999  1999 \n                  2003  2041  2043  2044  2045  2046  2050  2054  2075  2075 \n                  2090  2095  2095  2098  2098  2099  2103  2107  2117  2138 \n\nCSHOW               \n   WINDOW.PRG      489  1210  1217  1327 \n\nCS_GLOBALCLASS      \n   WINDOW.PRG      943 \n\nCS_HREDRAW          \n   WINDOW.PRG      939 \n\nCS_VREDRAW          \n   WINDOW.PRG      939 \n\nCTEXT               \n   WINDOW.PRG      620   620   622   792   797   843   854   855   856  1977 \n                  1984  1985  1988  1989  1992  1993  1996  1999  2002  2003 \n                  2007  2367  2386  2414  2419  2512  2524  2526  2530 \n\nCTITLE()               (function  in ?)\n   WINDOW.PRG      484   535   566  1113  1143  1436  1624  2988  2990  3882 \n                  3886  3887  3889  3889  3894  3897  3903 \n\nCTLCOLOR()             (function  in ?)\n   WINDOW.PRG      530 \n\nCTOOLTIP            \n   WINDOW.PRG      434   862  3550  3556  3590  3595  3595  3599  3600  3600 \n                  3611  3611  3611  3614  3615  3616  3618  3618  3619  3619 \n                  3621  3622  3623  3625  3626  3627 \n\nCTRL                \n   WINDOW.PRG     3238  3238  3239  3239 \n\nCTYPE               \n   WINDOW.PRG     1905  1917  1919  1922  1926  1977  1981  1983  1987  1991 \n                  1995  1998  2001  2062  2086  2088  2092  2102  2163  2167 \n                  2169  2172  2176  2199  2208  2217  2220  2223  2226  2229 \n                  2232  2396  2398  2406  3388  3398  3405  3408  3415  3429 \n                  3432 \n\nCURSORARROW()          (function  in ?)\n   WINDOW.PRG     3506 \n\nCUT()                  (function  in ?)\n   WINDOW.PRG      537 \n\nCVALTOCHAR()           (function  in ?)\n   WINDOW.PRG     1101  1926  2107  2176  2386 \n\nCVARNAME()             (function  in ?)\n   WINDOW.PRG      434   471   472   472  1116  1175  1177  1177  1587  1624 \n                  1652  1653  2069  2072  2361  3426 \n\nDBUFFEREND()           (function  in WINDOW.PRG)\n   WINDOW.PRG     4146!\n\nDDEACK()               (function  in ?)\n   WINDOW.PRG      541   541 \n\nDDEEXECUTE()           (function  in ?)\n   WINDOW.PRG      543 \n\nDDEGETCOMMAND()        (function  in ?)\n   WINDOW.PRG      545 \n\nDDEINITIATE()          (function  in ?)\n   WINDOW.PRG      539  1447 \n\nDDETERMINATE()         (function  in ?)\n   WINDOW.PRG      548   548 \n\nDELETEOBJECT()         (function  in ?)\n   WINDOW.PRG     2018 \n\nDEREGDIALOG()          (function  in ?)\n   WINDOW.PRG     2615 \n\nDESTROY()              (function  in ?)\n   WINDOW.PRG      761  2571  2594  2600  2603 \n\nDESTROYTOOLTIP()       (function  in ?)\n   WINDOW.PRG      552  3658 \n\nDESTROYWINDOW()        (function  in ?)\n   WINDOW.PRG     3609 \n\nDIALOG              \n   WINDOW.PRG     3892  3901 \n\nDIBFROMBITMAP()        (function  in ?)\n   WINDOW.PRG     2014 \n\nDIBWRITE()             (function  in ?)\n   WINDOW.PRG     2016 \n\nDLL                 \n   WINDOW.PRG     2628 \n\nDRAGACCEPTFILES()      (function  in ?)\n   WINDOW.PRG     1228 \n\nDRAGFINISH()           (function  in ?)\n   WINDOW.PRG     1544 \n\nDRAGQUERYFILES()       (function  in ?)\n   WINDOW.PRG     1541 \n\nDRAGQUERYPOINT()       (function  in ?)\n   WINDOW.PRG     1540 \n\nDRAWICON()             (function  in ?)\n   WINDOW.PRG     2919 \n\nDRAWITEM()             (function  in ?)\n   WINDOW.PRG      560  1488 \n\nDROPFILES()            (function  in ?)\n   WINDOW.PRG      562  1535 \n\nDROPOVER()             (function  in ?)\n   WINDOW.PRG      564  3731 \n\nEACH                \n   WINDOW.PRG     2871 \n\nEDITTITLE()            (function  in ?)\n   WINDOW.PRG      566  3882 \n\nELLIPSE()              (function  in ?)\n   WINDOW.PRG     1365 \n\nENABLEWINDOW()         (function  in ?)\n   WINDOW.PRG      555   569 \n\nENDCLASS            \n   WINDOW.PRG      919 \n\nENDMENU             \n   WINDOW.PRG     3913 \n\nENDPAGE             \n   WINDOW.PRG     1894  2997 \n\nENDPAINT()             (function  in ?)\n   WINDOW.PRG      574   575 \n\nERASEBKGND()           (function  in ?)\n   WINDOW.PRG      577 \n\nEVECOUNT()             (function  in ?)\n   WINDOW.PRG      581 \n\nEVENT()                (function  in ?)\n   WINDOW.PRG      579 \n\nEXTRACTICON()          (function  in ?)\n   WINDOW.PRG      750  2920 \n\nFASTEDIT()             (function  in ?)\n   WINDOW.PRG      583  3907 \n\nFILENAME            \n   WINDOW.PRG     1165  2399 \n\nFILLMEASURE()          (function  in ?)\n   WINDOW.PRG     1747 \n\nFILLRECT()             (function  in ?)\n   WINDOW.PRG     2946 \n\nFINDNEXT()             (function  in ?)\n   WINDOW.PRG      587 \n\nFIRSTACTIVECTRL()      (function  in ?)\n   WINDOW.PRG      589  3921 \n\nFLOODFILL()            (function  in ?)\n   WINDOW.PRG      591   592 \n\nFM_CHANGE           \n   WINDOW.PRG     1405 \n\nFM_CLICK            \n   WINDOW.PRG     1399 \n\nFM_CLOSEUP          \n   WINDOW.PRG     1402 \n\nFM_COLOR            \n   WINDOW.PRG      533 \n\nFM_DRAW             \n   WINDOW.PRG     1528 \n\nFM_SCROLLDOWN       \n   WINDOW.PRG     2753  2821 \n\nFM_SCROLLPGDN       \n   WINDOW.PRG     2759  2827 \n\nFM_SCROLLPGUP       \n   WINDOW.PRG     2756  2824 \n\nFM_SCROLLUP         \n   WINDOW.PRG     2750  2818 \n\nFM_THUMBPOS         \n   WINDOW.PRG     2762  2830 \n\nFM_THUMBTRACK       \n   WINDOW.PRG     2765  2833 \n\nFN_UNZIP            \n   WINDOW.PRG     1409 \n\nFONT                \n   WINDOW.PRG     3325 \n\nFUNCTION            \n   WINDOW.PRG      189   195   204   408  1097  1975  2161  2196  2341  2628 \n                  3158  3224  3764  3779  3796  3827  4017  4049  4109  4123 \n                  4146  4160 \n\nFWDISPBEGIN()          (function  in ?)\n   WINDOW.PRG     1472 \n\nFWDISPEND()            (function  in ?)\n   WINDOW.PRG     1481  4149 \n\nGENDBF()               (function  in ?)\n   WINDOW.PRG      594  1550 \n\nGENLOCALS()            (function  in ?)\n   WINDOW.PRG      596  1585  1590  1609 \n\nGETALLWIN()            (function  in WINDOW.PRG)\n   WINDOW.PRG      195!\n\nGETCLASSINFO()         (function  in ?)\n   WINDOW.PRG      945 \n\nGETCLASSLONG()         (function  in ?)\n   WINDOW.PRG     3652 \n\nGETCLASSNAME()         (function  in ?)\n   WINDOW.PRG     1393  3237  3286  4061 \n\nGETCLIENTRECT()        (function  in ?)\n   WINDOW.PRG     1284  1291  1307  1314  1699  2946 \n\nGETCLIRECT()           (function  in ?)\n   WINDOW.PRG      604  1697 \n\nGETCOORS()             (function  in ?)\n   WINDOW.PRG     1425 \n\nGETDC()                (function  in ?)\n   WINDOW.PRG      610   611   622   846   896   901  1364  2382  2402  2418 \n                  2463  2540  2962 \n\nGETDEVICECAPS()        (function  in ?)\n   WINDOW.PRG      896   901 \n\nGETDLGCODE()           (function  in ?)\n   WINDOW.PRG      614 \n\nGETDLGITEM()           (function  in ?)\n   WINDOW.PRG     1528 \n\nGETDRAWITEM()          (function  in ?)\n   WINDOW.PRG     1496  1504 \n\nGETDRAWMENU()          (function  in ?)\n   WINDOW.PRG     1495 \n\nGETDROPINFO()          (function  in WINDOW.PRG)\n   WINDOW.PRG     3734  3779!\n\nGETERRMSG()            (function  in ?)\n   WINDOW.PRG     1104 \n\nGETFOCUS()             (function  in ?)\n   WINDOW.PRG      695   696 \n\nGETFONT()              (function  in ?)\n   WINDOW.PRG      606  1202  3298 \n\nGETFONTINFO()          (function  in ?)\n   WINDOW.PRG     3312 \n\nGETHELPTOPIC()         (function  in ?)\n   WINDOW.PRG     3715 \n\nGETINSTANCE()          (function  in ?)\n   WINDOW.PRG      936 \n\nGETKEYSTATE()          (function  in ?)\n   WINDOW.PRG     3102  3112  3118 \n\nGETMEAITEM()           (function  in ?)\n   WINDOW.PRG     1722  1725  1729 \n\nGETMENUITEM()          (function  in ?)\n   WINDOW.PRG     1496  1504  1722  1725  1729  1803  1805 \n\nGETMINMAXINFO()        (function  in ?)\n   WINDOW.PRG      616 \n\nGETMODULEHANDLE()      (function  in ?)\n   WINDOW.PRG      934 \n\nGETNMHDRCODE()         (function  in ?)\n   WINDOW.PRG     1837 \n\nGETNMHDRHWNDFROM()     (function  in ?)\n   WINDOW.PRG     1838 \n\nGETPARENT()            (function  in ?)\n   WINDOW.PRG      532  3570  4060 \n\nGETPOPUP()             (function  in ?)\n   WINDOW.PRG     1495  3076  3083 \n\nGETRECT()              (function  in ?)\n   WINDOW.PRG      608  1705 \n\nGETSETGWLSTYLE()       (function  in ?)\n   WINDOW.PRG      908   909   910  3957 \n\nGETSUBMENU()           (function  in ?)\n   WINDOW.PRG     1767 \n\nGETSYSCOLOR()          (function  in ?)\n   WINDOW.PRG      940  1120  1121 \n\nGETSYSFONT()           (function  in ?)\n   WINDOW.PRG     3325 \n\nGETTEXT()              (function  in ?)\n   WINDOW.PRG      626  1552  1886 \n\nGETTEXTALIGN()         (function  in ?)\n   WINDOW.PRG     2384 \n\nGETTEXTWIDTH()         (function  in ?)\n   WINDOW.PRG      622  1733  3323 \n\nGETWIDTH()             (function  in ?)\n   WINDOW.PRG      620 \n\nGETWINDOW()            (function  in ?)\n   WINDOW.PRG     3261  3289 \n\nGETWINDOWLONG()        (function  in ?)\n   WINDOW.PRG      531   881  2776  3867  3942  3960  3980  4088 \n\nGETWINDOWTEXT()        (function  in ?)\n   WINDOW.PRG      626  1443 \n\nGETWNDAPP()            (function  in ?)\n   WINDOW.PRG     2610  3798 \n\nGETWNDDEFAULT()        (function  in WINDOW.PRG)\n   WINDOW.PRG     3224! 3425  3426 \n\nGETWNDRECT()           (function  in ?)\n   WINDOW.PRG     1707 \n\nGLOBALFREE()           (function  in ?)\n   WINDOW.PRG     2017 \n\nGLOBALGETATOMNAME()    (function  in ?)\n   WINDOW.PRG     1456  1457 \n\nGODOWN()               (function  in ?)\n   WINDOW.PRG     2729  2798 \n\nGONEXTCTRL()           (function  in ?)\n   WINDOW.PRG      628  3108  3256 \n\nGOPREVCTRL()           (function  in ?)\n   WINDOW.PRG      629  3103  3273 \n\nGOTFOCUS()             (function  in ?)\n   WINDOW.PRG      631  3228 \n\nGOUP()                 (function  in ?)\n   WINDOW.PRG     2726  2795 \n\nGRADIENT()             (function  in ?)\n   WINDOW.PRG      635   852  2952 \n\nGRADIENTFILL()         (function  in ?)\n   WINDOW.PRG     2966 \n\nHALPHACOLOR         \n   WINDOW.PRG      481   914   916   916  3983  3993  3994  3994  4000  4002 \n\nHALPHALEVEL         \n   WINDOW.PRG      481   915   917   917  3983  3996  3997  3997  4001 \n\nHANDLEEVENT()          (function  in ?)\n   WINDOW.PRG      637  3836 \n\nHARDCOPY()             (function  in ?)\n   WINDOW.PRG      640  2981 \n\nHBITMAP             \n   WINDOW.PRG     1511  1517  2402  2970 \n\nHBMP                \n   WINDOW.PRG     2013  2014  2018  2954  2963  2964  2970  2971 \n\nHBMPOLD             \n   WINDOW.PRG     2954  2964  2973 \n\nHBRUSH              \n   WINDOW.PRG      948   951  2946  2971 \n\nHCTLFOCUS           \n   WINDOW.PRG      443  3236  3237  3238  3239  3241  3246  3247  3266  3284 \n\nHCTLNEXT            \n   WINDOW.PRG     3258  3262  3267 \n\nHCTLPREV            \n   WINDOW.PRG     3275  3280  3286G 3287  3289  3292 \n\nHCTRL               \n   WINDOW.PRG      628   629  3256  3258  3261  3266  3273  3275  3279  3284 \n\nHCURSOR             \n   WINDOW.PRG     3504 \n\nHDC                 \n   WINDOW.PRG      436   575   577   592   611   611   612   731   766   766 \n                  1365  1472  1473  1482  1891  2384  2386  2419  2464  2465 \n                  2541  2915  2917  2919  2924  2926  2929  2938  2944  2946 \n                  2954  2962  2963  2964  2966  2973  3751  4146! 4148 \n\nHDCCHILD            \n   WINDOW.PRG      530   533 \n\nHDIB                \n   WINDOW.PRG     2014  2016  2017 \n\nHDROP               \n   WINDOW.PRG      562  1535  1540  1541  1544 \n\nHELPF1()               (function  in ?)\n   WINDOW.PRG      648 \n\nHELPINDEX()            (function  in ?)\n   WINDOW.PRG     3716 \n\nHELPTOPIC()            (function  in ?)\n   WINDOW.PRG      646   649   649   651  3713  3718  3722 \n\nHFONT               \n   WINDOW.PRG      602   623  2387  3300  3304  3311  3312G 3314  3314  3359 \n                  3359  3368 \n\nHICON               \n   WINDOW.PRG      750   835   952  1183  2920 \n\nHMENU               \n   WINDOW.PRG      840  1188  1510  1516  1735  1735  1767 \n\nHORIZONTAL          \n   WINDOW.PRG     1199 \n\nHPALETTE            \n   WINDOW.PRG     2402 \n\nHPOPUP              \n   WINDOW.PRG      663  3069  3076G 3083G\n\nHPRVWND             \n   WINDOW.PRG      173  3557  3558  3569  3571  3665  3675 \n\nHSCROLL()              (function  in ?)\n   WINDOW.PRG      655  2786 \n\nHTOOLTIP            \n   WINDOW.PRG      174  3551  3640 \n\nHUSER               \n   WINDOW.PRG      925   934   936   945   947   950 \n\nHWND                \n   WINDOW.PRG      422   505   508   508   532   546   555   555   569   569 \n                   575   601   611   626   633   653   657   659   661   695 \n                   702   709   720   738   754   759   766   769   808   840 \n                   850   856   860   880   881   974   977   980   982   986 \n                  1188  1228  1284  1284  1291  1291  1307  1307  1314  1314 \n                  1327  1328  1333  1344  1425  1443  1460  1472  1511  1517 \n                  1523  1528  1626  1627  1652  1699  1707  1822  1824  1825 \n                  1847  1847  1860  1862  1863  1891  2013  2386  2419  2554 \n                  2563  2573  2573  2606  2610  2610  2615  2622  2676  2685 \n                  2701  2701  2703  2704  2775  2776  2777  2913  2946  3012 \n                  3103  3108  3142  3142  3238  3246  3258  3261  3261  3262 \n                  3262  3275  3279  3280  3280  3289  3289  3378  3526  3540 \n                  3550  3551  3557  3558  3569  3570  3571  3592  3609  3611 \n                  3611  3617  3623  3627  3634  3637  3637  3640  3652  3652 \n                  3751  3798  3827! 3867  3942  3960  3967  3969  3980  3986 \n                  3990  3999  4053  4057  4060  4061G 4086  4088  4094  4109!\n                  4112  4112 \n\nHWNDCHILD           \n   WINDOW.PRG      530   531   532G  533 \n\nHWNDCLIENT          \n   WINDOW.PRG      539  1447  1455  1460 \n\nHWNDCTL             \n   WINDOW.PRG     1374  1379  1383  1390  1393G 1394  1396  1399  1402  1405 \n\nHWNDFOCUS           \n   WINDOW.PRG      670   670 \n\nHWNDGETFOCUS        \n   WINDOW.PRG      684  3465  3479 \n\nHWNDPALCHG          \n   WINDOW.PRG      733   733 \n\nHWNDPARENT          \n   WINDOW.PRG      173  3550  3570  3666  3674 \n\nHWNDSENDER          \n   WINDOW.PRG      541   541   543   545   546   548   548 \n\nI                   \n   WINDOW.PRG     2843  2854 \n\nICON                \n   WINDOW.PRG     1165  1167 \n\nICONIZE()              (function  in ?)\n   WINDOW.PRG      657 \n\nIFNIL()                (function  in ?)\n   WINDOW.PRG     4000  4001 \n\nINIT                \n   WINDOW.PRG      437   440   444   456   462   465   475 \n\nINITIATE()             (function  in ?)\n   WINDOW.PRG     3075  3077  3082  3084  3089 \n\nINITMENUPOPUP()        (function  in ?)\n   WINDOW.PRG      663  3069 \n\nINLINE              \n   WINDOW.PRG      471   495   505   507   512   526   530   537   541   543 \n                   548   550   554   568   574   577   579   581   585   587 \n                   591   600G  610G  616   626G  633   646   648   653   657 \n                   659   661   670   690   693   700   702   709   715   720 \n                   733   735   737   742   744   747   749   752   754   759 \n                   763   765   769   776   778   799   805   807   812   832 \n                   837   839   845   849   854   860   866   869   873   877 \n                   880   884   887   891   906   909   910   914   915   916 \n                   917 \n\nINSPECT()              (function  in ?)\n   WINDOW.PRG      665 \n\nINVALIDATERECT()       (function  in ?)\n   WINDOW.PRG      769 \n\nISCHILD()              (function  in ?)\n   WINDOW.PRG     3142 \n\nISDERIVEDFROM()        (function  in ?)\n   WINDOW.PRG     2074 \n\nISICONIC()             (function  in ?)\n   WINDOW.PRG      659   659   754  2913 \n\nISKINDOF()             (function  in ?)\n   WINDOW.PRG     2140  2614  2849  2853  2857  2863  2865  2872  2914  3113 \n                  3119  3138 \n\nISMENUITEM()           (function  in ?)\n   WINDOW.PRG     1520  1739 \n\nISMISEPARATOR()        (function  in ?)\n   WINDOW.PRG     1740 \n\nISSEPARATOR()          (function  in ?)\n   WINDOW.PRG     1522 \n\nISVISIBLE()            (function  in ?)\n   WINDOW.PRG      661  3543 \n\nISWINDOWVISIBLE()      (function  in ?)\n   WINDOW.PRG      661 \n\nISZOOMED()             (function  in ?)\n   WINDOW.PRG     1626  1627  1652 \n\nKEYBMODE()             (function  in ?)\n   WINDOW.PRG     2875 \n\nKEYCHAR()              (function  in ?)\n   WINDOW.PRG      668  3049  3062 \n\nKEYDOWN()              (function  in ?)\n   WINDOW.PRG      667  3097  3114  3120  3143 \n\nL2007               \n   WINDOW.PRG     1507  1644 \n\nL2010               \n   WINDOW.PRG     1507 \n\nLACTIVE             \n   WINDOW.PRG      437   554   568  3860  3866  3935  3941 \n\nLAND()                 (function  in ?)\n   WINDOW.PRG     3053  3867  3942  3964  3982  3985  3989  4088 \n\nLASTACTIVECTRL()       (function  in ?)\n   WINDOW.PRG      672  3846 \n\nLBALLOON            \n   WINDOW.PRG      439  3612  3612 \n\nLBOLD               \n   WINDOW.PRG     3318 \n\nLBUTTONDOWN()          (function  in ?)\n   WINDOW.PRG      674  2426 \n\nLBUTTONUP()            (function  in ?)\n   WINDOW.PRG      675  2436 \n\nLCANCEL             \n   WINDOW.PRG      438 \n\nLCAPTION            \n   WINDOW.PRG      486  1115  1123  1130  1131  1132  1133 \n\nLCHECKED            \n   WINDOW.PRG     3859  3934 \n\nLCREATEDC           \n   WINDOW.PRG      557 \n\nLDBLCLICK()            (function  in ?)\n   WINDOW.PRG      676  2451 \n\nLDEFAULT            \n   WINDOW.PRG      843  2512  2516  2523 \n\nLDESIGN             \n   WINDOW.PRG      438 \n\nLDESTROY            \n   WINDOW.PRG     3320 \n\nLDLGUNITS           \n   WINDOW.PRG      598  1597  1601  1649 \n\nLEND                \n   WINDOW.PRG      572   572   572 \n\nLERASE              \n   WINDOW.PRG      769   770   770 \n\nLEXTENDED           \n   WINDOW.PRG      908  3957  3959 \n\nLFASTEDIT           \n   WINDOW.PRG      456 \n\nLFOCUSED            \n   WINDOW.PRG      438  3230  3467 \n\nLFORE               \n   WINDOW.PRG      799   800   800   800   800   801   802 \n\nLFROMUSER           \n   WINDOW.PRG      640 \n\nLHSCROLL            \n   WINDOW.PRG      485  1114  1119  1135  1198 \n\nLINETO()               (function  in ?)\n   WINDOW.PRG     2465 \n\nLMAX                \n   WINDOW.PRG      487  1115  1124  1133 \n\nLMIN                \n   WINDOW.PRG      487  1115  1124  1132 \n\nLMODAL              \n   WINDOW.PRG     2141  2614 \n\nLNEW                \n   WINDOW.PRG     1875  1885  1893  3326 \n\nLOADFILE()             (function  in ?)\n   WINDOW.PRG      682  3445 \n\nLOGICAL             \n   WINDOW.PRG      437   438   456   459 \n\nLOLDSTATUS          \n   WINDOW.PRG     4125  4129  4135 \n\nLONOFF              \n   WINDOW.PRG      204!  208   209   408!  412   413   693   693   908   909 \n                   909   910   910  3957  3965  3966  3968  4123! 4131  4132 \n\nLOSTFOCUS()            (function  in ?)\n   WINDOW.PRG      670   684  2850  2858  2866  3465 \n\nLPIXEL              \n   WINDOW.PRG      487   792  1115  1124  1138  1139  1140  1141  2367  2373 \n                  2387 \n\nLPREVIOUS           \n   WINDOW.PRG      206   212   410   416 \n\nLREGISTERED         \n   WINDOW.PRG      459   927   929   947   950   955  1155 \n\nLREPAINT            \n   WINDOW.PRG      718   849   850  3004  3010  3012 \n\nLRIBBON             \n   WINDOW.PRG     2844  2876  2890 \n\nLSHOW               \n   WINDOW.PRG     3706  3708  3709  3724 \n\nLSHOWAGAIN          \n   WINDOW.PRG     3490  3543  3545  3679 \n\nLSKINS              \n   WINDOW.PRG      179   410   413 \n\nLSTATUS             \n   WINDOW.PRG     4127  4129  4132 \n\nLSUBCLASS           \n   WINDOW.PRG      679  2548  2552  2562 \n\nLSYSMENU            \n   WINDOW.PRG      486  1115  1123  1131 \n\nLSYSTEM             \n   WINDOW.PRG      663  3069  3073 \n\nLTOOLTIP            \n   WINDOW.PRG      173  3552  3644  3676 \n\nLTRANSPARENT        \n   WINDOW.PRG      793  2368  2374  2387 \n\nLTTBALLOON          \n   WINDOW.PRG      178   206   209  3612 \n\nLUSEACC             \n   WINDOW.PRG     2874  2885 \n\nLUSER               \n   WINDOW.PRG     2981  2985  2987 \n\nLVALID()               (function  in ?)\n   WINDOW.PRG      572   891 \n\nLVALIDATING         \n   WINDOW.PRG      438   497  1151  1220 \n\nLVBX                \n   WINDOW.PRG      438 \n\nLVISIBLE            \n   WINDOW.PRG      438   653   860  1148  1330 \n\nLVSCROLL            \n   WINDOW.PRG      485  1114  1119  1134  1195 \n\nLWHEN()                (function  in ?)\n   WINDOW.PRG      700  3377 \n\nLWRUNNING()            (function  in ?)\n   WINDOW.PRG     1332  1343 \n\nM                   \n   WINDOW.PRG     2062 \n\nMAXIMIZE()             (function  in ?)\n   WINDOW.PRG      702 \n\nMBUTTONDOWN()          (function  in ?)\n   WINDOW.PRG      704  2492 \n\nMBUTTONUP()            (function  in ?)\n   WINDOW.PRG      705  2502 \n\nMEASUREITEM()          (function  in ?)\n   WINDOW.PRG      707  1713 \n\nMENUCHAR()             (function  in ?)\n   WINDOW.PRG      686  1754 \n\nMENUDRAW2007()         (function  in ?)\n   WINDOW.PRG     1514  1521 \n\nMENUDRAWITEM()         (function  in ?)\n   WINDOW.PRG     1508 \n\nMENUITEM            \n   WINDOW.PRG     3912 \n\nMENUMEASUREITEM()      (function  in ?)\n   WINDOW.PRG     1732  1740 \n\nMENUSELECT()           (function  in ?)\n   WINDOW.PRG      688  1785 \n\nMETHOD              \n   WINDOW.PRG      471   484   489   495   499   501   503   505   507   510 \n                   512   515   517   519   521   523   526   528   530   535 \n                   537   539   541   543   548   550   552   554   557   558 \n                   560   562   564   566   568   571   574   577   579   581 \n                   583   585   587   589   591   594   596   598   600   604 \n                   606   608   610   614   616   620   626   628   629   631 \n                   633   635   637   640   642   646   648   651   653   655 \n                   657   659   661   663   665   667   668   670   672   674 \n                   675   676   678   679   681   682   684   686   688   690 \n                   693   698   700   702   704   705   707   709   711   713 \n                   715   718   720   722   724   727   729   731   733   735 \n                   737   740   742   744   747   749   752   754   756   757 \n                   759   761   763   765   769   772   774   776   778   780 \n                   782   784   788   790   792   795   797   799   805   807 \n                   810   812   817   819   821   823   830   832   837   839 \n                   843   845   849   854   858   860   862   864   866   869 \n                   871   873   875   877   880   884   887   891   893   895 \n                   900   904   906   908   909   910   912   923   962  1113 \n                  1210  1352  1362  1372  1423  1436  1447  1468  1479  1488 \n                  1535  1550  1585  1597  1697  1705  1713  1754  1785  1819 \n                  1835  1857  1873  1902  2011  2034  2060  2359  2367  2394 \n                  2414  2426  2436  2451  2461  2472  2482  2492  2502  2512 \n                  2538  2548  2571  2632  2674  2683  2698  2716  2773  2786 \n                  2841  2909  2938  2952  2981  3004  3020  3049  3069  3097 \n                  3228  3256  3273  3298  3336  3356  3375  3385  3445  3465 \n                  3486  3501  3532  3590  3650  3658  3672  3694  3704  3731 \n                  3741  3846  3882  3907  3921  3957  3978 \n\nMISTEXT()              (function  in ?)\n   WINDOW.PRG     1522 \n\nMOUSELEAVE()           (function  in ?)\n   WINDOW.PRG      711  3486 \n\nMOUSEMOVE()            (function  in ?)\n   WINDOW.PRG      713  3501 \n\nMOUSEWHEEL()           (function  in ?)\n   WINDOW.PRG      715 \n\nMOVED()                (function  in ?)\n   WINDOW.PRG      690 \n\nMOVETO()               (function  in ?)\n   WINDOW.PRG     2464 \n\nMOVEWINDOW()           (function  in ?)\n   WINDOW.PRG     3012 \n\nMSGSTOP()              (function  in ?)\n   WINDOW.PRG     3452 \n\nMSGYESNO()             (function  in ?)\n   WINDOW.PRG     1557 \n\nNALIGN              \n   WINDOW.PRG      793  2368  2384  2387 \n\nNAME                \n   WINDOW.PRG     1886G 2988  2990  3325 \n\nNAND()                 (function  in ?)\n   WINDOW.PRG     3967  3986  3994  3997 \n\nNAPPNAME            \n   WINDOW.PRG      539  1447  1456G 1461 \n\nNASCII              \n   WINDOW.PRG      686  1754  1772 \n\nNAT                 \n   WINDOW.PRG     1715  1746  1756  1770  1771  2550  2555  2559  2563  2700 \n                  2708  2708  3798  3800  3827! 3833  4111  4114 \n\nNBOTTOM             \n   WINDOW.PRG      440   484   503   678   810   966   973   976   981  1113 \n                  1118  1140  1140  1429  1628  1827  2461  2465  2538  2541 \n                  2674  2677  2687  2691  2691  2778 \n\nNCACTIVATE()           (function  in ?)\n   WINDOW.PRG      693 \n\nNCHRHEIGHT          \n   WINDOW.PRG      441   601  3322 \n\nNCHRWIDTH           \n   WINDOW.PRG      441  3323 \n\nNCLR                \n   WINDOW.PRG      823   823   826   828 \n\nNCLRBACK            \n   WINDOW.PRG      486   792   797   817  1114  1121  1179  2367  2371  2377 \n                  2379  2379  2386  2414  2416  2419  3020  3026  3028  3028 \n                  3032  3042 \n\nNCLRFORE            \n   WINDOW.PRG      486   792   797   817  1114  1120  1179  2367  2370  2376 \n                  2377  2378  2378  2386  2414  2416  2419  3020  3025  3026 \n                  3027  3027  3031 \n\nNCLRPANE            \n   WINDOW.PRG      442   802   802   940   941  2371  2403  3032 \n\nNCLRTEXT            \n   WINDOW.PRG      442   801   801   823   828  2370  3031 \n\nNCLSSTYLE           \n   WINDOW.PRG      772   923   939   943   943   947   950 \n\nNCMOUSEMOVE()          (function  in ?)\n   WINDOW.PRG      698  3672 \n\nNCODE               \n   WINDOW.PRG      893  1837  1843  1843 \n\nNCOL                \n   WINDOW.PRG      510   521   564   583   591   592   674   675   676   690 \n                   691   698   704   705   711   713   740   756   757   792 \n                   795   797   837   837   862  1362  1365  1365  1873  1877 \n                  1891  2367  2386  2394  2402  2414  2419  2426  2429  2436 \n                  2440  2444  2451  2454  2472  2475  2482  2485  2492  2495 \n                  2502  2505  3486  3494  3501  3511  3515  3518  3523  3532 \n                  3538  3539  3590  3594  3672  3731  3734  3907  3915 \n\nNCOLOR              \n   WINDOW.PRG      845   846 \n\nNCOMMAND            \n   WINDOW.PRG      543   545G  546 \n\nNCOUNT              \n   WINDOW.PRG      814   814   814   827  3040  3305  3306  3315  3327  3366 \n                  3367 \n\nNCPAINT()              (function  in ?)\n   WINDOW.PRG      724 \n\nNDELTA              \n   WINDOW.PRG      715   716 \n\nNDEVICE             \n   WINDOW.PRG      519  3694  3697 \n\nNEVENT              \n   WINDOW.PRG      579 \n\nNEW()                  (function  in ?)\n   WINDOW.PRG      484   825   941  1113  1701  1709  1909  2077  2352  2969 \n                  3042 \n\nNEXSTYLE            \n   WINDOW.PRG      441   487   978   983  1115  1124  1152  1152  3980  3985 \n                  3986  3989  3990 \n\nNEXTDLGTAB()           (function  in ?)\n   WINDOW.PRG     3246  3258  3261  3262  3275  3279  3280  3289 \n\nNFLAGS              \n   WINDOW.PRG      667   668   688  1785  1798  1812  3049  3053  3058  3062 \n                  3097  3114  3120  3135  3139  3143 \n\nNFOR                \n   WINDOW.PRG     4020  4027 \n\nNGETBACKRGB()          (function  in ?)\n   WINDOW.PRG     2379  3028 \n\nNGETCHRHEIGHT()        (function  in ?)\n   WINDOW.PRG      600 \n\nNGETFORERGB()          (function  in ?)\n   WINDOW.PRG     2378  3027 \n\nNGWL                \n   WINDOW.PRG     3959  3960  3967  3969 \n\nNHEIGHT()              (function  in ?)\n   WINDOW.PRG      642   718   774   795   849   850  1819  2041  2394  2403 \n                  2632  2667  2963  2966  3004  3009  3009  3012  3316  3594 \n\nNHELPID             \n   WINDOW.PRG      443  3710  3722 \n\nNHITTESTCODE        \n   WINDOW.PRG      698  3672 \n\nNHIWORD()              (function  in ?)\n   WINDOW.PRG     1377  1381  2720  2790 \n\nNHMENU              \n   WINDOW.PRG      686   688  1754  1767G 1767G 1785  1798  1812 \n\nNHORZRES()             (function  in ?)\n   WINDOW.PRG      900 \n\nNHWNDFROM           \n   WINDOW.PRG     1838  1839 \n\nNID                 \n   WINDOW.PRG      436   967   978   983  1374  1378  1382  1388  1391  1746 \n\nNIDCTL              \n   WINDOW.PRG      560   707  1488  1493  1528  1528  1713  1720  1746 \n\nNIDCTRL             \n   WINDOW.PRG      722  1835  1848 \n\nNIDITEM             \n   WINDOW.PRG      688  1785  1803G 1805G\n\nNIL                 \n   WINDOW.PRG      496   508   526   537   544   550   575   575   585   587 \n                   602   611   612   617   621   623   648   691   694   696 \n                   700   716   716   735   744   750   763   766   770   778 \n                   800   805   812   814   824   832   832   834   835   841 \n                   841   852   866   873   878   885   891   930   945   952 \n                   958   969   977   982   992  1109  1182  1187  1190  1219 \n                  1222  1226  1231  1243  1255  1279  1280  1287  1294  1297 \n                  1302  1303  1310  1317  1320  1336  1342  1348  1354  1358 \n                  1368  1387  1390  1419  1432  1438  1451  1452  1459  1464 \n                  1484  1491  1491  1491  1494  1494  1495  1495  1497  1498 \n                  1499  1503  1503  1506  1510  1516  1531  1546  1560  1581 \n                  1611  1615  1619  1630  1634  1638  1642  1656  1721  1724 \n                  1724  1727  1728  1731  1735  1750  1758  1761  1766  1767 \n                  1781  1787  1792  1795  1799  1801  1801  1802  1807  1811 \n                  1815  1831  1841  1853  1869  1879  1881  1884  1898  1932 \n                  1934  2048  2113  2115  2387  2390  2410  2422  2428  2432 \n                  2439  2443  2447  2453  2457  2468  2474  2478  2484  2488 \n                  2494  2498  2504  2508  2518  2522  2529  2534  2544  2567 \n                  2573  2574  2575  2578  2581  2584  2587  2590  2593  2596 \n                  2599  2602  2619  2624  2637  2640  2644  2647  2651  2654 \n                  2658  2662  2666  2670  2679  2694  2703  2705  2712  2723 \n                  2782  2792  2847  2855  2870  2873  2885  2890  2896  2905 \n                  2920  2958  2959  2977  3000  3016  3034  3036  3038  3045 \n                  3053  3057  3061  3065  3076  3079  3083  3093  3102  3107 \n                  3113  3119  3124  3134  3138  3142  3146  3158! 3232  3244 \n                  3245  3269  3294  3302  3302  3302  3310  3340  3342  3342 \n                  3352  3358  3358  3364  3371  3381  3417  3441  3453  3461 \n                  3469  3473  3475  3482  3488  3497  3503  3513  3522  3536 \n                  3547  3550  3556  3560  3562  3564  3566  3572  3574  3576 \n                  3578  3586  3597  3612  3639  3646  3654  3660  3662  3668 \n                  3677  3681  3683  3685  3687  3690  3696  3700  3711  3727 \n                  3733  3737  3745  3754  3768  3783  3800  3842  3874  3917 \n                  3949  3983  3983  3993  3996  4002  4114  4151 \n\nNINDENT             \n   WINDOW.PRG      788   790  1975! 1984  1988  1992  1996  1999  2002  2034 \n                  2060  2067  2071  2071  2073  2089  2094  2097  2103  2106 \n                  2116  2138 \n\nNINDEX              \n   WINDOW.PRG      663  3069 \n\nNKEY                \n   WINDOW.PRG      667   668   715   716  3049  3051  3058  3061  3062  3097 \n                  3099  3102  3107  3112  3114  3118  3120  3129  3135  3139 \n                  3143 \n\nNKEYFLAGS           \n   WINDOW.PRG      564   674   675   676   704   705   711   713   756   757 \n                  2426  2429  2436  2440  2444  2451  2454  2472  2475  2482 \n                  2485  2492  2495  2502  2505  3486  3494  3501  3515  3518 \n                  3523  3731  3734 \n\nNLASTKEY            \n   WINDOW.PRG      441   614G 1150 \n\nNLEFT               \n   WINDOW.PRG      440   484   503   678   718   810   966   975   975   981 \n                  1113  1118  1139  1139  1428  1627  1865  2039  2461  2464 \n                  2538  2541  2674  2676  2676  2685  2686  2690  2690  2777 \n                  2777  3004  3007  3007  3012  3538  3538 \n\nNLEN                \n   WINDOW.PRG     2198  2201  2203  2209  2211  2212  2218  2343  2346  2348 \n                  2349  3387  3394  3396  3397  3399  3401  3402  4020  4025 \n                  4027 \n\nNLENTOOLTIP         \n   WINDOW.PRG     3592 \n\nNLOWORD()              (function  in ?)\n   WINDOW.PRG     1379  1382  2719  2789 \n\nNLPARAM             \n   WINDOW.PRG      499   517   541   541   637   638   655   737   738   807 \n                   808   864   866   867  1352  1355  1372  1377  1379  1383 \n                  1394  1410  1413  2716  2718  2786  2788  2841  3827! 3836 \n\nNMAKELONG()            (function  in ?)\n   WINDOW.PRG      546  1461  1773 \n\nNMSG                \n   WINDOW.PRG      637   638   737   738   807   808  3827! 3836 \n\nNNEW                \n   WINDOW.PRG      916   916   917   917 \n\nNNEWHEIGHT          \n   WINDOW.PRG      642  1819  1822 \n\nNNEWWIDTH           \n   WINDOW.PRG      727  1857  1860 \n\nNNOT()                 (function  in ?)\n   WINDOW.PRG     3967  3986 \n\nNNOTIFYCODE         \n   WINDOW.PRG     1374  1377  1381  1398  1401  1404 \n\nNOLDPROC            \n   WINDOW.PRG      422  2563  2703  2704  2705  3837 \n\nNOPACITY()             (function  in ?)\n   WINDOW.PRG      915   917 \n\nNOR()                  (function  in ?)\n   WINDOW.PRG      881   939   943   970  1127  2776  3604  3652  3969  3990 \n\nNORGX               \n   WINDOW.PRG     2941  2943  2944 \n\nNORGY               \n   WINDOW.PRG     2941  2943  2944 \n\nNPAINTCOUNT         \n   WINDOW.PRG      434   574   612   612   612   765  3745  3746  3748 \n\nNPERCENT            \n   WINDOW.PRG      877   878 \n\nNPOS                \n   WINDOW.PRG      893  2198  2201  2202  2208  2209  2210  2211  2212  2344 \n                  2346  2347  2348  2349  2353  2720  2738  2741  2762  2765 \n                  2790  2807  2810  2830  2833  3387  3390  3391  3394  3395 \n                  3396  3397  3398  3399  3400  3401  3402  3447  3457  3457 \n                  3459 \n\nNPOSITION           \n   WINDOW.PRG      455 \n\nNPROPS              \n   WINDOW.PRG     1907  1916  1937  1947  2063  2085  2118  3387  3390  3393 \n\nNPTRNMHDR           \n   WINDOW.PRG      722  1835  1837G 1838G 1848 \n\nNPTRWORD()             (function  in ?)\n   WINDOW.PRG     1410 \n\nNRES                \n   WINDOW.PRG      896   896   897   901   901   902 \n\nNRESULT             \n   WINDOW.PRG      443  1219  2574  2574  2574 \n\nNRGBCOLOR           \n   WINDOW.PRG      591   592 \n\nNRIGHT              \n   WINDOW.PRG      440   484   503   678   810   966   975   981  1113  1118 \n                  1141  1141  1430  1628  1865  2461  2465  2538  2541  2674 \n                  2676  2686  2692  2692  2777 \n\nNROW                \n   WINDOW.PRG      510   521   564   583   591   592   674   675   676   690 \n                   691   698   704   705   711   713   740   756   757   792 \n                   795   797   837   837   862  1362  1365  1365  1873  1877 \n                  1891  2367  2386  2394  2402  2414  2419  2426  2429  2436 \n                  2440  2444  2451  2454  2472  2475  2482  2485  2492  2495 \n                  2502  2505  3486  3494  3501  3511  3515  3518  3523  3532 \n                  3537  3539  3590  3594  3672  3731  3734  3907  3915 \n\nNSCALE              \n   WINDOW.PRG      640   740  1873  1877  1891  2981  2996 \n\nNSCRHANDLE          \n   WINDOW.PRG     2718  2722  2750  2753  2756  2759  2762  2765  2788  2792 \n                  2818  2821  2824  2827  2830  2833 \n\nNSCROLLCODE         \n   WINDOW.PRG     2719  2725  2728  2731  2734  2737  2740  2743  2749  2752 \n                  2755  2758  2761  2764  2789  2794  2797  2800  2803  2806 \n                  2809  2812  2817  2820  2823  2826  2829  2832 \n\nNSEETHROCLR()          (function  in ?)\n   WINDOW.PRG      914   916 \n\nNSET                \n   WINDOW.PRG     3960  3961  3964  3967  3969 \n\nNSIZE               \n   WINDOW.PRG      620   622   624 \n\nNSIZETYPE           \n   WINDOW.PRG      774  2632  2667 \n\nNSOCKET             \n   WINDOW.PRG      499  1352  1355 \n\nNSTATUS             \n   WINDOW.PRG      519  3694  3697 \n\nNSTYLE              \n   WINDOW.PRG      441   484   908   909   909   910   910   965   970   970 \n                   974   980  1113  1122  1126  1127  1142  1142  3957  3963 \n                  3964  3967  3969  3982 \n\nNTIMERID            \n   WINDOW.PRG      869   869 \n\nNTOOLTIP            \n   WINDOW.PRG      462 \n\nNTOP                \n   WINDOW.PRG      440   484   503   678   718   810   966   975   976   981 \n                  1113  1118  1138  1138  1427  1626  1827  2038  2461  2464 \n                  2538  2541  2674  2676  2677  2685  2687  2689  2689  2777 \n                  2778  3004  3006  3006  3012  3537  3537 \n\nNTOPICNAME          \n   WINDOW.PRG      539  1447  1457G 1461 \n\nNTYPE               \n   WINDOW.PRG      686  1754 \n\nNUMERIC             \n   WINDOW.PRG      440   462 \n\nNVERTRES()             (function  in ?)\n   WINDOW.PRG      895 \n\nNWEIGHT             \n   WINDOW.PRG     3317 \n\nNWIDTH()               (function  in ?)\n   WINDOW.PRG      521   718   727   774   795   797   849   850  1362  1365 \n                  1365  1857  2040  2394  2403  2414  2419  2632  2667  2963 \n                  2966  3004  3008  3008  3012 \n\nNWINDOWS()             (function  in WINDOW.PRG)\n   WINDOW.PRG      189!\n\nNWNDCHRHEIGHT()        (function  in ?)\n   WINDOW.PRG      601 \n\nNWPARAM             \n   WINDOW.PRG      517   637   638   655   737   738   807   808   864   866 \n                   867  1372  1378  1381  1382  1394  1409  1412  2716  2719 \n                  2720  2786  2789  2790  2841  2869  2896  2897  2900  2900 \n                  3827! 3836 \n\nNX                  \n   WINDOW.PRG      845   846 \n\nNXPOS               \n   WINDOW.PRG      715   716 \n\nNY                  \n   WINDOW.PRG      845   846 \n\nNYPOS               \n   WINDOW.PRG      715   716 \n\nNZIPINFO            \n   WINDOW.PRG      884   885 \n\nO                   \n   WINDOW.PRG      888   888   888   889   889  2701  2701  2701  2845  2871 \n                  2872  2873  2874  2875  2879  2881  3798  3798  3798  4112 \n                  4112  4112 \n\nOACCTABLE           \n   WINDOW.PRG      841   841  1190  1191 \n\nOBAR                \n   WINDOW.PRG      446  1611  1638  1639  2647  2647  2648  2847  2848  2855 \n                  2856 \n\nOBOTTOM             \n   WINDOW.PRG      450  2518  2518  2519  2640  2641  2644 \n\nOBRUSH              \n   WINDOW.PRG      446   485   812   812   812   813   813   814   814   814 \n                   817   941   948   951  1114  1179  1615  1619  1620  1634 \n                  2578  2579  2943  2946  2968  2969  2970  2971  3020  3034 \n                  3035  3036  3038  3039  3039  3040  3042 \n\nOCLASS              \n   WINDOW.PRG      512   512 \n\nOCLIENT             \n   WINDOW.PRG      450  2658  2659 \n\nOCONTROL            \n   WINDOW.PRG      495   497  3849  3863  3868  3874  3875  3878  3924  3938 \n                  3943  3949  3950  3953 \n\nOCTL                \n   WINDOW.PRG     2849  2849  2850  2857  2857  2858  2865  2865  2866  3276 \n                  3287  3288 \n\nOCTLFOCUS           \n   WINDOW.PRG      449 \n\nOCTRL               \n   WINDOW.PRG     1649  1649  1746  1746  1839  1841  1844  1847  1848 \n\nOCURSOR             \n   WINDOW.PRG      446   486  1115  1144  1144  2581  2582  3503  3504 \n\nODLG                \n   WINDOW.PRG     3276  3288  3289  3289  3884  3892  3894  3897  3897  3899 \n                  3899  3901 \n\nODRAGCURSOR         \n   WINDOW.PRG      448  2584  2585 \n\nOFONT               \n   WINDOW.PRG      446   602   602   620   620   621   621   621   621   623 \n                   623   792   824   826   827   830  2045  2367  2372  2372 \n                  2387  2387  2590  2591  3300  3302  3302  3303  3303  3304 \n                  3305  3306  3307  3310  3313  3314  3315  3316  3317  3318 \n                  3319  3320  3321  3321  3325  3326  3327  3332  3356  3358 \n                  3358  3359  3359  3360  3364  3365  3365  3366  3367  3368 \n\nOGET                \n   WINDOW.PRG     3884  3894G\n\nOHSCROLL            \n   WINDOW.PRG      447  1199  1215  1272  1272  1276  1276  1302  1304  1307 \n                  1311  1314  1318  1321  2602  2603  2792  2795  2798  2801 \n                  2804  2807  2810 \n\nOICON               \n   WINDOW.PRG      446   485   750   750   832   832   832   833   833   834 \n                   835   952   952  1114  1147  1147  1163  1164  1165  1165 \n                  1167  1167  1169  1169  1182  1183  2587  2588  2920  2920 \n\nOITEM               \n   WINDOW.PRG     1490  1496  1497  1503  1504  1506  1507  1507  1509  1509 \n                  1511  1513  1515  1515  1517  1715  1722  1724  1725  1727 \n                  1729  1731  1733  1734  1735  1736  1736  1737 \n\nOLEFT               \n   WINDOW.PRG      450  2651  2652 \n\nOMENU               \n   WINDOW.PRG      446   484   839   839   839   839   840   841   841  1113 \n                  1145  1145  1187  1188  1189  1190  1191  1390  1391  1494 \n                  1503  1504  1507  1507  1510  1510  1513  1516  1516  1630 \n                  1656  1659  1729  1735  1735  1735  1756  1759  1761  1762 \n                  1762  1766  1767  1767  1767  1768  1769  1770  1771  1801 \n                  1805  2593  2594  3081  3082  3083 \n\nOMITEMSELECT        \n   WINDOW.PRG      461   648   649  1799  1803  1805  1807  1807  1812 \n\nOMSGBAR             \n   WINDOW.PRG      447  1642  1644  1644  2514  2514  2519  2522  2524  2526 \n                  2644  2644  2645 \n\nONCLICK             \n   WINDOW.PRG      454  2439  2440 \n\nONKEYDOWN           \n   WINDOW.PRG      454  3134  3135 \n\nONMOUSEMOVE         \n   WINDOW.PRG      454  3513  3514  3515  3517  3518 \n\nONMOVE              \n   WINDOW.PRG      454 \n\nONPAINT             \n   WINDOW.PRG      454 \n\nONRESIZE            \n   WINDOW.PRG      454  2662  2663 \n\nOOBJ                \n   WINDOW.PRG     2343  2350  2352  2353  2355 \n\nOPANELACC           \n   WINDOW.PRG     2873 \n\nOPARENT             \n   WINDOW.PRG      485 \n\nOPOPUP              \n   WINDOW.PRG      447  1387  1388  1491  1491  1491  1494  1495  1495  1496 \n                  1498  1499  1721  1722  1728  1758  1759  1801  1802  1803 \n                  3071  3074  3075  3076  3076  3077  3083  3084  3909  3911G\n                  3915 \n\nOPRN                \n   WINDOW.PRG     2983  2988  2990  2996 \n\nORADMENU            \n   WINDOW.PRG     3849  3857  3857  3859  3859  3924  3932  3932  3934  3934 \n\nOREAD()                (function  in WINDOW.PRG)\n   WINDOW.PRG     2221  2341! 3410  3412 \n\nORECT               \n   WINDOW.PRG      819  2683  2685  2685  2686  2686  2687  2687  2689  2690 \n                  2691  2692 \n\nORIBBON             \n   WINDOW.PRG     2845  2881  2885  2885 \n\nORIGHT              \n   WINDOW.PRG      450  2654  2655 \n\nOSEND()                (function  in ?)\n   WINDOW.PRG     1912  1913  1934  2083  2084  2115  3406  3412  3418  3418 \n                  3420  3420  3423  3426  3430  3433  3518 \n\nOSYSMENU            \n   WINDOW.PRG      447  1491  1491  1724  1725  2596  2597  2896  2897  3088 \n                  3089 \n\nOTARGET             \n   WINDOW.PRG      740  1873  1884  1886  1891 \n\nOTEMP               \n   WINDOW.PRG     3592  3607  3636 \n\nOTMR                \n   WINDOW.PRG      173  3564  3565  3566  3576  3577  3578  3685  3686  3687 \n\n[/quote:23l0k2s6]", "time": "10:44", "topic": "\"Snap\" for Clipper", "username": "Antonio Linares" } ]
"Snap" for Clipper
[ { "date": "2021-06-29", "forum": "Off Topic / Otros temas", "text": "404\nNot Found\nThe resource requested could not be found on this server!\n\nRegards.", "time": "18:43", "topic": "\"Snap\" for Clipper", "username": "karinha" } ]
"Snap" for Clipper
[ { "date": "2009-08-23", "forum": "FiveWin para Harbour/xHarbour", "text": "Algun compañero del foro ha experimentado con \"Speech Recognition\" (comandos via voz). \nEs decir controlar nuestros programas por medio de comandos dados de forma hablada en lugar de usar el teclado.\n\nEn que se basa esta tecnica?\nCual ActiveX es el recomendado para trabajar con xHarbour + FWH?\n\n\nSaludos,\n\nGeorge", "time": "15:23", "topic": "\"Speech Recognition\" y FWH", "username": "George" } ]
"Speech Recognition" y FWH
[ { "date": "2009-08-30", "forum": "FiveWin para Harbour/xHarbour", "text": "Es curioso que ningun miembro del foro, ni siquiera A. Linares, haya experimentado con SAPI + FWH.\nEs decir controlar nuestros programas por medio de \"Comando de Voz\" en vez de usar el teclado o el \"mouse\".\nAqui les dejo algunos links por si les interesa el tema:\n\n<!-- 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 -->\n<!-- m --><a class=\"postlink\" href=\"http://www.research-lab.com/sedllread.htm\">http://www.research-lab.com/sedllread.htm</a><!-- m -->\n<!-- 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 -->\n<!-- m --><a class=\"postlink\" href=\"http://www.nuance.com/naturallyspeaking/products/sdk/sdk_client.asp\">http://www.nuance.com/naturallyspeaking ... client.asp</a><!-- m -->\n<!-- m --><a class=\"postlink\" href=\"http://cslu.cse.ogi.edu/HLTsurvey/ch1node4.html\">http://cslu.cse.ogi.edu/HLTsurvey/ch1node4.html</a><!-- m -->\n\nSaludos,\n\nGeorge", "time": "20:42", "topic": "\"Speech Recognition\" y FWH", "username": "George" } ]
"Speech Recognition" y FWH
[ { "date": "2023-03-10", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Marc Venken\":1xyjmy4u]From Mr. Rao...\n\n[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]\n\n\n\nI have another type of configuration, I'll explain briefly\n\n\n[img:1xyjmy4u]https&#58;//i&#46;postimg&#46;cc/TYkYQcTD/comuni&#46;png[/img:1xyjmy4u]\n\n\n[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]\n\nI wish add on combobox also the option \"start with\" and \"contain...\"", "time": "15:03", "topic": "\"Starting With\", \"Containing\"", "username": "Silvio.Falconi" } ]
"Starting With", "Containing"
[ { "date": "2023-03-10", "forum": "FiveWin for Harbour/xHarbour", "text": "I made the search on xbrowse with \n\n\n @ 10, 165 GET oGet VAR cSeek.....\n\n @ 10, 550 COMBOBOX oBrw:oSortCbx VAR oBrw:cSortOrder;\n SIZE 150,400 PIXEL OF oDlg HEIGHTGET 14.8 STYLE CBS_DROPDOWN\n\n\nI'd like add also the options \"Starting With\", \"Containing\" on combobox but I not Know how make it \n\nI saw this on [b:3dc8vt6m]xbincflt.prg[/b:3dc8vt6m]\n\n\n[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]\n\n\n\nin my opinion these two options should be by default perhaps with a logical option like \"lStartContain \"", "time": "11:26", "topic": "\"Starting With\", \"Containing\"", "username": "Silvio.Falconi" } ]
"Starting With", "Containing"
[ { "date": "2023-03-10", "forum": "FiveWin for Harbour/xHarbour", "text": "From Mr. Rao...\n\n[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]", "time": "12:32", "topic": "\"Starting With\", \"Containing\"", "username": "Marc Venken" } ]
"Starting With", "Containing"
[ { "date": "2023-03-13", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote:1a46sphe]I'd like add also the options \"Starting With\", \"Containing\" on combobox but I not Know how make it\n[/quote:1a46sphe]\n\nXBROWSER.PRG already has the code for it.\nPlease adapt .", "time": "03:36", "topic": "\"Starting With\", \"Containing\"", "username": "nageswaragunupudi" } ]
"Starting With", "Containing"
[ { "date": "2023-03-13", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"nageswaragunupudi\":1e0nb9aw][quote:1e0nb9aw]I'd like add also the options \"Starting With\", \"Containing\" on combobox but I not Know how make it\n[/quote:1e0nb9aw]\n\nXBROWSER.PRG already has the code for it.\nPlease adapt .[/quote:1e0nb9aw]\n\nyes I saw but I need to create this :\n\nwhen I insert this line \n\n @ 10, 550 COMBOBOX oBrw:oSortCbx VAR oBrw:cSortOrder;\n SIZE 100,400 PIXEL OF oDlg HEIGHTGET 14.8 STYLE CBS_DROPDOWN\n\nadd also \"Starting With\", \"Containing\"\n\non the same combobox and not on another combobox", "time": "09:17", "topic": "\"Starting With\", \"Containing\"", "username": "Silvio.Falconi" } ]
"Starting With", "Containing"
[ { "date": "2022-08-14", "forum": "FiveWin for Harbour/xHarbour", "text": "hi,\n\nhave write my own \"phpBB Froum Grabber\" but i have use HMG Syntax.\n\nit work well with HMG and Xbase++ phpBB Forum but with FiveWin Forum i have Problem with Date/Time Format\n[quote:3zb6m28v]&raquo; Thu Oct 06, 2005 6:24 pm </p>\n&raquo; Thu Oct 06, 2005 8:28 pm </p>\n&raquo; Fri Oct 07, 2005 7:11 pm </p>\n&raquo; Sun Feb 26, 2006 9:17 am </p>[/quote:3zb6m28v]\nhow can i convert those Date/Time String into his Format <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->\n[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]", "time": "09:30", "topic": "\"Text\" Date/Time to \"Number\" ?", "username": "Jimmy" } ]
"Text" Date/Time to "Number" ?
[ { "date": "2022-08-14", "forum": "FiveWin for Harbour/xHarbour", "text": "<!-- 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 -->", "time": "10:59", "topic": "\"Text\" Date/Time to \"Number\" ?", "username": "cnavarro" } ]
"Text" Date/Time to "Number" ?
[ { "date": "2022-08-14", "forum": "FiveWin for Harbour/xHarbour", "text": "hi,\n[quote=\"cnavarro\":1fvn72ds]https://github.com/Petewg/harbour-core/wiki/Date-Time[/quote:1fvn72ds]\nthx for Answer.\n\nwhich 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:?: --> \nwhich DATE Format is need <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: --> \ni do have\n[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]", "time": "18:20", "topic": "\"Text\" Date/Time to \"Number\" ?", "username": "Jimmy" } ]
"Text" Date/Time to "Number" ?
[ { "date": "2022-08-15", "forum": "FiveWin for Harbour/xHarbour", "text": "Do you wan to convert the string \"&raquo; Thu Oct 06, 2005 6:24 pm </p>\" into string \"2005-10-06 18:24:00\" ?\nYou said you could do it with Xbase++.\nCan you please share your XBase++ code that does this conversion?", "time": "10:00", "topic": "\"Text\" Date/Time to \"Number\" ?", "username": "nageswaragunupudi" } ]
"Text" Date/Time to "Number" ?
[ { "date": "2022-08-15", "forum": "FiveWin for Harbour/xHarbour", "text": "hi,\n[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]\nYes\n\n[quote=\"nageswaragunupudi\":174pjj53]\nYou said you could do it with Xbase++.\nCan you please share your XBase++ code that does this conversion?[/quote:174pjj53]\nthere is not special Xbase++ Function to convert that String into Date/Time Format\n\ni have made a \"\"Quick & Dirty\" Function to convert\n[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]\np.s.\nHMS2SEC() and SEC2HMS() are to convert HH:MM:SS <-> Seconds\nis there a harbour Function <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->", "time": "20:36", "topic": "\"Text\" Date/Time to \"Number\" ?", "username": "Jimmy" } ]
"Text" Date/Time to "Number" ?
[ { "date": "2022-08-16", "forum": "FiveWin for Harbour/xHarbour", "text": "Not sure this is useful to anybody to me, but this is how I convert back and forth from harbour datetime to ISO datetime.\n\n[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]", "time": "16:56", "topic": "\"Text\" Date/Time to \"Number\" ?", "username": "rhlawek" } ]
"Text" Date/Time to "Number" ?
[ { "date": "2022-08-16", "forum": "FiveWin for Harbour/xHarbour", "text": "[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]", "time": "19:25", "topic": "\"Text\" Date/Time to \"Number\" ?", "username": "nageswaragunupudi" } ]
"Text" Date/Time to "Number" ?
[ { "date": "2022-08-16", "forum": "FiveWin for Harbour/xHarbour", "text": "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.\n\nRobb", "time": "20:28", "topic": "\"Text\" Date/Time to \"Number\" ?", "username": "rhlawek" } ]
"Text" Date/Time to "Number" ?
[ { "date": "2022-08-16", "forum": "FiveWin for Harbour/xHarbour", "text": "[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.\n\n[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]\n\nI think these functions can be simplified like this:\n[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]", "time": "21:09", "topic": "\"Text\" Date/Time to \"Number\" ?", "username": "nageswaragunupudi" } ]
"Text" Date/Time to "Number" ?
[ { "date": "2006-02-03", "forum": "Off Topic / Otros temas", "text": "Hello!\n\n<!-- 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 -->\n<!-- 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 -->\n\nMore info at:\n<!-- m --><a class=\"postlink\" href=\"http://www.virtualization.info/\">http://www.virtualization.info/</a><!-- m -->\n\nCheers, Roman\n\nPS. The Rings of Power\n<!-- m --><a class=\"postlink\" href=\"http://www.devx.com/Intel/Article/30125\">http://www.devx.com/Intel/Article/30125</a><!-- m -->\n\nPPS. Tu-ring\n<!-- m --><a class=\"postlink\" href=\"http://www.itjungle.com/tfh/tfh013006-story04.html\">http://www.itjungle.com/tfh/tfh013006-story04.html</a><!-- m -->", "time": "13:30", "topic": "\"VMWare server\" - too good to be true?", "username": "modicr" } ]
"VMWare server" - too good to be true?
[ { "date": "2012-07-09", "forum": "Off Topic / Otros temas", "text": "[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]", "time": "20:04", "topic": "\"Windows to Go\" by Microsoft", "username": "Antonio Linares" } ]
"Windows to Go" by Microsoft
[ { "date": "2008-09-27", "forum": "Utilities / Utilidades", "text": "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:\r\n\r\n<!-- m --><a class=\"postlink\" href=\"http://cvs.winehq.org/cvsweb/wine/dlls/\">http://cvs.winehq.org/cvsweb/wine/dlls/</a><!-- m -->\r\n\r\n<!-- m --><a class=\"postlink\" href=\"http://www.winehq.org\">http://www.winehq.org</a><!-- m -->", "time": "19:02", "topic": "\"Wine\" free source code", "username": "Antonio Linares" } ]
"Wine" free source code
[ { "date": "2008-09-27", "forum": "Utilities / Utilidades", "text": "[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:\n\n<!-- m --><a class=\"postlink\" href=\"http://cvs.winehq.org/cvsweb/wine/dlls/\">http://cvs.winehq.org/cvsweb/wine/dlls/</a><!-- m -->\n\n<!-- m --><a class=\"postlink\" href=\"http://www.winehq.org\">http://www.winehq.org</a><!-- m -->[/quote:qoli4u1e]\r\n\r\nHe descargado el source via CVS\r\n\r\na estudiar, jjejjejje", "time": "21:21", "topic": "\"Wine\" free source code", "username": "wmormar" } ]
"Wine" free source code
[ { "date": "2008-09-27", "forum": "Utilities / Utilidades", "text": "William,\r\n\r\nSi tienes Linux instalado tambien, puedes instalarle \"Wine\" y ejecutar tus aplicaciones Windows en Linux. \r\n\r\nTambien 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:-) -->\r\n\r\nFunciona 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:-) -->", "time": "21:30", "topic": "\"Wine\" free source code", "username": "Antonio Linares" } ]
"Wine" free source code
[ { "date": "2008-09-27", "forum": "Utilities / Utilidades", "text": "Antonio,\r\n\r\nasi es, he estado estudiando C++, y veo muchas cosas interesantes.", "time": "21:52", "topic": "\"Wine\" free source code", "username": "wmormar" } ]
"Wine" free source code
[ { "date": "2023-06-12", "forum": "FiveWin for Harbour/xHarbour", "text": "hi,\n\ni 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]\nto get \"ADODB.Recordset\" of Excel Sheet\n\nFW_OpenADOExcelSheet() also open \"ADODB.Connection\"\n[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]\n\ni can \"close\" \n[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]\nbut *.XLSx Files seems to be \"Lock\" after use FW_OpenADOExcelSheet()\n\nhow about \"ADODB.Connection\" which was called when use FW_OpenAdoExcelBook() <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->", "time": "05:20", "topic": "\"close\" FW_OpenADOExcelSheet()", "username": "Jimmy" } ]
"close" FW_OpenADOExcelSheet()
[ { "date": "2023-06-12", "forum": "FiveWin for Harbour/xHarbour", "text": "[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]", "time": "12:51", "topic": "\"close\" FW_OpenADOExcelSheet()", "username": "nageswaragunupudi" } ]
"close" FW_OpenADOExcelSheet()
[ { "date": "2023-06-12", "forum": "FiveWin for Harbour/xHarbour", "text": "hi,\n\nthx for Answer", "time": "17:50", "topic": "\"close\" FW_OpenADOExcelSheet()", "username": "Jimmy" } ]
"close" FW_OpenADOExcelSheet()
[ { "date": "2022-12-01", "forum": "FiveWin for Harbour/xHarbour", "text": "hi,\n\nwhen have a Listbox / Combobox with Drive-Letter i want to show all but \"disable\" all \"fix Drive\"\n[img:2hpibtwb]https&#58;//i&#46;postimg&#46;cc/TYsL2Qjp/Listbox-disable-Items&#46;png[/img:2hpibtwb]\ni want to use it for USB-Stick which i want to \"safe eject\"", "time": "01:02", "topic": "\"disable\" Item in Listbox / Combobox", "username": "Jimmy" } ]
"disable" Item in Listbox / Combobox
[ { "date": "2022-12-01", "forum": "FiveWin for Harbour/xHarbour", "text": "Try using GetDriveType() = DRIVE_REMOVABLE.", "time": "09:28", "topic": "\"disable\" Item in Listbox / Combobox", "username": "Enrico Maria Giordano" } ]
"disable" Item in Listbox / Combobox
[ { "date": "2022-12-01", "forum": "FiveWin for Harbour/xHarbour", "text": "hi Enrico,\n\ni do have use GetDriveType to get Drive Type\nnow i want to change LISTBOX to \"show\" Removable Drive in other Color\n\nHMG\n[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]\n\nXbase++\n[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]\nso my Question is : how under FiveWin <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->", "time": "14:02", "topic": "\"disable\" Item in Listbox / Combobox", "username": "Jimmy" } ]
"disable" Item in Listbox / Combobox
[ { "date": "2017-12-09", "forum": "FiveWin for Harbour/xHarbour", "text": "\"d:\\harbour201712\\lib\\win\\mingw/libhbmacro.a: error adding symbols: Malformed archive collect2.exe: error: ld returned 1 exit status\n\nMy setting in buildg.bat\n\nif \"%fwh%\" == \"\" set fwh=.\\..\n\nset hdir=d:\\harbour201712\nset hdirc=%hdir%\\bin\\harbour.exe\nset hlibs=%hdir%\\lib\\win\\mingw\nset mingw=%hdir%\\comp\\mingw\nset path=%mingw%\\bin\n\nUsing latest harbour (nightly build) ang Mingw\n\n\n\nAny ideas?\nThanks\nTaavi.", "time": "17:45", "topic": "\"error adding symbols\" error with buildg.bat?", "username": "Taavi" } ]
"error adding symbols" error with buildg.bat?
[ { "date": "2017-12-10", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Taavi\":2seu8yko]\"d:\\harbour201712\\lib\\win\\mingw/libhbmacro.a: error adding symbols: Malformed archive collect2.exe: error: ld returned 1 exit status\n\nMy setting in buildg.bat\n\nif \"%fwh%\" == \"\" set fwh=.\\..\n\nset hdir=d:\\harbour201712\nset hdirc=%hdir%\\bin\\harbour.exe\nset hlibs=%hdir%\\lib\\win\\mingw\nset mingw=%hdir%\\comp\\mingw\nset path=%mingw%\\bin\n\nUsing latest harbour (nightly build) ang Mingw\n\n\n\nAny ideas?\nThanks\nTaavi.[/quote:2seu8yko]\n\nHi Tavi,\n\nTry to rearrange the libs you linked.\nThere's no exact \"how to\", but try it randomly.", "time": "12:13", "topic": "\"error adding symbols\" error with buildg.bat?", "username": "andijahja" } ]
"error adding symbols" error with buildg.bat?
[ { "date": "2023-07-23", "forum": "FiveWin for Harbour/xHarbour", "text": "hi,\n\ni saw Name \"id\" for PRIMARY KEY in PostgreSQL Sample\n\ndoes Fivewin use Name \"id\" as default also for \"other\" SQL <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->", "time": "11:46", "topic": "\"id\" for PRIMARY KEY ?", "username": "Jimmy" } ]
"id" for PRIMARY KEY ?
[ { "date": "2023-07-23", "forum": "FiveWin for Harbour/xHarbour", "text": "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\"\n\nTotally 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 .. \n\nRick", "time": "16:03", "topic": "\"id\" for PRIMARY KEY ?", "username": "Rick Lipkin" } ]
"id" for PRIMARY KEY ?
[ { "date": "2023-07-24", "forum": "FiveWin for Harbour/xHarbour", "text": "[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:?: -->\n[/quote:rthc4moo]\nYes, by default for autoincrement primary field.\nProgrammer can choose different field names.\n\nFWH 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", "time": "00:23", "topic": "\"id\" for PRIMARY KEY ?", "username": "nageswaragunupudi" } ]
"id" for PRIMARY KEY ?
[ { "date": "2023-07-24", "forum": "FiveWin for Harbour/xHarbour", "text": "hi,\n\nok, understand\n\n@Rick\nare your User Name UNIQUE <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: --> \n\n[quote:15hchrz5]Auto incremating Primary keys lend themselves to Sql Injection attacks[/quote:15hchrz5]\ndid you have a Sample to show the Problem <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->", "time": "02:52", "topic": "\"id\" for PRIMARY KEY ?", "username": "Jimmy" } ]
"id" for PRIMARY KEY ?
[ { "date": "2023-07-25", "forum": "FiveWin for Harbour/xHarbour", "text": "Jimmy\n\nI 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 .. \n\nJust something to keep in mind .. .", "time": "14:48", "topic": "\"id\" for PRIMARY KEY ?", "username": "Rick Lipkin" } ]
"id" for PRIMARY KEY ?
[ { "date": "2023-07-25", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Rick Lipkin\":3h8gyr2h]Jimmy\n\nI 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 .. \n\nJust something to keep in mind .. .[/quote:3h8gyr2h]\n\nI am not fully convinced.\nCan you please provide an example of a FWH program where a regular user can \"inject\" ?", "time": "15:10", "topic": "\"id\" for PRIMARY KEY ?", "username": "nageswaragunupudi" } ]
"id" for PRIMARY KEY ?
[ { "date": "2023-07-25", "forum": "FiveWin for Harbour/xHarbour", "text": "Rao\n\nI 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 .. \n\n[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]", "time": "19:46", "topic": "\"id\" for PRIMARY KEY ?", "username": "Rick Lipkin" } ]
"id" for PRIMARY KEY ?
[ { "date": "2023-07-26", "forum": "FiveWin for Harbour/xHarbour", "text": "I am not asking how do generate unique primary key.\nI am asking for an example of an FWH program, using which SQLI (sql injection) is possible.", "time": "05:24", "topic": "\"id\" for PRIMARY KEY ?", "username": "nageswaragunupudi" } ]
"id" for PRIMARY KEY ?
[ { "date": "2023-07-27", "forum": "FiveWin for Harbour/xHarbour", "text": "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 .\n\nRick Lipkin", "time": "14:11", "topic": "\"id\" for PRIMARY KEY ?", "username": "Rick Lipkin" } ]
"id" for PRIMARY KEY ?
[ { "date": "2023-07-27", "forum": "FiveWin for Harbour/xHarbour", "text": "It all depends on our program.\nNot on autoinc keys\nWe will discuss about SQLI after a few days.", "time": "16:37", "topic": "\"id\" for PRIMARY KEY ?", "username": "nageswaragunupudi" } ]
"id" for PRIMARY KEY ?
[ { "date": "2008-09-07", "forum": "FiveWin para Harbour/xHarbour", "text": "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:\r\n\r\ntest.prg\r\n[code:1hekecyf]\n#include \"FiveWin&#46;ch\"\n\nstatic pOld\n\nfunction Main&#40;&#41;\n\n pOld &#58;= FunSwap&#40; \"TIME\", \"MYTIME\" &#41;\n\n MsgInfo&#40; Time&#40;&#41; &#41; // Hemos reemplazado la función Time&#40;&#41; original ! &#58;-&#41;\n\nreturn nil\n\nfunction MyTime&#40;&#41;\n\n local uRet &#58;= ExecPtr&#40; pOld &#41; // en caso de que queramos llamar a la función original\n\nreturn \"now\"\n\n#pragma BEGINDUMP\n\n#include <hbapi&#46;h>\n\ntypedef void &#40; * PFUNC &#41; &#40; void &#41;;\n\nHB_FUNC&#40; FUNSWAP &#41;\n&#123;\n PHB_SYMB symFirst = hb_dynsymSymbol&#40; hb_dynsymFindName&#40; hb_parc&#40; 1 &#41; &#41; &#41;;\n PHB_SYMB symLast = hb_dynsymSymbol&#40; hb_dynsymFindName&#40; hb_parc&#40; 2 &#41; &#41; &#41;;\n PHB_FUNC pFirst = symFirst->value&#46;pFunPtr;\n \n symFirst->value&#46;pFunPtr = symLast->value&#46;pFunPtr;\n \n hb_retnl&#40; &#40; LONG &#41; pFirst &#41;;\n&#125;\n\nHB_FUNC&#40; EXECPTR &#41;\n&#123;\n PFUNC p = &#40; PFUNC &#41; hb_parnl&#40; hb_pcount&#40;&#41; &#41;;\n \n p&#40;&#41;;\n&#125; \n\n#pragma ENDDUMP \n[/code:1hekecyf]", "time": "11:34", "topic": "\"swaping\" de funciones", "username": "Antonio Linares" } ]
"swaping" de funciones
[ { "date": "2008-09-07", "forum": "FiveWin para Harbour/xHarbour", "text": "Otro ejemplo:\r\n\r\ntest.prg\r\n[code:2hsvc0m4]\n#include \"FiveWin&#46;ch\"\n\nstatic pOld\n\nfunction Main&#40;&#41;\n\n pOld &#58;= FunSwap&#40; \"DATE\", \"TOMORROW\" &#41;\n\n MsgInfo&#40; Date&#40;&#41; &#41; // We have replaced the original Date&#40;&#41; function! &#58;-&#41;\n\nreturn nil\n\nfunction Tomorrow&#40;&#41;\n\n local uRet &#58;= ExecPtr&#40; pOld &#41; // in case that we want to call the original function\n\nreturn uRet + 1\n\n#pragma BEGINDUMP\n\n#include <hbapi&#46;h>\n\ntypedef void &#40; * PFUNC &#41; &#40; void &#41;;\n\nHB_FUNC&#40; FUNSWAP &#41;\n&#123;\n PHB_SYMB symFirst = hb_dynsymSymbol&#40; hb_dynsymFindName&#40; hb_parc&#40; 1 &#41; &#41; &#41;;\n PHB_SYMB symLast = hb_dynsymSymbol&#40; hb_dynsymFindName&#40; hb_parc&#40; 2 &#41; &#41; &#41;;\n PHB_FUNC pFirst = symFirst->value&#46;pFunPtr;\n \n symFirst->value&#46;pFunPtr = symLast->value&#46;pFunPtr;\n \n hb_retnl&#40; &#40; LONG &#41; pFirst &#41;;\n&#125;\n\nHB_FUNC&#40; EXECPTR &#41;\n&#123;\n PFUNC p = &#40; PFUNC &#41; hb_parnl&#40; hb_pcount&#40;&#41; &#41;;\n \n p&#40;&#41;;\n&#125; \n\n#pragma ENDDUMP \n[/code:2hsvc0m4]", "time": "11:46", "topic": "\"swaping\" de funciones", "username": "Antonio Linares" } ]
"swaping" de funciones
[ { "date": "2008-09-07", "forum": "FiveWin para Harbour/xHarbour", "text": "Una manera util de crear logs ó verificar parámetros:\r\n\r\ntest.prg\r\n[code:30843blq]\n#include \"FiveWin&#46;ch\"\n\nstatic pOld\n\nfunction Main&#40;&#41;\n\n pOld &#58;= FunSwap&#40; \"TEST\", \"LOGIT\" &#41;\n\n MsgInfo&#40; Test&#40; \"Hello\", \" world!\" &#41; &#41;\n\nreturn nil\n\nfunction Test&#40; u1, u2 &#41;\n\nreturn u1 + u2\n\nfunction LogIt&#40; u1, u2 &#41;\n\n local uRet &#58;= ExecPtr&#40; u1, u2, pOld &#41; // in case that we want to call the original function\n\n MsgInfo&#40; \"Test&#40;&#41; called with these parameters&#58; \" + u1 + \", \" + u2 &#41;\n\nreturn uRet\n\n#pragma BEGINDUMP\n\n#include <hbapi&#46;h>\n\ntypedef void &#40; * PFUNC &#41; &#40; void &#41;;\n\nHB_FUNC&#40; FUNSWAP &#41;\n&#123;\n PHB_SYMB symFirst = hb_dynsymSymbol&#40; hb_dynsymFindName&#40; hb_parc&#40; 1 &#41; &#41; &#41;;\n PHB_SYMB symLast = hb_dynsymSymbol&#40; hb_dynsymFindName&#40; hb_parc&#40; 2 &#41; &#41; &#41;;\n PHB_FUNC pFirst = symFirst->value&#46;pFunPtr;\n \n symFirst->value&#46;pFunPtr = symLast->value&#46;pFunPtr;\n \n hb_retnl&#40; &#40; LONG &#41; pFirst &#41;;\n&#125;\n\nHB_FUNC&#40; EXECPTR &#41;\n&#123;\n PFUNC p = &#40; PFUNC &#41; hb_parnl&#40; hb_pcount&#40;&#41; &#41;;\n \n p&#40;&#41;;\n&#125; \n\n#pragma ENDDUMP \n[/code:30843blq]", "time": "12:20", "topic": "\"swaping\" de funciones", "username": "Antonio Linares" } ]
"swaping" de funciones
[ { "date": "2008-09-07", "forum": "FiveWin para Harbour/xHarbour", "text": "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:) -->\r\n\r\n ¿habrá alguna manera de poder leer el valor de una variable estática?", "time": "18:51", "topic": "\"swaping\" de funciones", "username": "quique" } ]
"swaping" de funciones
[ { "date": "2008-09-07", "forum": "FiveWin para Harbour/xHarbour", "text": "¿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)\r\n\r\npOld := FunSwap( \"TIME\", @mytime() )\r\n\r\no inclusive\r\n\r\npOld := FunSwap( @time(), @mytime() )\r\n\r\nrealmente la única importante sería la primera, ya que time() siempre es visible", "time": "19:14", "topic": "\"swaping\" de funciones", "username": "quique" } ]
"swaping" de funciones
[ { "date": "2008-09-07", "forum": "FiveWin para Harbour/xHarbour", "text": "Quique,\r\n\r\nSabía que te iba a interesar este tema <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\r\n\r\nSe 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).", "time": "23:27", "topic": "\"swaping\" de funciones", "username": "Antonio Linares" } ]
"swaping" de funciones
[ { "date": "2008-09-07", "forum": "FiveWin para Harbour/xHarbour", "text": "Jajajajaja ¿tan obvio soy? <!-- s:P --><img src=\"{SMILIES_PATH}/icon_razz.gif\" alt=\":P\" title=\"Razz\" /><!-- s:P --> \r\n\r\nSi 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.\r\n\r\nY 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.", "time": "23:52", "topic": "\"swaping\" de funciones", "username": "quique" } ]
"swaping" de funciones
[ { "date": "2008-09-08", "forum": "FiveWin para Harbour/xHarbour", "text": "Quique,\r\n\r\nNo es que sea adivino, sino que esta mañana encontré esto <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\r\n\r\n<!-- 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 -->\r\n\r\nBasándote en el código que he proporcionado, y usando un item \"pointer\" deberias poder acceder a funciones estáticas.", "time": "01:11", "topic": "\"swaping\" de funciones", "username": "Antonio Linares" } ]
"swaping" de funciones
[ { "date": "2008-09-08", "forum": "FiveWin para Harbour/xHarbour", "text": "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", "time": "01:35", "topic": "\"swaping\" de funciones", "username": "quique" } ]
"swaping" de funciones
[ { "date": "2008-09-08", "forum": "FiveWin para Harbour/xHarbour", "text": "Cortesia de Vic (<!-- e --><a href=\"mailto:[email protected]\">[email protected]</a><!-- e -->) (no es conocido del foro porque no se asoma por aquí), gracias gran gurú de xharbour.\r\n\r\n[code:2k2i2alr]\nfunction Main&#40;&#41;\n FunSwapPtr&#40; \"DATE\", @MyDate&#40;&#41; &#41;\n\n ? DATE&#40;&#41;\n ? &&#40; \"DATE&#40;&#41;\" &#41;\nreturn nil\n\n#pragma BEGINDUMP\n\n#include <hbapi&#46;h>\n\ntypedef void &#40; * PFUNC &#41; &#40; void &#41;;\n\nHB_FUNC&#40; FUNSWAPPTR &#41;\n&#123;\n PHB_SYMB symFirst = hb_dynsymSymbol&#40; hb_dynsymFindName&#40; hb_parc&#40; 1 &#41; &#41; &#41;;\n PHB_FUNC pFirst = symFirst->value&#46;pFunPtr;\n\n symFirst->value&#46;pFunPtr = &#40; &#40; PHB_SYMB &#41; hb_parptr&#40; 2 &#41; &#41;->value&#46;pFunPtr;\n\n hb_retnl&#40; &#40; LONG &#41; pFirst &#41;;\n&#125;\n\n#pragma ENDDUMP\n\nSTATIC FUNCTION MyDate&#40;&#41;\nRETURN STOD&#40; \"19680329\" &#41;\n\n[/code:2k2i2alr]", "time": "03:15", "topic": "\"swaping\" de funciones", "username": "quique" } ]
"swaping" de funciones