messages
listlengths
1
1
topic
stringlengths
2
60
[ { "date": "2007-02-17", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola Antonio\n\n- Se podra aplicar el TESTWSCR.PRG de la carpeta samples a un dialogo/folder con controles creados desde recursos ??\n\nMotivo : Por X razon a veces me falta 1 o 2 datos y el espacio se me acabo, y tengo que crear otra pestaña de un folder, si se le pusiera el scroll vertical, seria simplemente fabuloso !!!!\n\n\n\n- Y ya que ando con solicitudes alucinantes <!-- s:wink: --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\":wink:\" title=\"Wink\" /><!-- s:wink: --> , sera posible incrustar un PreView dentro de un control en vez de una ventana ??\n\nMotivo : En un modulo de configuracion de impresiones, si deseo ajustar las coordenadas de algun reporte, tengo que seleccionar el boton [Probar] para que me aparezca el PreView, si se pudiera llamar desde X funcion, se actualizaria al momento los ajustes en dicho control.\n\n\nNo se, quizas tome mucha Coca-Cola el dia de hoy <!-- s8) --><img src=\"{SMILIES_PATH}/icon_cool.gif\" alt=\"8)\" title=\"Cool\" /><!-- s8) --> \n\n\nSaludos", "time": "04:01", "topic": "Antonio, es posible VScroll a un dialogo desde recursos ?", "username": "Raymundo Islas M." } ]
Antonio, es posible VScroll a un dialogo desde recursos ?
[ { "date": "2007-02-17", "forum": "FiveWin para Harbour/xHarbour", "text": "Hi\n\nThis is a code for scroll in dialogs modified for a Brazilian friend:\n\n[code:10vba97n]\n// Testing how to scroll a dialog with its contents \n\n#include \"FiveWin&#46;ch\" \n\n#define D_WIDTH 4 \n#define D_HEIGHT 13 \n\nFUNCTION Main&#40;&#41; \n\nLOCAL oDlg \nLOCAL cGet0101 &#58;= space&#40;10&#41;, ; //Row 1 \n cGet0102 &#58;= space&#40;10&#41;, ; \n cGet0103 &#58;= space&#40;10&#41;, ; \n cGet0104 &#58;= space&#40;10&#41;, ; \n cGet0105 &#58;= space&#40;10&#41;, ; \n cGet0201 &#58;= space&#40;10&#41;, ; //Row 2 \n cGet0202 &#58;= space&#40;10&#41;, ; \n cGet0203 &#58;= space&#40;10&#41;, ; \n cGet0204 &#58;= space&#40;10&#41;, ; \n cGet0205 &#58;= space&#40;10&#41;, ; \n cGet0301 &#58;= space&#40;10&#41;, ; //Row 3 \n cGet0302 &#58;= space&#40;10&#41;, ; \n cGet0303 &#58;= space&#40;10&#41;, ; \n cGet0304 &#58;= space&#40;10&#41;, ; \n cGet0305 &#58;= space&#40;10&#41;, ; \n cGet0401 &#58;= space&#40;10&#41;, ; //Row 4 \n cGet0402 &#58;= space&#40;10&#41;, ; \n cGet0403 &#58;= space&#40;10&#41;, ; \n cGet0404 &#58;= space&#40;10&#41;, ; \n cGet0405 &#58;= space&#40;10&#41;, ; \n cGet0501 &#58;= space&#40;10&#41;, ; //Row 5 \n cGet0502 &#58;= space&#40;10&#41;, ; \n cGet0503 &#58;= space&#40;10&#41;, ; \n cGet0504 &#58;= space&#40;10&#41;, ; \n cGet0505 &#58;= space&#40;10&#41;, ; \n cGet0601 &#58;= space&#40;10&#41;, ; //Row 6 \n cGet0602 &#58;= space&#40;10&#41;, ; \n cGet0603 &#58;= space&#40;10&#41;, ; \n cGet0604 &#58;= space&#40;10&#41;, ; \n cGet0605 &#58;= space&#40;10&#41;, ; \n cGet0701 &#58;= space&#40;10&#41;, ; //Row 7 \n cGet0702 &#58;= space&#40;10&#41;, ; \n cGet0703 &#58;= space&#40;10&#41;, ; \n cGet0704 &#58;= space&#40;10&#41;, ; \n cGet0705 &#58;= space&#40;10&#41;, ; \n cGet0801 &#58;= space&#40;10&#41;, ; //Row 8 \n cGet0802 &#58;= space&#40;10&#41;, ; \n cGet0803 &#58;= space&#40;10&#41;, ; \n cGet0804 &#58;= space&#40;10&#41;, ; \n cGet0805 &#58;= space&#40;10&#41;, ; \n cGet0901 &#58;= space&#40;10&#41;, ; //Row 9 \n cGet0902 &#58;= space&#40;10&#41;, ; \n cGet0903 &#58;= space&#40;10&#41;, ; \n cGet0904 &#58;= space&#40;10&#41;, ; \n cGet0905 &#58;= space&#40;10&#41;, ; \n cGet1001 &#58;= space&#40;10&#41;, ; //Row 10 \n cGet1002 &#58;= space&#40;10&#41;, ; \n cGet1003 &#58;= space&#40;10&#41;, ; \n cGet1004 &#58;= space&#40;10&#41;, ; \n cGet1005 &#58;= space&#40;10&#41;, ; \n cGet1101 &#58;= space&#40;10&#41;, ; //Row 11 \n cGet1102 &#58;= space&#40;10&#41;, ; \n cGet1103 &#58;= space&#40;10&#41;, ; \n cGet1104 &#58;= space&#40;10&#41;, ; \n cGet1105 &#58;= space&#40;10&#41; \n\n define dialog oDlg from 0, 0 TO 25, 70 ; \n title \"Scroll dialog\" ; \n Style nor&#40; WS_VSCROLL, WS_HSCROLL &#41; \n\n @ 9,17 bitmap file \"&#46;&#46;\\bitmaps\\pic1&#46;bmp\" of oDlg size 120,148 adjust \n @ 9,32 bitmap file \"&#46;&#46;\\bitmaps\\pic2&#46;bmp\" of oDlg size 120,148 adjust \n @ 9,47 bitmap file \"&#46;&#46;\\bitmaps\\pic3&#46;bmp\" of oDlg size 120,148 adjust \n @ 9,62 bitmap file \"&#46;&#46;\\bitmaps\\pic4&#46;bmp\" of oDlg size 120,148 adjust \n @ 9,77 bitmap file \"&#46;&#46;\\bitmaps\\pic5&#46;bmp\" of oDlg size 120,148 adjust \n\n @ 21*13,02*8 say \"Customer \" of oDlg update color CLR_BLACK,CLR_WHITE size 120,26 border pixel \n @ 23*13,02*8 say \"P&#46;O&#46; # \" of oDlg update color CLR_BLACK,CLR_WHITE size 120,26 border pixel \n @ 25*13,02*8 say \"Style No&#46;\" of oDlg update color CLR_BLACK,CLR_WHITE size 120,26 border pixel \n @ 27*13,02*8 say \"Fabrics \" of oDlg update color CLR_BLACK,CLR_WHITE size 120,26 border pixel \n @ 29*13,02*8 say \"Fob \" of oDlg update color CLR_BLACK,CLR_WHITE size 120,26 border pixel \n @ 31*13,02*8 say \"Q'TY \" of oDlg update color CLR_BLACK,CLR_WHITE size 120,26 border pixel \n @ 33*13,02*8 say \"DEL&#46; \" of oDlg update color CLR_BLACK,CLR_WHITE size 120,26 border pixel \n @ 35*13,02*8 say \"MAKER \" of oDlg update color CLR_BLACK,CLR_WHITE size 120,26 border pixel \n @ 37*13,02*8 say \"QTA \" of oDlg update color CLR_BLACK,CLR_WHITE size 120,26 border pixel \n @ 39*13,02*8 say \"SIZE \" of oDlg update color CLR_BLACK,CLR_WHITE size 120,26 border pixel \n @ 41*13,02*8 say \"Size B/D \" of oDlg update color CLR_BLACK,CLR_WHITE size 120,26 border pixel \n @ 43*13,02*8 say \"REMARKS \" of oDlg update color CLR_BLACK,CLR_WHITE size 120,26 border pixel \n\n @ 21*13,17*8 say \"Venture \" of oDlg update color CLR_BLACK,CLR_WHITE size 120,26 border pixel \n @ 21*13,32*8 say \"Sears \" of oDlg update color CLR_BLACK,CLR_WHITE size 120,26 border pixel \n @ 21*13,47*8 say \"Kohl's \" of oDlg update color CLR_BLACK,CLR_WHITE size 120,26 border pixel \n @ 21*13,62*8 say \"Kiss \" of oDlg update color CLR_BLACK,CLR_WHITE size 120,26 border pixel \n @ 21*13,77*8 say \"K-MART \" of oDlg update color CLR_BLACK,CLR_WHITE size 120,26 border pixel \n\n //-* Row 1 \n @ 23*13,17*8 get cGet0101 size 120,26 of oDlg update pixel \n @ 23*13,32*8 get cGet0102 size 120,26 of oDlg update pixel \n @ 23*13,47*8 get cGet0103 size 120,26 of oDlg update pixel \n @ 23*13,62*8 get cGet0104 size 120,26 of oDlg update pixel \n @ 23*13,77*8 get cGet0105 size 120,26 of oDlg update pixel \n\n //-* Row 2 \n @ 25*13,17*8 get cGet0201 size 120,26 of oDlg update pixel \n @ 25*13,32*8 get cGet0202 size 120,26 of oDlg update pixel \n @ 25*13,47*8 get cGet0203 size 120,26 of oDlg update pixel \n @ 25*13,62*8 get cGet0204 size 120,26 of oDlg update pixel \n @ 25*13,77*8 get cGet0205 size 120,26 of oDlg update pixel \n\n //-* Row 3 \n @ 27*13,17*8 get cGet0301 size 120,26 of oDlg update pixel \n @ 27*13,32*8 get cGet0302 size 120,26 of oDlg update pixel \n @ 27*13,47*8 get cGet0303 size 120,26 of oDlg update pixel \n @ 27*13,62*8 get cGet0304 size 120,26 of oDlg update pixel \n @ 27*13,77*8 get cGet0305 size 120,26 of oDlg update pixel \n\n //-* Row 4 \n @ 29*13,17*8 get cGet0401 size 120,26 of oDlg update pixel \n @ 29*13,32*8 get cGet0402 size 120,26 of oDlg update pixel \n @ 29*13,47*8 get cGet0403 size 120,26 of oDlg update pixel \n @ 29*13,62*8 get cGet0404 size 120,26 of oDlg update pixel \n @ 29*13,77*8 get cGet0405 size 120,26 of oDlg update pixel \n\n //-* Row 5 \n @ 31*13,17*8 get cGet0501 size 120,26 of oDlg update pixel \n @ 31*13,32*8 get cGet0502 size 120,26 of oDlg update pixel \n @ 31*13,47*8 get cGet0503 size 120,26 of oDlg update pixel \n @ 31*13,62*8 get cGet0504 size 120,26 of oDlg update pixel \n @ 31*13,77*8 get cGet0505 size 120,26 of oDlg update pixel \n\n //-* Row 6 \n @ 33*13,17*8 get cGet0601 size 120,26 of oDlg update pixel \n @ 33*13,32*8 get cGet0602 size 120,26 of oDlg update pixel \n @ 33*13,47*8 get cGet0603 size 120,26 of oDlg update pixel \n @ 33*13,62*8 get cGet0604 size 120,26 of oDlg update pixel \n @ 33*13,77*8 get cGet0605 size 120,26 of oDlg update pixel \n\n //-* Row 7 \n @ 35*13,17*8 get cGet0701 size 120,26 of oDlg update pixel \n @ 35*13,32*8 get cGet0702 size 120,26 of oDlg update pixel \n @ 35*13,47*8 get cGet0703 size 120,26 of oDlg update pixel \n @ 35*13,62*8 get cGet0704 size 120,26 of oDlg update pixel \n @ 35*13,77*8 get cGet0705 size 120,26 of oDlg update pixel \n\n //-* Row 8 \n @ 37*13,17*8 get cGet0801 size 120,26 of oDlg update pixel \n @ 37*13,32*8 get cGet0802 size 120,26 of oDlg update pixel \n @ 37*13,47*8 get cGet0803 size 120,26 of oDlg update pixel \n @ 37*13,62*8 get cGet0804 size 120,26 of oDlg update pixel \n @ 37*13,77*8 get cGet0805 size 120,26 of oDlg update pixel \n\n //-* Row 9 \n @ 39*13,17*8 get cGet0901 size 120,26 of oDlg update pixel \n @ 39*13,32*8 get cGet0902 size 120,26 of oDlg update pixel \n @ 39*13,47*8 get cGet0903 size 120,26 of oDlg update pixel \n @ 39*13,62*8 get cGet0904 size 120,26 of oDlg update pixel \n @ 39*13,77*8 get cGet0905 size 120,26 of oDlg update pixel \n\n //-* Row 10 \n @ 41*13,17*8 get cGet1001 size 120,26 of oDlg update pixel \n @ 41*13,32*8 get cGet1002 size 120,26 of oDlg update pixel \n @ 41*13,47*8 get cGet1003 size 120,26 of oDlg update pixel \n @ 41*13,62*8 get cGet1004 size 120,26 of oDlg update pixel \n @ 41*13,77*8 get cGet1005 size 120,26 of oDlg update pixel \n\n //-* Row 11 \n @ 43*13,17*8 get cGet1101 size 120,26 of oDlg update pixel \n @ 43*13,32*8 get cGet1102 size 120,26 of oDlg update pixel \n @ 43*13,47*8 get cGet1103 size 120,26 of oDlg update pixel \n @ 43*13,62*8 get cGet1104 size 120,26 of oDlg update pixel \n @ 43*13,77*8 get cGet1105 size 120,26 of oDlg update pixel \n\n\n @ 50,20 button \"&Ok\" size 80,20 of oDlg ; \n action &#40;MsgInfo&#40;\"You click OK button!\"&#41;,oDlg&#58;End&#40;&#41;&#41; \n @ 50,40 button \"&Cancel\" size 80,20 of oDlg ; \n action &#40;MsgInfo&#40;\"You click Cancel button!\"&#41;,oDlg&#58;End&#40;&#41;&#41; \n\n ACTIVATE dialog oDlg ; \n ON INIT &#40; TScrDlg&#40;&#41;&#58;New&#40;oDlg,1,40,1,70&#41; &#41; \n\nRETURN&#40; NIL &#41; \n\n//============================================================================ \n// FileName &#58; SCROLL&#46;PRG \n// Purpose &#58; dialog Scroll Class \n// Author &#58; Eric Yang \n// Update History &#58; \n// Date Contents \n// ---------- --------------------------------------------------------------- \n// 1997&#46;02&#46;01 \n// \n//============================================================================ \n#include \"FiveWin&#46;ch\" \n\n#ifndef TRUE \n #define TRUE &#46;T&#46; \n #define FALSE &#46;F&#46; \n#endif \n\nCLASS TScrDlg \n\n DATA oDlg \n DATA nVPos,nHPos \n\n METHOD New&#40; oDlg,nV1,nV2,nH1,nH2 &#41; CONSTRUCTOR \n METHOD SetScroll&#40; nV1,nV2,nH1,nH2 &#41; \n //-*------------------------------------------------------------ \n METHOD VScroll&#40;&#41; \n METHOD VScrollThumb&#40;&#41; \n METHOD VScrollTrack&#40;&#41; \n METHOD VScrollPgDown&#40;&#41; \n METHOD VScrollPgUp&#40;&#41; \n //-*----------------------------- \n METHOD HScroll&#40;&#41; \n METHOD HScrollThumb&#40;&#41; \n METHOD HScrollTrack&#40;&#41; \n METHOD HScrollPgDown&#40;&#41; \n METHOD HScrollPgUp&#40;&#41; \n\nENDCLASS \n\nMETHOD New&#40; oDlg,nV1,nV2,nH1,nH2 &#41; CLASS TScrDlg \n &#58;&#58;nVPos &#58;= 0 \n &#58;&#58;nHPos &#58;= 0 \n &#58;&#58;oDlg &#58;= oDlg \n &#58;&#58;SetScroll&#40; nV1,nV2,nH1,nH2 &#41; \nRETURN Self \n\n\nMETHOD SetScroll&#40; nV1,nV2,nH1,nH2 &#41; CLASS TScrDlg \nLOCAL aCoors1&#58;=&#123;&#125;,aCoors2&#58;=&#123;&#125; \n //-------------------------------------------------- \n //-* Vertical Scroll Bar \n// ? &#58;&#58;oDlg&#58;oVSCroll=NIL \n if &#58;&#58;oDlg&#58;oVScroll != NIL \n// ? nV1,nV2 \n &#58;&#58;oDlg&#58;oVScroll&#58;SetRange&#40; nV1,nV2 &#41; \n &#58;&#58;nVPos &#58;= &#58;&#58;oDlg&#58;oVScroll&#58;GetPos&#40;&#41; \n &#58;&#58;oDlg&#58;oVScroll&#58;bGoDown &#58;= &#123;|| &#58;&#58;VScroll&#40;&#41; &#125; \n &#58;&#58;oDlg&#58;oVScroll&#58;bGoUp &#58;= &#123;|| &#58;&#58;VScroll&#40;&#41; &#125; \n &#58;&#58;oDlg&#58;oVScroll&#58;bPageUp &#58;= &#123;|| &#58;&#58;VScrollPgUp&#40;&#41; &#125; \n &#58;&#58;oDlg&#58;oVScroll&#58;bPageDown &#58;= &#123;|| &#58;&#58;VScrollPgDown&#40;&#41; &#125; \n &#58;&#58;oDlg&#58;oVScroll&#58;bGoTop &#58;= &#123;|| &#58;&#58;VScroll&#40;&#41; &#125; \n &#58;&#58;oDlg&#58;oVScroll&#58;bGoBottom &#58;= &#123;|| &#58;&#58;VScroll&#40;&#41; &#125; \n &#58;&#58;oDlg&#58;oVScroll&#58;nPgStep &#58;= 10 \n //&#58;&#58;oDlg&#58;oVScroll&#58;lReDraw &#58;= TRUE \n &#58;&#58;oDlg&#58;oVScroll&#58;bPos &#58;= &#123;|nPos| &#58;&#58;VScrollThumb&#40;nPos&#41; &#125; \n &#58;&#58;oDlg&#58;oVScroll&#58;bTrack &#58;= &#123;|nPos| &#58;&#58;VScrollTrack&#40;nPos&#41; &#125; \n endif \n //-------------------------------------------------- \n //-* Horizontal Scroll Bar \n if &#58;&#58;oDlg&#58;oHScroll != NIL \n &#58;&#58;oDlg&#58;oHScroll&#58;SetRange&#40; nH1,nH2 &#41; \n &#58;&#58;nHPos &#58;= &#58;&#58;oDlg&#58;oHScroll&#58;GetPos&#40;&#41; \n &#58;&#58;oDlg&#58;oHScroll&#58;bGoDown &#58;= &#123;|| &#58;&#58;HScroll&#40;&#41; &#125; \n &#58;&#58;oDlg&#58;oHScroll&#58;bGoUp &#58;= &#123;|| &#58;&#58;HScroll&#40;&#41; &#125; \n &#58;&#58;oDlg&#58;oHScroll&#58;bPageUp &#58;= &#123;|| &#58;&#58;HScrollPgUp&#40;&#41; &#125; \n &#58;&#58;oDlg&#58;oHScroll&#58;bPageDown &#58;= &#123;|| &#58;&#58;HScrollPgDown&#40;&#41; &#125; \n &#58;&#58;oDlg&#58;oHScroll&#58;bGoTop &#58;= &#123;|| &#58;&#58;HScroll&#40;&#41; &#125; \n &#58;&#58;oDlg&#58;oHScroll&#58;bGoBottom &#58;= &#123;|| &#58;&#58;HScroll&#40;&#41; &#125; \n &#58;&#58;oDlg&#58;oHScroll&#58;nPgStep &#58;= 10 \n //&#58;&#58;oDlg&#58;oHScroll&#58;lReDraw &#58;= TRUE \n &#58;&#58;oDlg&#58;oHScroll&#58;bPos &#58;= &#123;|nPos| &#58;&#58;HScrollThumb&#40;nPos&#41; &#125; \n &#58;&#58;oDlg&#58;oHScroll&#58;bTrack &#58;= &#123;|nPos| &#58;&#58;HScrollTrack&#40;nPos&#41; &#125; \n endif \n //&#58;&#58;oDlg&#58;bKeyChar &#58;= &#123;|nKey,nFlags| ScrollKey&#40;nKey&#41; &#125; \n //-------------------------------------------------- \nRETURN&#40; NIL &#41; \n\n//STATIC FUNCTION ScrollKey&#40;nKey&#41; \n //MsgInfo&#40; \"Key &#58; \"+str&#40;nKey,10&#41; &#41; \n //if nKey == K_ENTER \n // goMainDlg&#58;End&#40;&#41; \n // lRetVal &#58;= TRUE \n //endif \n//RETURN&#40; NIL &#41; \n\n//================================================================= \n//-* Vertical Scroll Bar \nMETHOD VScroll&#40;&#41; CLASS TScrDlg \nLOCAL nNewPos \n if &#58;&#58;nVPos >= &#58;&#58;oDlg&#58;oVScroll&#58;nMin ; \n &#46;and&#46; &#58;&#58;nVPos <= &#58;&#58;oDlg&#58;oVScroll&#58;nMax \n nNewPos &#58;= &#58;&#58;oDlg&#58;oVScroll&#58;GetPos&#40;&#41; \n SysRefresh&#40;&#41; \n\n ScrollWindow&#40; &#58;&#58;oDlg&#58;hWnd, 0, ; \n &#40; &#58;&#58;nVPos-nNewPos &#41;*D_HEIGHT, ; \n 0 , GetClientRect&#40;&#58;&#58;oDlg&#58;hWnd&#41; &#41; \n &#58;&#58;nVPos &#58;= nNewPos \n endif \nRETURN&#40; NIL &#41; \n\nMETHOD VScrollThumb&#40;nNewPos&#41; CLASS TScrDlg \n if &#58;&#58;nVPos >= &#58;&#58;oDlg&#58;oVScroll&#58;nMin ; \n &#46;and&#46; &#58;&#58;nVPos <= &#58;&#58;oDlg&#58;oVScroll&#58;nMax \n &#58;&#58;oDlg&#58;oVScroll&#58;SetPos&#40;nNewPos&#41; \n SysRefresh&#40;&#41; \n ScrollWindow&#40; &#58;&#58;oDlg&#58;hWnd, 0, ; \n &#40;&#58;&#58;nVPos - nNewPos &#41;*D_HEIGHT, ; \n 0 , GetClientRect&#40;&#58;&#58;oDlg&#58;hWnd&#41; &#41; \n &#58;&#58;nVPos &#58;= nNewPos \n endif \nRETURN&#40; NIL &#41; \n\nMETHOD VScrollTrack&#40;nNewPos&#41; CLASS TScrDlg \n if &#58;&#58;nVPos >= &#58;&#58;oDlg&#58;oVScroll&#58;nMin ; \n &#46;and&#46; &#58;&#58;nVPos <= &#58;&#58;oDlg&#58;oVScroll&#58;nMax \n &#58;&#58;oDlg&#58;oVScroll&#58;SetPos&#40;nNewPos&#41; \n SysRefresh&#40;&#41; \n ScrollWindow&#40; &#58;&#58;oDlg&#58;hWnd, 0, ; \n &#40;&#58;&#58;nVPos - nNewPos &#41;*D_HEIGHT, ; \n 0 , GetClientRect&#40;&#58;&#58;oDlg&#58;hWnd&#41; &#41; \n &#58;&#58;nVPos &#58;= nNewPos \n endif \nRETURN&#40; NIL &#41; \n\nMETHOD VScrollPgDown&#40;&#41; CLASS TScrDlg \nLOCAL nNewPos \n if &#58;&#58;nVPos < &#58;&#58;oDlg&#58;oVScroll&#58;nMax \n nNewPos &#58;= &#58;&#58;nVPos + &#58;&#58;oDlg&#58;oVScroll&#58;nPgStep \n nNewPos &#58;= iif&#40;nNewPos > &#58;&#58;oDlg&#58;oVScroll&#58;nMax, &#58;&#58;oDlg&#58;oVScroll&#58;nMax, nNewPos&#41; \n SysRefresh&#40;&#41; \n ScrollWindow&#40; &#58;&#58;oDlg&#58;hWnd, 0, ; \n &#40; &#58;&#58;nVPos - nNewPos &#41;*D_HEIGHT, ; \n 0 , GetClientRect&#40;&#58;&#58;oDlg&#58;hWnd&#41; &#41; \n &#58;&#58;nVPos &#58;= nNewPos \n endif \nRETURN&#40; NIL &#41; \n\nMETHOD VScrollPgUp&#40;&#41; CLASS TScrDlg \nLOCAL nNewPos \n if &#58;&#58;nVPos > &#58;&#58;oDlg&#58;oVScroll&#58;nMin \n nNewPos &#58;= &#58;&#58;nVPos - &#58;&#58;oDlg&#58;oVScroll&#58;nPgStep \n nNewPos &#58;= iif&#40;nNewPos < &#58;&#58;oDlg&#58;oVScroll&#58;nMin,&#58;&#58;oDlg&#58;oVScroll&#58;nMin,nNewPos&#41; \n SysRefresh&#40;&#41; \n ScrollWindow&#40; &#58;&#58;oDlg&#58;hWnd, 0, ; \n &#40; &#58;&#58;nVPos - nNewPos &#41;*D_HEIGHT, ; \n 0 , GetClientRect&#40;&#58;&#58;oDlg&#58;hWnd&#41; &#41; \n &#58;&#58;nVPos &#58;= nNewPos \n endif \nRETURN&#40; NIL &#41; \n\n//================================================================= \n//-* Horizontal Scroll Bar \nMETHOD HScroll&#40;&#41; CLASS TScrDlg \nLOCAL nNewPos \n if &#58;&#58;nHPos >= &#58;&#58;oDlg&#58;oHScroll&#58;nMin ; \n &#46;and&#46; &#58;&#58;nHPos <= &#58;&#58;oDlg&#58;oHScroll&#58;nMax \n nNewPos &#58;= &#58;&#58;oDlg&#58;oHScroll&#58;GetPos&#40;&#41; \n SysRefresh&#40;&#41; \n ScrollWindow&#40; &#58;&#58;oDlg&#58;hWnd, ; \n &#40;&#58;&#58;nHPos - nNewPos &#41;*D_WIDTH,0, ; \n 0 , GetClientRect&#40;&#58;&#58;oDlg&#58;hWnd&#41; &#41; \n &#58;&#58;nHPos &#58;= nNewPos \n endif \nRETURN&#40; NIL &#41; \n\nMETHOD HScrollThumb&#40;nNewPos&#41; CLASS TScrDlg \n if &#58;&#58;nHPos >= &#58;&#58;oDlg&#58;oHScroll&#58;nMin ; \n &#46;and&#46; &#58;&#58;nHPos <= &#58;&#58;oDlg&#58;oHScroll&#58;nMax \n &#58;&#58;oDlg&#58;oHScroll&#58;SetPos&#40;nNewPos&#41; \n SysRefresh&#40;&#41; \n ScrollWindow&#40; &#58;&#58;oDlg&#58;hWnd, ; \n &#40;&#58;&#58;nHPos - nNewPos &#41;*D_WIDTH,0, ; \n 0 , GetClientRect&#40;&#58;&#58;oDlg&#58;hWnd&#41; &#41; \n &#58;&#58;nHPos &#58;= nNewPos \n endif \nRETURN&#40; NIL &#41; \n\nMETHOD HScrollTrack&#40;nNewPos&#41; CLASS TScrDlg \n if &#58;&#58;nHPos >= &#58;&#58;oDlg&#58;oHScroll&#58;nMin ; \n &#46;and&#46; &#58;&#58;nHPos <= &#58;&#58;oDlg&#58;oHScroll&#58;nMax \n &#58;&#58;oDlg&#58;oHScroll&#58;SetPos&#40;nNewPos&#41; \n SysRefresh&#40;&#41; \n ScrollWindow&#40; &#58;&#58;oDlg&#58;hWnd, ; \n &#40;&#58;&#58;nHPos - nNewPos &#41;*D_WIDTH,0, ; \n 0 , GetClientRect&#40;&#58;&#58;oDlg&#58;hWnd&#41; &#41; \n &#58;&#58;nHPos &#58;= nNewPos \n endif \nRETURN&#40; NIL &#41; \n\nMETHOD HScrollPgDown&#40;&#41; CLASS TScrDlg \nLOCAL nNewPos \n if &#58;&#58;nHPos < &#58;&#58;oDlg&#58;oHScroll&#58;nMax \n nNewPos &#58;= &#58;&#58;nHPos + &#58;&#58;oDlg&#58;oHScroll&#58;nPgStep \n nNewPos &#58;= iif&#40;nNewPos > &#58;&#58;oDlg&#58;oHScroll&#58;nMax, &#58;&#58;oDlg&#58;oHScroll&#58;nMax, nNewPos&#41; \n SysRefresh&#40;&#41; \n ScrollWindow&#40; &#58;&#58;oDlg&#58;hWnd, ; \n &#40; &#58;&#58;nHPos - nNewPos &#41;*D_WIDTH,0, ; \n 0 , GetClientRect&#40;&#58;&#58;oDlg&#58;hWnd&#41; &#41; \n &#58;&#58;nHPos &#58;= nNewPos \n endif \nRETURN&#40; NIL &#41; \n\nMETHOD HScrollPgUp&#40;&#41; CLASS TScrDlg \nLOCAL nNewPos \n if &#58;&#58;nHPos > &#58;&#58;oDlg&#58;oHScroll&#58;nMin \n nNewPos &#58;= &#58;&#58;nHPos - &#58;&#58;oDlg&#58;oHScroll&#58;nPgStep \n nNewPos &#58;= iif&#40;nNewPos < &#58;&#58;oDlg&#58;oHScroll&#58;nMin,&#58;&#58;oDlg&#58;oHScroll&#58;nMin,nNewPos&#41; \n SysRefresh&#40;&#41; \n ScrollWindow&#40; &#58;&#58;oDlg&#58;hWnd, ; \n &#40; &#58;&#58;nHPos - nNewPos &#41;*D_WIDTH,0, ; \n 0 , GetClientRect&#40;&#58;&#58;oDlg&#58;hWnd&#41; &#41; \n &#58;&#58;nHPos &#58;= nNewPos \n endif \nRETURN&#40; NIL &#41; \n\n//=* End of File ================================================= \n\nprocedure AppSys // Xbase++ requirement \nreturn \n[/code:10vba97n]", "time": "07:43", "topic": "Antonio, es posible VScroll a un dialogo desde recursos ?", "username": "Rochinha" } ]
Antonio, es posible VScroll a un dialogo desde recursos ?
[ { "date": "2007-02-17", "forum": "FiveWin para Harbour/xHarbour", "text": "Hello Rochinha,\n\nThanks your sample code. \nIt's working.\n\nRegards,\n\nRichard", "time": "11:07", "topic": "Antonio, es posible VScroll a un dialogo desde recursos ?", "username": "Taiwan" } ]
Antonio, es posible VScroll a un dialogo desde recursos ?
[ { "date": "2007-02-17", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola Rochinha\n\nMuchas Gracias por tu pronta respuesta !! <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n\n\nMuito obrigado <!-- s:!: --><img src=\"{SMILIES_PATH}/icon_exclaim.gif\" alt=\":!:\" title=\"Exclamation\" /><!-- s:!: --> \n\nSaludos", "time": "17:34", "topic": "Antonio, es posible VScroll a un dialogo desde recursos ?", "username": "Raymundo Islas M." } ]
Antonio, es posible VScroll a un dialogo desde recursos ?
[ { "date": "2007-02-17", "forum": "FiveWin para Harbour/xHarbour", "text": "Rochinha\n\nTermine mis pruebas y...... funciono perfecto !!!!!\n\nMuchas Gracias\n\n\nSaludos", "time": "18:28", "topic": "Antonio, es posible VScroll a un dialogo desde recursos ?", "username": "Raymundo Islas M." } ]
Antonio, es posible VScroll a un dialogo desde recursos ?
[ { "date": "2007-02-17", "forum": "FiveWin para Harbour/xHarbour", "text": "Gracias\n\nE gracias en nombre de mi amigo!", "time": "18:44", "topic": "Antonio, es posible VScroll a un dialogo desde recursos ?", "username": "Rochinha" } ]
Antonio, es posible VScroll a un dialogo desde recursos ?
[ { "date": "2008-12-13", "forum": "FiveWin para Harbour/xHarbour", "text": "He probado con un dialogo desde recursos y no me funciona... no hace nada <!-- s:roll: --><img src=\"{SMILIES_PATH}/icon_rolleyes.gif\" alt=\":roll:\" title=\"Rolling Eyes\" /><!-- s:roll: -->", "time": "00:49", "topic": "Antonio, es posible VScroll a un dialogo desde recursos ?", "username": "JmGarcia" } ]
Antonio, es posible VScroll a un dialogo desde recursos ?
[ { "date": "2012-05-30", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio, gracias, ya recibí FWH 12.04\n\nPero no me funciona. Cualquier ejemplo que compile me genera el mismo error al momento de ejecución:\n\n[img:3hqcj3hm]http&#58;//www&#46;mastersoft3000&#46;com/publico/fivewin/errorfwh01&#46;jpg[/img:3hqcj3hm]\n\nTengo xHarbour build 1.2.1 Intl (simples) (Rev.9363) - Pcode 10\nBorland C++ 5.8.2\nWindows xp SP2\n\nEste es el ambiente en el equipo que uso para desarrollo y que he utilizado por los útimos dos años sin ningún problema, con FWH 10.10\n\nQué puede ser ?\n\nGracias y saludos,\n\nCarlos Gallego", "time": "19:42", "topic": "Antonio, gracias por FWH 12.04, pero no me funciona", "username": "Cgallegoa" } ]
Antonio, gracias por FWH 12.04, pero no me funciona
[ { "date": "2012-05-30", "forum": "FiveWin para Harbour/xHarbour", "text": "Carlos,\n\nUsa la versión de xHarbour más reciente de las publicadas aqui:\n\n[url:nbbsxodi]http&#58;//code&#46;google&#46;com/p/harbour-and-xharbour-builds/downloads/list[/url:nbbsxodi]", "time": "22:04", "topic": "Antonio, gracias por FWH 12.04, pero no me funciona", "username": "Antonio Linares" } ]
Antonio, gracias por FWH 12.04, pero no me funciona
[ { "date": "2012-07-24", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio, compañeros :\n\nExiste algun limite de controles en la app ?\n\nHace algunos dias la app me empezo a hacer cosas raras como cerrarse de repente sin aviso alguno, despues de estar checando y probando mil cosas, descubri que si comentaba los ultimos controles que genere todo funciona correctamente, si los activo empieza a fallar.\nHubo momentos que generaba un aviso de error y decia que los handlers del sistema estaban agotados ( error 1158 ) mi pc de desarrollo es i7 con 6 gb ram\n\nYa intente destruir el handle de cada recordset y nada :\nors:close\nors:ActiveConnection:hObj := nil\nors := nil\n\nYa hice una depuracion de variables y sigue igual, de hecho casi acabo de pasar todas mis vars locales a un hash para efectos de tener 1 a 3 variables por funcion como maximo\n\nEstoy buscando controles que no afecten o sean muy importantes para quitarlos : say, checkbox, buttons, etc\n\nY por ultimo, estoy pensando en dividir algunas funciones en otras mas pequeñas.\n\nComo datos estadisticos : \n- 27 prgs ( algunos son pequenos )\n- 120,000 lineas de codigo entre todos\n- 4,150 redefines entre todos\n- 11 archivos de recursos (.rc)\n\nAlguna sugerencia o tip por checar para tratar de corregir este detalle, ya que de alguna manera necesito agregar mas funciones a la app.\n\nSaludos", "time": "17:20", "topic": "Antonio, limite de controles en aplicacion", "username": "Raymundo Islas M." } ]
Antonio, limite de controles en aplicacion
[ { "date": "2012-07-24", "forum": "FiveWin para Harbour/xHarbour", "text": "Raymundo,\n\nEn el control de tareas de Windows, activa las columnas para ver consumo de memoria, handles abiertos, etc por aplicación y monitoriza como se comporta la aplicación.\n\nPosiblemente estes abriendo handles que no se cierren, más y más, hasta que llegas al límite de memoria. En 32 bits ese límite esta en torno a dos gigas y pico aunque en realidad debiera ser de 4 gigas, pero Windows no da a la aplicación toda la memoria que debiera.", "time": "22:43", "topic": "Antonio, limite de controles en aplicacion", "username": "Antonio Linares" } ]
Antonio, limite de controles en aplicacion
[ { "date": "2012-07-25", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio,\n\nOk, de entrada me sale : \n\nmemoria : 80,XXX kb\nObj usuario : 9,700\nObj GDI : 5,795\n\nY sip, conforme me muevo en la app va incrementando de poco en poco, pero nunca disminuye o regresa al valor original. Voy a checar el codigo de tales funciones para donde esta el leak de recursos.\n\nAunque lo raro, es que el problema se presenta(ba) al iniciar la app.\n\nEl detalle que tengo es que cierro y abro la app constantemente, segun hago ajustes. Le voy a pedir a unos clientes que chequen el dato ya que ellos le dan uso real todo el dia.\n\nCheco y te informo.\n\nGracias y saludos", "time": "00:09", "topic": "Antonio, limite de controles en aplicacion", "username": "Raymundo Islas M." } ]
Antonio, limite de controles en aplicacion
[ { "date": "2022-12-01", "forum": "Off Topic / Otros temas", "text": "Hola Antonio,\n\nViste mi mail?", "time": "14:31", "topic": "Antonio, mi mail?", "username": "FiveWiDi" } ]
Antonio, mi mail?
[ { "date": "2022-12-01", "forum": "Off Topic / Otros temas", "text": "Hola Carles,\n\nSi, lo vi y se procesó y se te envió al email que especificaste\n\nNo lo has recibido ?", "time": "18:18", "topic": "Antonio, mi mail?", "username": "Antonio Linares" } ]
Antonio, mi mail?
[ { "date": "2022-12-01", "forum": "Off Topic / Otros temas", "text": "[quote=\"Antonio Linares\":1pwb4ucp]Hola Carles,\n\nSi, lo vi y se procesó y se te envió al email que especificaste\n\nNo lo has recibido ?[/quote:1pwb4ucp]\n\nPués no, he repasado el SPAM y nada, no lo veo.", "time": "20:12", "topic": "Antonio, mi mail?", "username": "FiveWiDi" } ]
Antonio, mi mail?
[ { "date": "2022-12-02", "forum": "Off Topic / Otros temas", "text": "Carles,\n\nA que email te lo envío ?\n\nEscribeme por wasap si quieres 722461100", "time": "11:20", "topic": "Antonio, mi mail?", "username": "Antonio Linares" } ]
Antonio, mi mail?
[ { "date": "2022-12-02", "forum": "Off Topic / Otros temas", "text": "[quote=\"Antonio Linares\":3mnk2t7k]Carles,\n\nA que email te lo envío ?\n\nEscribeme por wasap si quieres 722461100[/quote:3mnk2t7k]\n\nHecho.", "time": "11:40", "topic": "Antonio, mi mail?", "username": "FiveWiDi" } ]
Antonio, mi mail?
[ { "date": "2022-11-22", "forum": "Off Topic / Otros temas", "text": "Hola Antonio,\n\nAcabo de ver por que no recibes mis mails:\n\n\"This is the mail system at host soproxy6.mail.unifiedlayer.com.\n\nI'm sorry to have to inform you that your message could not\nbe delivered to one or more recipients. It's attached below.\n\nFor further assistance, please send mail to postmaster.\n\nIf you do so, please include this problem report. You can\ndelete your own text from the attached returned message.\n\n The mail system\n\n<antonio.fivetech@????????.com>: host gmail-smtp-in.l.google.com[142.250.27.26]\n said: 550-5.7.25 [74.220.223.234] The IP address sending this message does\n not have a 550-5.7.25 PTR record setup, or the corresponding forward DNS\n entry does not 550-5.7.25 point to the sending IP. As a policy, Gmail does\n not accept messages 550-5.7.25 from IPs with missing PTR records. Please\n visit 550-5.7.25 <!-- m --><a class=\"postlink\" href=\"https://support.google.com/mail/answer/81126#ip-practices\">https://support.google.com/mail/answer/ ... -practices</a><!-- m -->\n for more 550 5.7.25 information.\n o19-20020a170906975300b0079800b8172bsi13778005ejy.450 - gsmtp (in reply to\n end of DATA command)\"\n\nY no tengo ni idea de que es el PTR.\n\nEnvié el formulario ya una segunda vez, no tengo PayPal.\n\nEnvío formulario de nuevo?\n\nNota: los ?????? los he puesto yo.", "time": "21:13", "topic": "Antonio, no recibes mis mail.", "username": "FiveWiDi" } ]
Antonio, no recibes mis mail.
[ { "date": "2022-11-22", "forum": "Off Topic / Otros temas", "text": "Estimado Carlos,\n\ngracias por avisarme! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nContacta conmigo por whatsapp en +34 722461100\n\nmuchas gracias!", "time": "22:49", "topic": "Antonio, no recibes mis mail.", "username": "Antonio Linares" } ]
Antonio, no recibes mis mail.
[ { "date": "2022-11-22", "forum": "Off Topic / Otros temas", "text": "Carlos,\n\nSi tienes una cuenta de gmail, prueba por favor a enviarme un mensaje, debería llegar bien\n\nmuchas gracias", "time": "22:56", "topic": "Antonio, no recibes mis mail.", "username": "Antonio Linares" } ]
Antonio, no recibes mis mail.
[ { "date": "2011-04-28", "forum": "FiveWin para Harbour/xHarbour", "text": "ENVIADO GRACIAS\nMaestro no se olvide de enviarme el login y la contraseña, le envie mail a sus 2 cuentas, gracias y disculpe.\n\nSaludos\n\nRuben Fernandez", "time": "19:19", "topic": "Antonio, no se olvide de mi, login y contraseña SOLUCIONADO", "username": "Ruben Fernandez" } ]
Antonio, no se olvide de mi, login y contraseña SOLUCIONADO
[ { "date": "2012-06-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Antonio,\n\nPlease help me with this issue: [url:1pihlpfu]http&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=6&t=24352[/url:1pihlpfu]\n\nIf I could solve it not bother you. I think it will take only a couple of minutes of your time. It is important to continue the process of updating our programs to FWH 12.05\n\nRegards,\n\nCarlos Gallego", "time": "03:34", "topic": "Antonio, please help me", "username": "Cgallegoa" } ]
Antonio, please help me
[ { "date": "2012-06-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Carlos,\n\nIt is already solved <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?p=131395#p131395\">viewtopic.php?p=131395#p131395</a><!-- l -->", "time": "12:15", "topic": "Antonio, please help me", "username": "Antonio Linares" } ]
Antonio, please help me
[ { "date": "2012-06-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio, thanks for your answer.\n\nIndeed, disable / / :: Sistem lZoom as proposed by Sistem, the preview opens normally, but with the MouseWheel off. If the report is greater than the size shown in the preview does not work MouseWheel. If the user wants to see the full report has to minimize and then maximize it, or zoom in so that the MouseWheel works.\n\nWe are close but still missing something. <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nRregards,\n\nCarlos Gallego", "time": "15:57", "topic": "Antonio, please help me", "username": "Cgallegoa" } ]
Antonio, please help me
[ { "date": "2015-02-04", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio:\n\nEsto.\n\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=6&t=30084&start=15\">viewtopic.php?f=6&t=30084&start=15</a><!-- l -->\n\nSaludos y gracias por tu apoyo", "time": "16:15", "topic": "Antonio, podrías darme una ayuda ? (Solucionado)", "username": "Armando" } ]
Antonio, podrías darme una ayuda ? (Solucionado)
[ { "date": "2015-02-04", "forum": "FiveWin para Harbour/xHarbour", "text": "Tal vez:\n\n[code=fw:3h8crw8c]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00D7D7;\">#define</span> HB_DIRBASE<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> StrTran<span style=\"color: #000000;\">&#40;</span> hb_DirBase<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>, <span style=\"color: #ff0000;\">\"/\"</span>, <span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\\"</span> )<br /><br />#define hb_RAt() &nbsp; &nbsp; <cSearch>, <cString>, [<nStart>], [<nEnd>]<br />#define hb_at() &nbsp; &nbsp; &nbsp;<cSearch>, <cString>, [<nStart>], [<nEnd>]<br /></span></div>[/code:3h8crw8c]\n\u001a", "time": "17:17", "topic": "Antonio, podrías darme una ayuda ? (Solucionado)", "username": "karinha" } ]
Antonio, podrías darme una ayuda ? (Solucionado)
[ { "date": "2015-02-04", "forum": "FiveWin para Harbour/xHarbour", "text": "<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=6&t=30084&p=171931#p171931\">viewtopic.php?f=6&t=30084&p=171931#p171931</a><!-- l -->", "time": "17:58", "topic": "Antonio, podrías darme una ayuda ? (Solucionado)", "username": "Antonio Linares" } ]
Antonio, podrías darme una ayuda ? (Solucionado)
[ { "date": "2015-02-04", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio:\n\nagregue la lib FiveH.lib pero aún me sigue botando errores, tome de Build.Bat las libs\nque ahí se están incluyendo pero no logro la compilación.\n\nMe ayudaría mucho si alguien me copia el script de xMate para compilar con Harbour, Bcc582 y FW,\nojalá alguien se anime, así ya no doy más lata.\n\nSaludos", "time": "21:04", "topic": "Antonio, podrías darme una ayuda ? (Solucionado)", "username": "Armando" } ]
Antonio, podrías darme una ayuda ? (Solucionado)
[ { "date": "2015-02-05", "forum": "FiveWin para Harbour/xHarbour", "text": "Armando, este es el archivo que uso para xMate.\n \nSacale o agregale lo que necesites.\n\nSaludos\n\n\n\n[Environment]\nDescription 1= Harbour, Fivewin Harbour\nDescription 2=\nDescription 3=\nPRG Compiler ver=\nC compiler ver=\nSubsystem=\nAuthor=Ruben Fernandez\nLast update=05/12/2014\n\n[Advanced]\nCommand types=1,1,1,1,1,1,1,1,1\n\n[Harbour]\nHB_INSTALL=C:\\Harbour122014\nHB_COMMAND=%HB_BIN_INSTALL%\\Harbour.Exe %PRG% /m /n0 /es2 /a /v /i%\nOption prefix=/\n\n[C]\nC_INSTALL=C:\\Bcc66\nC_COMP_COMMAND=%C_BIN_INSTALL%\\Bcc32.Exe -M -c -O2 -tW -v- -X %CRLF%-DHB_FM_STATISTICS_OFF %CRLF%-DHB_NO_DEFAULT_API_MACROS %CRLF%-DHB_NO_DEFAULT_STACK_MACROS %CRLF%-DHB_OS_WIN_32 %CRLF%-I%C_INC_INSTALL%;%HB_INC_INSTALL% -n%HOME%\\Obj %C%\nC_LIB_COMMAND=%C_BIN_INSTALL%\\TLib.Exe %LIB% /P512 @%RSP% , %LST%\nC_LINK_COMMAND=%C_BIN_INSTALL%\\iLink32.Exe -Gn -aa -Tpe -s @%LNK%\nC_RC_COMMAND=%C_BIN_INSTALL%\\Brc32.Exe -r -fo%RES% %RC%\nC_DLL_COMMAND=\nOption prefix=-\n\n[User]\nPOSTEXE_COMMAND=\nPOSTLIB_COMMAND=\nPOSTDLL_COMMAND=\n\n[Files]\n%C_LIB_INSTALL%\\C0W32.OBJ=1\nC:\\fwh1404\\lib\\xlslibh.lib=3\nC:\\FWH1404\\lib\\Fiveh.lib=4\nC:\\FWH1404\\lib\\Fivehc.lib=5\n%HB_LIB_INSTALL%\\hbrtl.lib=6\n%HB_LIB_INSTALL%\\hbvm.lib=7\n%HB_LIB_INSTALL%\\gtgui.lib=8\n%HB_LIB_INSTALL%\\hblang.lib=9\n%C_LIB_INSTALL%\\IMPORT32.LIB=10\n%HB_LIB_INSTALL%\\hbmacro.lib=11\n%HB_LIB_INSTALL%\\hbcommon.lib=12\n%HB_LIB_INSTALL%\\hbpp.lib=13\n%C_LIB_INSTALL%\\CW32.LIB=14\n%HB_LIB_INSTALL%\\hbwin.lib=15\n%HB_LIB_INSTALL%\\hbcpage.lib=16\n%HB_LIB_INSTALL%\\hbnf.lib=17\n%C_LIB_INSTALL%\\psdk\\msimg32.lib=18\n%C_LIB_INSTALL%\\psdk\\odbc32.lib=19\n%C_LIB_INSTALL%\\psdk\\nddeapi.lib=20\n%C_LIB_INSTALL%\\psdk\\iphlpapi.lib=21\n%C_LIB_INSTALL%\\psdk\\rasapi32.lib=22\n%C_LIB_INSTALL%\\psdk\\psapi.lib=23\n%HB_LIB_INSTALL%\\hbcplr.lib=24\n%HB_LIB_INSTALL%\\hbpcre.lib=25\n%HB_LIB_INSTALL%\\hbrdd.lib=26\n%HB_LIB_INSTALL%\\hbsix.lib=27\n%HB_LIB_INSTALL%\\rddcdx.lib=28\n%HB_LIB_INSTALL%\\rddfpt.lib=29\n%HB_LIB_INSTALL%\\rddnsx.lib=30\n%HB_LIB_INSTALL%\\rddntx.lib=31\n%HB_LIB_INSTALL%\\hbct.lib=32\n%HB_LIB_INSTALL%\\xhb.lib=33\n%HB_LIB_INSTALL%\\hbzlib.lib=34\n%HB_LIB_INSTALL%\\png.lib=35\n%HB_LIB_INSTALL%\\hbcurl.lib=36\n%HB_LIB_INSTALL%\\Shell32.lib=37\nC:\\FWH1404\\lib\\libcurl.lib=38", "time": "12:15", "topic": "Antonio, podrías darme una ayuda ? (Solucionado)", "username": "D.Fernandez" } ]
Antonio, podrías darme una ayuda ? (Solucionado)
[ { "date": "2015-02-05", "forum": "FiveWin para Harbour/xHarbour", "text": "Armando,\n\nPuedes usar Fivedit para construir tu aplicación FWH desde él <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\n[url:33i3qg6q]https&#58;//bitbucket&#46;org/fivetech/fivewin-contributions/downloads/fivedit&#46;zip[/url:33i3qg6q]", "time": "12:30", "topic": "Antonio, podrías darme una ayuda ? (Solucionado)", "username": "Antonio Linares" } ]
Antonio, podrías darme una ayuda ? (Solucionado)
[ { "date": "2015-02-05", "forum": "FiveWin para Harbour/xHarbour", "text": "Rubén, Antonio:\n\nMuchas gracias por su apoyo, ahora todo está solucionado\nhe compilado mi primera pequeña aplicación con Harbour.\n\nSaludos", "time": "16:44", "topic": "Antonio, podrías darme una ayuda ? (Solucionado)", "username": "Armando" } ]
Antonio, podrías darme una ayuda ? (Solucionado)
[ { "date": "2015-02-05", "forum": "FiveWin para Harbour/xHarbour", "text": "Un pequeño gran paso.\n\nMe alegro.\nSaludos.", "time": "17:25", "topic": "Antonio, podrías darme una ayuda ? (Solucionado)", "username": "D.Fernandez" } ]
Antonio, podrías darme una ayuda ? (Solucionado)
[ { "date": "2007-08-23", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio e amigos, preciso criar um timer que de tempos em tempos verifique a situacao e troque BMP de botoes BTNBMP, não estou conseguindo:\n\nlocal obtn\ndefine window oWndc from 0,0 TO 25,70 MDICHILD OF oWnd \ndefine timer otimesa of owndc interval 5000 action(trocabmp(obtn))\n@ 10,20 BTNBMP oBtn resource \"FOOD2\" TOP SIZE 60,60 OF oWndc \nACTIVATE WINDOW oWndc on inti(otimesa:activate())\n\n************************\nfunction trocabmp(obtn)\n************************\nobtn:loadbitmap(getresources(),\"LUPA\")\nobtn:refresh()\nreturn(.t.)\n\n\nEsta retornando erro no refresh e sem refresh não troca imagem.\n\nFique com Deus \n\nGrato \n\nAoki", "time": "21:04", "topic": "Antonio, por favor preciso muito disso! (resolvido !)", "username": "AOKISANTOS" } ]
Antonio, por favor preciso muito disso! (resolvido !)
[ { "date": "2007-08-23", "forum": "FiveWin para Harbour/xHarbour", "text": "Crea el botón antes de crear el timer:\n\n@ 10,20 BTNBMP oBtn resource \"FOOD2\" TOP SIZE 60,60 OF oWndc \ndefine timer otimesa of owndc interval 5000 action(trocabmp(obtn))", "time": "21:38", "topic": "Antonio, por favor preciso muito disso! (resolvido !)", "username": "Antonio Linares" } ]
Antonio, por favor preciso muito disso! (resolvido !)
[ { "date": "2007-08-23", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio, não resolveu... segue meu ERROR.LOG e PRG:\n\nApplication\n===========\n Path and name: C:\\DBF\\sgs.exe (32 bits)\n Size: 3,464,192 bytes\n Time from start: 0 hours 0 mins 17 secs \n Error occurred at: 23/08/2007, 18:01:19\n Error description: Error BASE/1004 Message not found: TBTNBMP:LOADBIMTAP\n\nStack Calls\n===========\n Called from: => TBTNBMP:ERROR(179)\n Called from: tobject.prg => (b)HBOBJECT:HBOBJECT(105)\n Called from: => TBTNBMP:MSGNOTFOUND(0)\n Called from: BTNBMP.PRG => TBTNBMP:LOADBIMTAP(167)\n Called from: mesas.prg => VERSITUAMESAS(59)\n Called from: mesas.prg => (b)SELECIONAMESA(43)\n Called from: TIMER.PRG => TIMEREVENT(0)\n Called from: window.prg => (b)TWINDOW:TWINDOW(554)\n Called from: window.prg => TMDICHILD:TIMER(0)\n Called from: window.prg => TWINDOW:HANDLEEVENT(0)\n Called from: MDICHILD.PRG => TMDICHILD:HANDLEEVENT(0)\n Called from: window.prg => _FWH(3165)\n Called from: => WINRUN(0)\n Called from: window.prg => TMDIFRAME:ACTIVATE(883)\n Called from: sgs.PRG => MAIN(219)\n\n\n\n\n\n#include \"FiveWin.ch\" \n\n********************************************************\nFUNCTION SelecionaMesa(nmesa,cmod,nMaxMesa,off,cDescTipo) \n********************************************************\nLOCAL oScrWnd,i,j,contamesas:=0,osay,oBt2,cfupla,coImg,otimesa,Mobtn[nMaxMesa], aMesasOcup := {},aMesasPFech := {}\n\nSituacaoMesas(cMod,nMaxMesa,@aMesasOcup,@aMesasPFech)\n\ndefine window oWndc from 0, 0 TO 25, 70 ; \ntitle \"Controle de Mesas\" MDICHILD OF oWnd vscroll icon oico COLOR EMP_MCOR,EMP_MCOR NOICONIZE\noWndc:maximize()\nfor i := 1 to 500\n for j := 1 to 10\n contamesas++\n if contamesas<=nMaxMesa\n if empty(ascan(aMesasOcup,contamesas))\n @ (((i+.1) * 70) - 70), ((j * 76) - 60) BTNBMP MoBtn[contamesas] resource \"FOOD2\",\"YES\" TOP SIZE 60, 60 OF oWndc noborder\n else\n @ (((i+.1) * 70) - 70), ((j * 76) - 60) BTNBMP MoBtn[contamesas] resource \"FOOD1\",\"YES\" TOP SIZE 60, 60 OF oWndc \n endif\n MoBtn[contamesas]:settext(\"Mesa: \"+alltrim(str(contamesas)))\n else\n exit\n endif\n next\nnext\n\nif emp_cors\n IF ! FILE(ALLTRIM(emp_plan))\n cfupla:=SI1+\"sgs.jpg\"\n ELSE\n cfupla:=emp_plan\n ENDIF\n coImg := TImage():Define( , cfupla ) \n oWndc:bPainted := {|hDC| PalBmpDraw( hDC, 0, 0,coImg:hBitmap,, oWndc:nWidth, oWndc:nHeight, , .T.) } \nendif\n\ndefine timer otimesa of owndc interval 10000 action(VERSITUAMESAS(nMaxMesa,cmod,Mobtn))\notimesa:activate()\nACTIVATE WINDOW oWndc MAXIMIZED on init(TScrWnd():New( oWndc, 1, nMaxMesa, 1, 70 ));\n valid(otimesa:deactivate(),oWndc:=NIL,.t.)\n \n\nreturn !empty(nMesa)\n\n\n\n*******************************************\nFUNCTION VERSITUAMESAS(nMaxMesa,cmod,Mobtn)\n*******************************************\nmobtn[1]:loadbimtap(getresources(),\"LUPA\")\nmobtn[1]:refresh()\nRETURN(.T.)", "time": "21:59", "topic": "Antonio, por favor preciso muito disso! (resolvido !)", "username": "AOKISANTOS" } ]
Antonio, por favor preciso muito disso! (resolvido !)
[ { "date": "2007-08-23", "forum": "FiveWin para Harbour/xHarbour", "text": "Que error da ?", "time": "22:05", "topic": "Antonio, por favor preciso muito disso! (resolvido !)", "username": "Antonio Linares" } ]
Antonio, por favor preciso muito disso! (resolvido !)
[ { "date": "2007-08-24", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio, Bom dia, o erro já esta postado acima e esta ocorrendo nesta linha:\n\nmoBtn[1]:loadbitmap(getresources(),\"LUPA\") <- erro\nmoBtn[1]:refresh()\n\nApplication\n===========\n Path and name: C:\\DBF\\sgs.exe (32 bits)\n Size: 3,464,192 bytes\n Time from start: 0 hours 0 mins 8 secs \n Error occurred at: 24/08/2007, 08:05:47\n Error description: Error BASE/1004 Message not found: TBTNBMP:LOADBITMAP\n\nStack Calls\n===========\n Called from: => TBTNBMP:ERROR(179)\n Called from: tobject.prg => (b)HBOBJECT:HBOBJECT(105)\n Called from: => TBTNBMP:MSGNOTFOUND(0)\n Called from: BTNBMP.PRG => TBTNBMP:LOADBITMAP(167)\n Called from: mesas.prg => VERSITUAMESAS(68)\n Called from: mesas.prg => (b)SELECIONAMESA(45)\n Called from: TIMER.PRG => TIMEREVENT(0)\n Called from: window.prg => (b)TWINDOW:TWINDOW(554)\n Called from: window.prg => TMDICHILD:TIMER(0)\n Called from: window.prg => TWINDOW:HANDLEEVENT(0)\n Called from: MDICHILD.PRG => TMDICHILD:HANDLEEVENT(0)\n Called from: window.prg => _FWH(3165)\n\n\ngracias Antonio...\n\n\nAoki", "time": "12:09", "topic": "Antonio, por favor preciso muito disso! (resolvido !)", "username": "AOKISANTOS" } ]
Antonio, por favor preciso muito disso! (resolvido !)
[ { "date": "2007-08-24", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio, muito obrigado!\n\nResolvi usando loadbitmaps(\"RECURSO\")\n\nMuito obrigado e Deus te abençoe!\n\nAoki", "time": "12:28", "topic": "Antonio, por favor preciso muito disso! (resolvido !)", "username": "AOKISANTOS" } ]
Antonio, por favor preciso muito disso! (resolvido !)
[ { "date": "2010-09-20", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola compañeros,\n\nTengo un problema que no consigo darle solución: \nAl pulsar el botón Desactivar, deberían quedar desactivados el propio botón desactivar, el Get y activado el botón Activar. Sin embargo, no sucede en la forma que debería. Si suprimimos la cláusula VALID del Get y la cláusula CANCEL del botón Desactivar, obtenemos el comportamiento deseado. ¿Alguna Sugerencia?\nDejo un ejemplo con el problema:\n\n[code=fw:2mq3alsb]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"FiveWin.ch\"</span><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<br />   <span style=\"color: #00C800;\">local</span> cName1 := <span style=\"color: #ff0000;\">\"             \"</span><br />   <span style=\"color: #00C800;\">local</span> lEdit := .t.<br />   <br />   <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">FROM</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">5</span> <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #000000;\">40</span>, <span style=\"color: #000000;\">100</span> <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\"Hello World!\"</span><br />   <br />   @  <span style=\"color: #000000;\">05</span>,  <span style=\"color: #000000;\">18</span> <span style=\"color: #0000ff;\">GET</span> cName1  <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">WHEN</span> lEdit COLORS <span style=\"color: #ff0000;\">\"B/BG\"</span> <span style=\"color: #0000ff;\">UPDATE</span> <span style=\"color: #0000ff;\">VALID</span> !Empty<span style=\"color: #000000;\">&#40;</span> cName1 <span style=\"color: #000000;\">&#41;</span><br />   <br />   @ <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">BUTTON</span> oBtn <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Desactivar\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">50</span>, <span style=\"color: #000000;\">30</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">WHEN</span> lEdit <span style=\"color: #0000ff;\">ACTION</span> lEdit := .f. CANCEL<br />   @ <span style=\"color: #000000;\">3</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">BUTTON</span> oBtn1 <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Activar\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">50</span>, <span style=\"color: #000000;\">30</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">WHEN</span> !lEdit <span style=\"color: #0000ff;\">ACTION</span> lEdit := .t.<br /><br />   <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">CENTERED</span> <br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /> </div>[/code:2mq3alsb]\n\nMuchas gracias, Saludos!!!", "time": "11:58", "topic": "Antonio, problema en Get, cláusulas WHEN y CANCEL", "username": "triumvirato" } ]
Antonio, problema en Get, cláusulas WHEN y CANCEL
[ { "date": "2010-09-20", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola\nHe tomado tu ejemplo, lo he dejado así, y funciona\n[code=fw:2doysyvj]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"FiveWin.ch\"</span><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<br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> cName1 := Space<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">25</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> lEdit <br />&nbsp; &nbsp;<br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">FROM</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">5</span> <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #000000;\">40</span>, <span style=\"color: #000000;\">100</span> <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\"Hello World!\"</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ &nbsp;<span style=\"color: #000000;\">05</span>, &nbsp;<span style=\"color: #000000;\">18</span> <span style=\"color: #0000ff;\">GET</span> cName1 &nbsp;<span style=\"color: #0000ff;\">WHEN</span> lEdit <span style=\"color: #0000ff;\">VALID</span> !Empty<span style=\"color: #000000;\">&#40;</span> cName1 <span style=\"color: #000000;\">&#41;</span> COLORS <span style=\"color: #ff0000;\">\"B/BG\"</span> &nbsp;<span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">UPDATE</span> &nbsp; <br />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <span style=\"color: #000000;\">3</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">BUTTON</span> oBtn <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Desactivar\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">50</span>, <span style=\"color: #000000;\">30</span> <span style=\"color: #0000ff;\">OF</span> oDlg;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #0000ff;\">WHEN</span> lEdit <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">&#40;</span>lEdit := .f.,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBtn1:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oBtn:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oDlg:<span style=\"color: #0000ff;\">Update</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><span style=\"color: #000000;\">&#41;</span> &nbsp; &nbsp; &nbsp; <span style=\"color: #B900B9;\">// CANCEL</span><br />&nbsp; &nbsp;@ <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">BUTTON</span> oBtn1 <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Activar\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">50</span>, <span style=\"color: #000000;\">30</span> <span style=\"color: #0000ff;\">OF</span> oDlg ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #0000ff;\">WHEN</span> !lEdit <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">&#40;</span>lEdit := .t.,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; oBtn:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; oBtn1:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Odlg:<span style=\"color: #0000ff;\">Update</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;<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> lEdit := .F.<br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span></div>[/code:2doysyvj]", "time": "12:39", "topic": "Antonio, problema en Get, cláusulas WHEN y CANCEL", "username": "Pedro" } ]
Antonio, problema en Get, cláusulas WHEN y CANCEL
[ { "date": "2010-09-20", "forum": "FiveWin para Harbour/xHarbour", "text": "Pedro,\n\nGracias por tu ayuda.\n\nSi eliminamos la cláusula CANCEL (que es la que permite saltarse el VALID del Get), Al situarte en el Get, no puedes pinchar sobre el botón Desactivar. La cláusula CANCEL es necesaria 100%.\nEn mi código había hecho alguna prueba con los Refresh y Updates, el problema está en que tampoco corrigen el problema, además de que el código tiene más de 200 controles (entre browses, gets, botones, etc.) por lo que ir actualizando uno a uno es realmente complicado. Por la misma razón no utilizo los métodos de cada clase :Enable() y <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->isable(). Creo que el problema es un funcionamiento extraño de la cláusula CANCEL. A ver si alguien nos saca de dudas y consigue que funcione correctamente si es que el comportamiento no es el esperado.\n\nSaludos!", "time": "12:48", "topic": "Antonio, problema en Get, cláusulas WHEN y CANCEL", "username": "triumvirato" } ]
Antonio, problema en Get, cláusulas WHEN y CANCEL
[ { "date": "2010-09-20", "forum": "FiveWin para Harbour/xHarbour", "text": "Francisco, (HA DESAPARECIDO TU POST)\n\nMuchas gracias por tu ayuda. Si lo hago de esta manera, al tener unos 200 controles que actualizar en el diálogo como decía antes, necesito incluir unas 199 cláusulas Enable() y otras 199 cláusulas Disable(). En el ejemplo se usa un GET y dos botones, en mi código son unos 200 controles a actualizar entre GETS, BROWSES, SAYS, ETC., cuando el problema que veo es un comportamiento anormal cuando un botón tiene la cláusula CANCEL. Por cierto, si lo hago de esta manera que indicas, me sobran entonces todas las cláusulas WHEN de los controles.\n\nAntonio, ¿es correcto este comportamiento cuando se pone la cláusula CANCEL?\nSaludos!", "time": "15:56", "topic": "Antonio, problema en Get, cláusulas WHEN y CANCEL", "username": "triumvirato" } ]
Antonio, problema en Get, cláusulas WHEN y CANCEL
[ { "date": "2010-09-22", "forum": "FiveWin para Harbour/xHarbour", "text": "¿A nadie se le ocurre algo o es que el comportamiento es el esperado?. Estoy atascado con esto...\n\nGracias.", "time": "09:39", "topic": "Antonio, problema en Get, cláusulas WHEN y CANCEL", "username": "triumvirato" } ]
Antonio, problema en Get, cláusulas WHEN y CANCEL
[ { "date": "2010-09-22", "forum": "FiveWin para Harbour/xHarbour", "text": "Triunvirato, esto lo hice al vuelo (es solo un ejemplo, no lo he probado):\n\nFunction Des_Act_Ctrls(oDlg, lActivar)\nlocal aCtrls, n\n\naCtrls:=oDlg:aControls\n\nif !lActivar //desactivar\n\n For n:= 1 to len(aCtrls)\n if aCtrls[n]:ClassName() =\"TBUTTON\" .or. aCtrls[n]:ClassName() = \"TGET\"\n if oDlg:aControls[n]:ClassName() = \"TGET\"\n oDlg:aControls[n]:Disable()\n endif\n \n if oDlg:aControls[n]:ClassName() =\"TBUTTON\" .and. oDlg:aControls[n]:cText = \"ACTIVAR\" //queda activo este bot\n oDlg:aControls[n]:Enable() \n else //desactivar resto de botones\n oDlg:aControls[n]:Disable()\n endif\n endif\n Next\n\nelse //Activar\n\n For n:= 1 to len(aCtrls)\n if aCtrls[n]:ClassName() =\"TBUTTON\" .or. aCtrls[n]:ClassName() = \"TGET\"\n if oDlg:aControls[n]:ClassName() = \"TGET\"\n oDlg:aControls[n]:Enable()\n endif\n\n if oDlg:aControls[n]:ClassName() =\"TBUTTON\" .and. oDlg:aControls[n]:cText = \"ACTIVAR\" //queda act este bot\n oDlg:aControls[n]:Disable()\n else //resto de botones quedan activos\n oDlg:aControls[n]:Enable()\n endif\n endif\n Next\n\nendif\n\nSaludos", "time": "14:20", "topic": "Antonio, problema en Get, cláusulas WHEN y CANCEL", "username": "FranciscoA" } ]
Antonio, problema en Get, cláusulas WHEN y CANCEL
[ { "date": "2010-09-23", "forum": "FiveWin para Harbour/xHarbour", "text": "Francisco,\n\nGracias por tu ayuda.\nEstoy probando el trocito de código que has propuesto. Me ha abierto los ojos para muchas cosas, es muy interesante (de hecho ya le he dado uso en otras partes de mi código), pero para este caso concreto no me sirve, pues los controles que han de funcionar son unos 200, pero en ese mismo diálogo hay otros tantos que no. Por tanto me quedan o todos activados o desactivados (incluidos los que no hay que hacer nada con ellos).\n\nA ver si Antonio pasa por aquí y nos puede decir algo sobre el comportamiento de ese CANCEL.\n\nGRACIAS!", "time": "07:37", "topic": "Antonio, problema en Get, cláusulas WHEN y CANCEL", "username": "triumvirato" } ]
Antonio, problema en Get, cláusulas WHEN y CANCEL
[ { "date": "2010-09-23", "forum": "FiveWin para Harbour/xHarbour", "text": "David,\n\nTodos los controles estan contenidos en oDlg:aControls por lo que puedes hacer:\n\nAEval( oDlg:aControls, { | oControl | oControl:Enable() } )\n\nó lo que necesites <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->", "time": "08:29", "topic": "Antonio, problema en Get, cláusulas WHEN y CANCEL", "username": "Antonio Linares" } ]
Antonio, problema en Get, cláusulas WHEN y CANCEL
[ { "date": "2010-09-25", "forum": "FiveWin para Harbour/xHarbour", "text": "David,\n\nCon este pequeño cambio, tu ejemplo funciona como deseas <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\n[code=fw:1tpamjfa]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />&nbsp; &nbsp;@ <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">BUTTON</span> oBtn <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Desactivar\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">50</span>, <span style=\"color: #000000;\">30</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">WHEN</span> lEdit ;<br />&nbsp; &nbsp; &nbsp; <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">&#40;</span> lEdit := .f., oDlg:<span style=\"color: #000000;\">AEvalWhen</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span> CANCEL<br />&nbsp;</div>[/code:1tpamjfa]", "time": "08:53", "topic": "Antonio, problema en Get, cláusulas WHEN y CANCEL", "username": "Antonio Linares" } ]
Antonio, problema en Get, cláusulas WHEN y CANCEL
[ { "date": "2010-09-25", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio,\n\nGracias, de verdad muchas gracias, funcionó perfectamente, ese era el comportamiento que yo esperaba e imaginaba que haría automáticamente.\n\nMuchas gracias, Saludos!", "time": "09:20", "topic": "Antonio, problema en Get, cláusulas WHEN y CANCEL", "username": "triumvirato" } ]
Antonio, problema en Get, cláusulas WHEN y CANCEL
[ { "date": "2010-09-25", "forum": "FiveWin para Harbour/xHarbour", "text": "bien! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nLas evaluaciones de los WHEN solo se realizan en las pérdidas de foco es por esto que hay que llamar a oDlg:AEvalWhen() para forzar que se realice <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->", "time": "10:18", "topic": "Antonio, problema en Get, cláusulas WHEN y CANCEL", "username": "Antonio Linares" } ]
Antonio, problema en Get, cláusulas WHEN y CANCEL
[ { "date": "2007-02-19", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello Antonio,\n\nDid you find any time to look at my question concerning the TFolder class ?\n\nThanks.\n\nMichel", "time": "16:08", "topic": "Antonio, question about TFolder class", "username": "driessen" } ]
Antonio, question about TFolder class
[ { "date": "2007-02-19", "forum": "FiveWin for Harbour/xHarbour", "text": "Michel\n\nThe tfolder class works OK in fwh\n\nJust a small advice, Get rid of all Borland Controls (Borshade,...etc). This is the best way to have your app running. \n\nBorland controls were a problem to many of us.\n\nHth\n\nRichard", "time": "17:14", "topic": "Antonio, question about TFolder class", "username": "Richard Chidiak" } ]
Antonio, question about TFolder class
[ { "date": "2007-02-19", "forum": "FiveWin for Harbour/xHarbour", "text": "Richard,\n\nHow do I get rid of the Borland Controls ?\n\nResource Workshop uses but the Borland Controls.\n\nFor dialog boxes one can choose between BorDlg_Gray or BorDlg.\nWithout Borland Controls some controls are colored a very ugly gray.\n\nWhat is the alternative while using resources ?\n\nThanks.\n\nMichel", "time": "17:35", "topic": "Antonio, question about TFolder class", "username": "driessen" } ]
Antonio, question about TFolder class
[ { "date": "2007-02-19", "forum": "FiveWin for Harbour/xHarbour", "text": "Michel\n\nYou can set color to your dialog boxes from your source code.\n\nWhen you select the dialog in resource workshop, select none (borlandgray, or borland you have a third selection (none) blank)\n\nYou can customize all your screens without any borland control.\n\nIf you need further help or samples, let me know.\n\nMy 2 cents\n\nRichard", "time": "19:39", "topic": "Antonio, question about TFolder class", "username": "Richard Chidiak" } ]
Antonio, question about TFolder class
[ { "date": "2007-02-20", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello guys,\n\nI found the reason why my folders didn't appear in my dialog box.\n\n(See my previous topic to see examples).\n\nThere was a control (a box around the folders) which is put in the background in FW16. In FW32 though it is put in front of the folders which make them invisible.\n\nI got rid of those boxes and guess what : my folders were back.\n\nThanks anyway for your efforts to help me.\n\nMany greetings,\n\nMichel", "time": "00:27", "topic": "Antonio, question about TFolder class", "username": "driessen" } ]
Antonio, question about TFolder class
[ { "date": "2007-02-20", "forum": "FiveWin for Harbour/xHarbour", "text": "Michel,\n\nWhen you refer to the differences between FW16 and FW32, remember that some of these differences may be due to different versions of FW rather than 16bit vs 32bit. I presume you have an older version of FW16 than the version of FW32 that you are using.\n\nJames", "time": "06:50", "topic": "Antonio, question about TFolder class", "username": "James Bott" } ]
Antonio, question about TFolder class
[ { "date": "2007-02-21", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello guys,\n\nMy problem concerning my folders is solved.\n\nIn FW16 I had a box drawn around my folders and it showed beautiful.\n\nIn FW32 the box comes on top of the folders. So I got rid of the box and the folders reappeared again.\n\nThank you so much for helping me.\n\nRegards,\n\nMichel", "time": "14:37", "topic": "Antonio, question about TFolder class", "username": "driessen" } ]
Antonio, question about TFolder class
[ { "date": "2007-06-18", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote:1ycdeh6q]So I got rid of the box and the folders reappeared again[/quote:1ycdeh6q]\n\nSeems to be the order the controls are defined in RC.\nTry to put the box at the begining of the dialog, before the other controls.", "time": "22:31", "topic": "Antonio, question about TFolder class", "username": "concentra" } ]
Antonio, question about TFolder class
[ { "date": "2008-03-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio :\n\nDesde que actualize el FWH he estado observando este comportamiento :\n\nCuando por algun motivo se truena la app, antes me mandaba la clasica ventana que indicaba el error, el numero de linea, el campo o variable, etc. ahora solo me muestra esta pantalla :\n\n[img:3eg3sqbn]http&#58;//img142&#46;imageshack&#46;us/img142/6651/errormsgzb9&#46;jpg[/img:3eg3sqbn]\n\n\nY esta medio dificil saber de que se trata.\n\nQue o quien esta mostrando este mensaje, hay alguna manera de ver la pantalla anterior ??\n\n\nSaludos", "time": "19:31", "topic": "Antonio, quien causa esto ? FWH o xHarbour ???", "username": "Raymundo Islas M." } ]
Antonio, quien causa esto ? FWH o xHarbour ???
[ { "date": "2008-03-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Raymundo,\n\nCon que código PRG generas ese error ?", "time": "19:39", "topic": "Antonio, quien causa esto ? FWH o xHarbour ???", "username": "Antonio Linares" } ]
Antonio, quien causa esto ? FWH o xHarbour ???
[ { "date": "2008-03-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Master :\n\n\nCon cualquier error que me tope.\n\n\nComo comento, antes salia y decia de que se trataba, ahora normalmente sale ese en cualquier circunstacia.\n\n\n\nSaludos", "time": "19:42", "topic": "Antonio, quien causa esto ? FWH o xHarbour ???", "username": "Raymundo Islas M." } ]
Antonio, quien causa esto ? FWH o xHarbour ???
[ { "date": "2008-03-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola Raymundo\n\nmodifica el errsysw.prg\n\nen la linea 78\n\n[code:36ig6jvu] ErrorBlock&#40; &#123;|e| MsgStop&#40; ErrorMessage&#40;e&#41; + \" from Errorsys, line&#58;\" + ;\n Str&#40; ProcLine&#40; 1 &#41;, 4 &#41; &#41;, __quit&#40;&#41; &#125; &#41;\n[/code:36ig6jvu]\n\npor esta\n\n[code:36ig6jvu] ErrorBlock&#40; &#123;|e| MsgStop&#40; ErrorMessage&#40;e&#41; + \" desde Errorsys, linea&#58;\" + ;\n Alltrim&#40;cValtochar&#40;ProcLine&#40; 1 &#41; &#41; &#41; &#41;,;\n\t\t\t\t\t\t\t\t\t MsgInfo&#40; PadR&#40; alltrim&#40;cErrorLog&#41;,at&#40; \"System\", cErrorLog &#41;+10 &#41;&#41;,;\n\t\t\t\t\t\t\t\t\t __quit&#40;&#41; &#125; &#41;\n[/code:36ig6jvu]", "time": "19:53", "topic": "Antonio, quien causa esto ? FWH o xHarbour ???", "username": "Patricio Avalos Aguirre" } ]
Antonio, quien causa esto ? FWH o xHarbour ???
[ { "date": "2008-03-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Raymundo:\n\nAlguna vez me tope con ese error, por favor revisa tus variables y\narchivos DBF, creo ( porque no recuerdo bien), que se trataba\nde una variable no declarada o de un archivo corrupto.\n\nSaludos y suerte\n\nRuben Fernandez.", "time": "20:14", "topic": "Antonio, quien causa esto ? FWH o xHarbour ???", "username": "Ruben D. Fernandez" } ]
Antonio, quien causa esto ? FWH o xHarbour ???
[ { "date": "2008-03-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola Ruben\n\nEn efecto, el detalle es el mensaje no indica cual es la causa del error.\n\n\nPatricio\n\nTienes razon, esa linea es la \"culpable\", modifico y pruebo.\n\n\nGracias a todos !!!\n\n\nSaludos", "time": "20:21", "topic": "Antonio, quien causa esto ? FWH o xHarbour ???", "username": "Raymundo Islas M." } ]
Antonio, quien causa esto ? FWH o xHarbour ???
[ { "date": "2008-03-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Buen día para...\n\n Que tal Raymundo, prueba esta versión mejorada de ERRORSYSW a ver si te sirve\n\nPara bajarla \n<!-- m --><a class=\"postlink\" href=\"http://www.mediafire.com/?dyifb5nhm23\">http://www.mediafire.com/?dyifb5nhm23</a><!-- m --> \n\nAlgunos detalles\n<!-- m --><a class=\"postlink\" href=\"http://fivetechsoft.com/forums/viewtopic.php?t=10177&sid=8a5492327640fce6cff2051d68961b2c\">http://fivetechsoft.com/forums/viewtopi ... 1d68961b2c</a><!-- m -->", "time": "21:19", "topic": "Antonio, quien causa esto ? FWH o xHarbour ???", "username": "ARCC" } ]
Antonio, quien causa esto ? FWH o xHarbour ???
[ { "date": "2008-03-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola Antonio\n\nGracias por tu alternativa, la bajo y la pruebo.\n\n\nLes agradezco a todos\n\n\nSaludos", "time": "21:45", "topic": "Antonio, quien causa esto ? FWH o xHarbour ???", "username": "Raymundo Islas M." } ]
Antonio, quien causa esto ? FWH o xHarbour ???
[ { "date": "2008-03-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Raymundo,\n\nPuedes proporcionar un pequeño PRG autocontenido que genere ese error ?\n\nPor ejemplo, te sale ese error con este código ?\n[code:2w59wpzx]\nfunction main&#40;&#41;\n\n x++\n\nreturn nil\n[/code:2w59wpzx]", "time": "21:58", "topic": "Antonio, quien causa esto ? FWH o xHarbour ???", "username": "Antonio Linares" } ]
Antonio, quien causa esto ? FWH o xHarbour ???
[ { "date": "2008-03-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio\n\nEl problema es la funcion timeFromStart(), algo pasa con la variable static, siempre pasa cuando se produce un error al iniciar el sistema\n\nprueba lo siguiente\n\n[code:354iwlk3]\nFUNCTION MAIN&#40;&#41;\n//BLA\n//BLA\nRETURN NIL\n\nInit Procedure Inicio&#40;&#41;\nlocal lPaso &#58;= &#46;t&#46;\n\n lPaso ++ //probocar el error al inicio\n\nreturn[/code:354iwlk3]\n\nahora prueba comentanto la linea\n\n[code:354iwlk3]//cErrorLog += \" Time from start&#58; \" + TimeFromStart&#40;&#41; + CRLF[/code:354iwlk3]", "time": "22:25", "topic": "Antonio, quien causa esto ? FWH o xHarbour ???", "username": "Patricio Avalos Aguirre" } ]
Antonio, quien causa esto ? FWH o xHarbour ???
[ { "date": "2008-03-29", "forum": "FiveWin para Harbour/xHarbour", "text": "Patricio,\n\nArreglado. La función TimeFromStart() hay que modificarla así:\n[code:3ajt589l]\nfunction TimeFromStart&#40;&#41;\n\n local nSeconds, nHours, nMins, nSecs\n\n if ValType&#40; aInitInfo&#91; 1 &#93; &#41; == \"N\"\n aInitInfo = &#123; Date&#40;&#41;, Seconds&#40;&#41; &#125;\n endif \n\n nSeconds = SecsFromStart&#40; aInitInfo&#91; 1 &#93;, aInitInfo&#91; 2 &#93; &#41;\n nHours = Int&#40; nSeconds / 3600 &#41;\n nMins = Int&#40; &#40; nSeconds - &#40; nHours * 3600 &#41; &#41; / 60 &#41;\n nSecs = Int&#40; nSeconds - &#40; nHours * 3600 &#41; - &#40; nMins * 60 &#41; &#41;\n \nreturn AllTrim&#40; Str&#40; nHours &#41; &#41; + \" hours \" + ;\n AllTrim&#40; Str&#40; nMins &#41; &#41; + \" mins \" + ;\n AllTrim&#40; Str&#40; nSecs &#41; &#41; + \" secs \"\n[/code:3ajt589l]\nGracias!", "time": "10:18", "topic": "Antonio, quien causa esto ? FWH o xHarbour ???", "username": "Antonio Linares" } ]
Antonio, quien causa esto ? FWH o xHarbour ???
[ { "date": "2008-02-07", "forum": "FiveWin para Harbour/xHarbour", "text": "Master\n\nSe ven super los tooltips tipo globo, solo una pequena solicitud :\n\nQue posibilidad existe que se le pueda agregar un parametro adicional para pintarlos de X color.\n\nSetBalloon( .T., CLR_X )\n\nEstaria fantastico !!!!\n\nAhora, ya que andas metiendole degradados de color a los tabs, pues que le ajustes los metodos y pudieran quedar opcionalmente con este tipo :\n\nSetBalloon( .T., CLR_X, CLR_Y )\n\n\nOjala sea posible <!-- s:P --><img src=\"{SMILIES_PATH}/icon_razz.gif\" alt=\":P\" title=\"Razz\" /><!-- s:P --> \n\n\nSaludos", "time": "04:34", "topic": "Antonio, se podra en el Ballon Tooltip esto ?", "username": "Raymundo Islas M." } ]
Antonio, se podra en el Ballon Tooltip esto ?
[ { "date": "2008-02-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Saludos Raymundo Islas:\n\nTalves sea esto lo que estas buscando, yo lo eimplemente en mi sistema y trabaja de lujo..\n\nEsta es una contribucíon de Rossine, ya tiene un buen tiempo rolando aqui en el foro y hasta ahora nadia ha reportado fallos con dicha contribución:\n\nComo te daras cuenta solo son pequeñas modificaciones y tus tooltips andaran de lujo..\n\n\n<!-- m --><a class=\"postlink\" href=\"http://fivetechsoft.com/forums/viewtopic.php?t=3623&highlight=ntooltipicon\">http://fivetechsoft.com/forums/viewtopi ... ooltipicon</a><!-- m -->\n\n\nSaludos Paisano... <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n\nI.S.C. Víctor Daniel Cuatécatl León.\n<!-- w --><a class=\"postlink\" href=\"http://www.soldisoft.unlugar.com\">www.soldisoft.unlugar.com</a><!-- w -->\n<!-- w --><a class=\"postlink\" href=\"http://www.sisa.unlugar.com\">www.sisa.unlugar.com</a><!-- w -->", "time": "01:10", "topic": "Antonio, se podra en el Ballon Tooltip esto ?", "username": "cuatecatl82" } ]
Antonio, se podra en el Ballon Tooltip esto ?
[ { "date": "2008-02-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola Victor\n\n\nMuchas gracias por el tip, tienes razon, ese post ya tiene rato.\n\nOk, hare mis pruebas.\n\nTe lo agradezco mucho.\n\n\n\nSaludos", "time": "12:57", "topic": "Antonio, se podra en el Ballon Tooltip esto ?", "username": "Raymundo Islas M." } ]
Antonio, se podra en el Ballon Tooltip esto ?
[ { "date": "2007-02-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola Antonio, estoy estrenando la nueva version y cuando compilo con el Borland me da en todos los prg este mismo error.\n\nBorland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland\nC\\INICIO.c:\nError E2451 C\\INICIO.c 197: Undefined symbol 'HB_FS_LOCAL'\nError E2141 C\\INICIO.c 197: Declaration syntax error\nError E2190 C\\INICIO.c 197: Unexpected }\nError E2190 C\\INICIO.c 197: Unexpected }\nError E2040 C\\INICIO.c 197: Declaration terminated incorrectly\nError E2190 C\\INICIO.c 197: Unexpected }\nError E2190 C\\INICIO.c 197: Unexpected }\nError E2040 C\\INICIO.c 197: Declaration terminated incorrectly\nError E2451 C\\INICIO.c 431: Undefined symbol 'hb_vm_SymbolInit_INICIO'\n*** 9 errors in Compile ***\n\nSolucionando esto, ya recompilo todos mis sistemas.\n\nSaludos y gracias\nJorge Jaurena", "time": "02:13", "topic": "Antonio, seguramente es una tonteria", "username": "Jorge Jaurena" } ]
Antonio, seguramente es una tonteria
[ { "date": "2007-02-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Has instalado el Harbour ó xHarbour que corresponde a esa versión de FWH ?", "time": "09:02", "topic": "Antonio, seguramente es una tonteria", "username": "Antonio Linares" } ]
Antonio, seguramente es una tonteria
[ { "date": "2007-02-10", "forum": "FiveWin para Harbour/xHarbour", "text": "Instale Harbour que baje junto con el resto. El Harbour me dio algunos errores al compilar pero lo solucione rapidamente, en cambio esto me complica un poco mas.\n\nGracias", "time": "00:43", "topic": "Antonio, seguramente es una tonteria", "username": "Jorge Jaurena" } ]
Antonio, seguramente es una tonteria
[ { "date": "2007-02-10", "forum": "FiveWin para Harbour/xHarbour", "text": "Jorge,\n\nNo tendrás alguna otra versión de Harbour instalada en tu ordenador ?\n\nEl define HB_FS_LOCAL está en el fichero hbvmpub.h de Harbour y por tanto debería encontrarlo sin problemas", "time": "08:03", "topic": "Antonio, seguramente es una tonteria", "username": "Antonio Linares" } ]
Antonio, seguramente es una tonteria
[ { "date": "2007-02-10", "forum": "FiveWin para Harbour/xHarbour", "text": "Perdon por hacerte perder tiempo, en su momento en vez de indicar la ruta en el cfg del bcc++ copie todos los .h al directorio include del bcc++, por lo tanto al configurarlo como corresponde todo funciona bien.\n\nSaludos y gracias.", "time": "14:28", "topic": "Antonio, seguramente es una tonteria", "username": "Jorge Jaurena" } ]
Antonio, seguramente es una tonteria
[ { "date": "2007-02-10", "forum": "FiveWin para Harbour/xHarbour", "text": "bien <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->", "time": "14:50", "topic": "Antonio, seguramente es una tonteria", "username": "Antonio Linares" } ]
Antonio, seguramente es una tonteria
[ { "date": "2005-10-30", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola antonio como vas he estado tratando de compilar con fw24 bcc55 y xharbour ultima version, pero me sigue arrojando los errores que te he comentado he hecho de todo hasta ahora sin resultados, rene me contesto que debo modicar la clase y buscar otra version de xharbor. Tu me puedes indicar algo.\n\nUN ABRAZO LEANDRO ALFONSO", "time": "21:23", "topic": "Antonio, sera que ayudas con el error de los botones", "username": "leandro" } ]
Antonio, sera que ayudas con el error de los botones
[ { "date": "2005-10-31", "forum": "FiveWin para Harbour/xHarbour", "text": "Leandro,\n\nEs preciso que copies aquí la línea 411 de TWindow:LButtonDown (window.prg) para que intentemos ayudarte. Estás usando una versión bastante antigua de FWH y es dificil poder solucionarlo, salvo que veamos que código exactamente estás usando y que es el que causa el error.", "time": "07:43", "topic": "Antonio, sera que ayudas con el error de los botones", "username": "Antonio Linares" } ]
Antonio, sera que ayudas con el error de los botones
[ { "date": "2005-11-02", "forum": "FiveWin para Harbour/xHarbour", "text": "antonio, te coloque el archivo que me pediste el tu correo electrónico, nuevamente muchas gracias.\n\nLEANDRO ALFONSO\nBogotá (Colombia)", "time": "20:29", "topic": "Antonio, sera que ayudas con el error de los botones", "username": "leandro" } ]
Antonio, sera que ayudas con el error de los botones
[ { "date": "2005-11-04", "forum": "FiveWin para Harbour/xHarbour", "text": "antonio ya te coloque la imagen en tu correo, espero me puedas ayudar.\n\nUn abrazo \n\nLEANDRO ALFONSO", "time": "21:38", "topic": "Antonio, sera que ayudas con el error de los botones", "username": "leandro" } ]
Antonio, sera que ayudas con el error de los botones
[ { "date": "2005-11-04", "forum": "FiveWin para Harbour/xHarbour", "text": "Leandro,\n\nEn la línea 361 de dialog.prg hay esta línea:\n\n If GetFocus() == ::nResult:hWnd\n\ncámbiala por:\n\n If ValType( ::nResult:hWnd ) == \"N\" .and. GetFocus() == ::nResult:hWnd\n\nrecompila dialog.prg y enlázalo a tu aplicación como un OBJ más.", "time": "21:45", "topic": "Antonio, sera que ayudas con el error de los botones", "username": "Antonio Linares" } ]
Antonio, sera que ayudas con el error de los botones
[ { "date": "2005-11-08", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio buena tarde como estas:\n\n1- Ya cambie la linea del comando tal y como me digiste, la cambie del directorio c:\\fwh\\source\\clases.\n\n2- La coloque como prg y lo compile con el resto de los prg del programa.\n\n3- lo quite de todo lado, pero no me arroja ningun error al momento de generar el ejecutable.\n\nYo compilo y enlazo con verce 4.0. Que pena mi ignorancia y molestar tanto pero me puedes indicar que mas debo hacer. La imagen del error sigue siendo la misma.\n\nLEANDRO ALFONSO\nBogotá (Colombia)", "time": "21:17", "topic": "Antonio, sera que ayudas con el error de los botones", "username": "leandro" } ]
Antonio, sera que ayudas con el error de los botones
[ { "date": "2005-11-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Leandro,\n\nPor favor, construye la aplicación con xharbour e indícame si el error que te aparece es el mismo. Envíame la imagen del error. Gracias.", "time": "08:07", "topic": "Antonio, sera que ayudas con el error de los botones", "username": "Antonio Linares" } ]
Antonio, sera que ayudas con el error de los botones
[ { "date": "2006-09-16", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio, no FWPPC existe a possibilidade de colocarmos as abas na parte inferior, porque esta opção não está disponível no FWH? Existe planos para melhorar a qualidade do Folder no FWH?\n\n* Nuevo: FWPPC, soporte para carpetas con pestañas en la parte inferior y estilo plano. Todo lo que tienes que especificar es la claúsula BOTTOM. \n\nAbraços.", "time": "20:10", "topic": "Antonio, sobre Folder.", "username": "syda" } ]
Antonio, sobre Folder.
[ { "date": "2006-10-02", "forum": "FiveWin para Harbour/xHarbour", "text": "Syda,\n\nvamos a implementarlo en FWH también.", "time": "04:38", "topic": "Antonio, sobre Folder.", "username": "Antonio Linares" } ]
Antonio, sobre Folder.
[ { "date": "2007-02-13", "forum": "FiveWin para Harbour/xHarbour", "text": "Olá Antonio,\n\nComo faço para que o método INITIATE de TFOLDER seja executado no programa abaixo:\n\n[code:3gtvkyvr]\n// Dinamically building a folder ontop of a Dinamic DialogBox\n\n#include \"FiveWin&#46;ch\"\n\nstatic oDlg, oFld\n\n//----------------------------------------------------------------------------//\n\nfunction Main&#40;&#41;\n\n DEFINE DIALOG oDlg TITLE \"FiveWin Dynamic folders\" ;\n FROM 5, 5 TO 20, 50\n\n ACTIVATE DIALOG oDlg CENTERED on init INICIO&#40;&#41;\n\nreturn nil\n\nstatic function INICIO\n\n @ 0&#46;5, 1 FOLDER oFld PROMPT \"&xBase\", \"&And OOP\", \"&Power\" ;\n OF oDlg SIZE 160, 90 && design\n\n @ 1, 1 BUTTON \"&Hello\" OF oFld&#58;aDialogs&#91; 1 &#93; ;\n ACTION MsgInfo&#40; \"Hello world!\" &#41;\n\nreturn nil\n\n//----------------------------------------------------------------------------//\n\n[/code:3gtvkyvr]\n\nGracias,\n\nRossine.", "time": "21:10", "topic": "Antonio, tFolder():Initiate não executa", "username": "Rossine" } ]
Antonio, tFolder():Initiate não executa
[ { "date": "2007-02-13", "forum": "FiveWin para Harbour/xHarbour", "text": "// Dinamically building a folder ontop of a Dinamic DialogBox \n\n#include \"FiveWin.ch\" \n\n//----------------------------------------------------------------------------// \n\nfunction Main()\n\n LOCAL oDlg, oFld\n\n DEFINE DIALOG oDlg TITLE \"FiveWin Dynamic folders\" ; \n FROM 5, 5 TO 20, 50 \n\n ACTIVATE DIALOG oDlg CENTERED on init INICIO( oDlg, oFld )\n\nreturn nil \n\nstatic function INICIO( oDlg, oFld )\n\n @ 0.5, 1 FOLDER oFld PROMPT \"&Primeiro\", \"&Segundo\", \"&Terceiro\" ;\n OF oDlg SIZE 160, 90 && design\n\n @ 1, 1 BUTTON \"&Hello\" SIZE 60,16 OF oFld:aDialogs[ 1 ] ;\n ACTION MsgInfo( \"Hello world!\" )\n\nreturn nil", "time": "21:22", "topic": "Antonio, tFolder():Initiate não executa", "username": "karinha" } ]
Antonio, tFolder():Initiate não executa
[ { "date": "2007-02-14", "forum": "FiveWin para Harbour/xHarbour", "text": "Olá João,\n\nIsto não funcionou <!-- s:cry: --><img src=\"{SMILIES_PATH}/icon_cry.gif\" alt=\":cry:\" title=\"Crying or Very sad\" /><!-- s:cry: --> Para simular o problema, dentro do fonte FOLDER.PRG no método \"INITIATE\" coloque um \"msgstop( \"parando\" )\",\ne você vai ver que ele não é executado.\n\nAgora se voce executrar o programa abaixo, aí funciona.\n\n[code:3b0pexlu]\n// Dinamically building a folder ontop of a Dinamic DialogBox \n\n#include \"FiveWin&#46;ch\" \n\nstatic oDlg, oFld \n\n//----------------------------------------------------------------------------// \n\nfunction Main&#40;&#41; \n\n DEFINE DIALOG oDlg TITLE \"FiveWin Dynamic folders\" ; \n FROM 5, 5 TO 20, 50\n\n\n @ 0&#46;5, 1 FOLDER oFld PROMPT \"&xBase\", \"&And OOP\", \"&Power\" ; \n OF oDlg SIZE 160, 90 && design \n\n @ 1, 1 BUTTON \"&Hello\" OF oFld&#58;aDialogs&#91; 1 &#93; ; \n ACTION MsgInfo&#40; \"Hello world!\" &#41; \n\n \n ACTIVATE DIALOG oDlg CENTERED\n\nreturn nil \n\n//----------------------------------------------------------------------------// \n[/code:3b0pexlu]\n\nObrigado,\n\nRossine.", "time": "11:54", "topic": "Antonio, tFolder():Initiate não executa", "username": "Rossine" } ]
Antonio, tFolder():Initiate não executa
[ { "date": "2007-02-14", "forum": "FiveWin para Harbour/xHarbour", "text": "Rossine,\n\nEl método Initiate() sólo se ejecuta para controles redefinidos ó para controles que se crean antes de activar el diálogo. En tu ejemplo, el diálogo ya está creado, por eso no se llama a initiate().\n\nPara que necesitas llamar a Initiate() ?", "time": "12:11", "topic": "Antonio, tFolder():Initiate não executa", "username": "Antonio Linares" } ]
Antonio, tFolder():Initiate não executa
[ { "date": "2007-02-17", "forum": "FiveWin para Harbour/xHarbour", "text": "Olá Antonio,\n\nO problema é que eu estava fazendo chamada a certas funções dentro do método \"initiate\", mas fiz as mudanças necessárias e funcionou 100% <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: --> \n\n[code:2otgddnv]\nMETHOD New&#40; nTop, nLeft, aPrompts, aDialogs, oWnd, nOption, nClrFore,;\n nClrBack, lPixel, lDesign, nWidth, nHeight, cMsg, lAllWidth,;\n oFont, cMultline, aBitmaps &#41; CLASS TFolder && cMultline, aBitmaps = by Rossine\n\n&#46;&#46;&#46;\n\n &#58;&#58;Register&#40;&#41;\n\n if ! Empty&#40; oWnd&#58;hWnd &#41;\n #ifdef __CLIPPER__\n &#58;&#58;Create&#40;&#41;\n #else\n &#58;&#58;Create&#40; \"SysTabControl32\" &#41;\n if ! &#58;&#58;aBitmaps == nil && by Rossine && 15/02/07\n &#58;&#58;SetImageList&#40;&#41; && by Rossine && 15/02/07\n endif && by Rossine && 15/02/07\n &#58;&#58;SetPrompts&#40; &#58;&#58;aPrompts &#41;\n #endif\n if oFont != nil\n &#58;&#58;SetFont&#40; oFont &#41;\n elseif oWnd != nil &#46;and&#46; oWnd&#58;oFont != nil\n &#58;&#58;SetFont&#40; oWnd&#58;oFont &#41;\n else\n &#58;&#58;GetFont&#40;&#41;\n endif\n oWnd&#58;AddControl&#40; Self &#41;\n else\n oWnd&#58;DefControl&#40; Self &#41;\n endif\n\n for n = 1 to Len&#40; &#58;&#58;aDialogs &#41;\n DEFINE DIALOG oDlg OF Self STYLE WS_CHILD ;\n FROM 0, 0 TO &#58;&#58;nHeight&#40;&#41; - &#58;&#58;nFdHeight - 5, &#58;&#58;nWidth&#40;&#41; - 6 PIXEL ;\n FONT Self&#58;oFont color nClrFore, nClrBack\n &#58;&#58;aDialogs&#91; n &#93; = oDlg\n oDlg&#58;cVarName = \"Page\" + AllTrim&#40; Str&#40; n &#41; &#41;\n next\n\n if ! Empty&#40; oWnd&#58;hWnd &#41;\n &#58;&#58;Default&#40;&#41;\n endif\n\n if lDesign\n &#58;&#58;CheckDots&#40;&#41;\n endif\n\n SetWndDefault&#40; oWnd &#41;\n\n &#58;&#58;AdjustRect&#40;&#41; && 15/02/07 && by Rossine\n\nreturn Self\n[/code:2otgddnv]\n\n[code:2otgddnv]\nMETHOD Initiate&#40; hDlg &#41; CLASS TFolder\n\n local n, oBmp &#58;= &#123; &#125;\n local aRect\n\n Super&#58;Initiate&#40; hDlg &#41;\n\n &#58;&#58;Default&#40;&#41;\n\n #ifndef __CLIPPER__\n* if ! &#58;&#58;aBitmaps == nil && by Rossine\n* &#58;&#58;SetImageList&#40;&#41; && by Rossine\n* endif && by Rossine\n* &#58;&#58;SetPrompts&#40; &#58;&#58;aPrompts &#41;\n* &#58;&#58;AdjustRect&#40;&#41; && by Rossine\n #else\n for n = 1 to Len&#40; &#58;&#58;aDialogs &#41;\n #ifdef __CLIPPER__\n &#58;&#58;aDialogs&#91; n &#93;&#58;SetSize&#40; &#58;&#58;nWidth&#40;&#41; - 6,;\n &#58;&#58;nHeight&#40;&#41; - &#58;&#58;nFdHeight - 5 &#41;\n #else\n &#58;&#58;aDialogs&#91; n &#93;&#58;SetSize&#40; &#58;&#58;nWidth&#40;&#41; - 5,;\n &#58;&#58;nHeight&#40;&#41; - &#58;&#58;nFdHeight - 4 &#41;\n #endif\n next\n #endif\n\nreturn nil\n[/code:2otgddnv]\n\nGracias,\n\nRossine.", "time": "14:53", "topic": "Antonio, tFolder():Initiate não executa", "username": "Rossine" } ]
Antonio, tFolder():Initiate não executa
[ { "date": "2023-05-26", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola Antonio:\n\nPrimero, una disculpa por molestarte.\n\nPodrías pedir a Mr. Rao, le tire un ojo a este error?\n\n<!-- l --><a class=\"postlink-local\" href=\"https://forums.fivetechsupport.com/viewtopic.php?f=3&t=43196\">viewtopic.php?f=3&t=43196</a><!-- l -->\n\nSaludos y muchas gracias", "time": "01:55", "topic": "Antonio, tu ayuda por favor", "username": "Armando" } ]
Antonio, tu ayuda por favor
[ { "date": "2023-05-26", "forum": "FiveWin para Harbour/xHarbour", "text": "Mensaje enviado,\n\ngracias!", "time": "09:35", "topic": "Antonio, tu ayuda por favor", "username": "Antonio Linares" } ]
Antonio, tu ayuda por favor
[ { "date": "2023-05-26", "forum": "FiveWin para Harbour/xHarbour", "text": "Buenos dias Armando\n\n¿ puedes hacer esta pequeña prueba para comprobar si cierras la tabla ?\n[code=fw:3ua1ace5]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">STATIC</span> <span style=\"color: #00C800;\">FUNCTION</span> CloseTable<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />    oWnd        := <span style=\"color: #00C800;\">NIL</span><br /><br />    <span style=\"color: #00C800;\">IF</span> oRsHdr <> <span style=\"color: #00C800;\">NIL</span><br />        <span style=\"color: #00C800;\">IF</span> oRsHdr:<span style=\"color: #000000;\">State</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> = adStateOpen<br />            MsgWait<span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"Cerrando tabla oRsHdr\"</span>,<span style=\"color: #ff0000;\">\"Atención\"</span>,<span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">&#41;</span>     < --------- añade esta linea<br />            oRsHdr:<span style=\"color: #000000;\">Close</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />        <span style=\"color: #00C800;\">ENDIF</span><br />    <span style=\"color: #00C800;\">ENDIF</span><br /><span style=\"color: #00C800;\">RETURN</span><span style=\"color: #000000;\">&#40;</span>.T.<span style=\"color: #000000;\">&#41;</span></div>[/code:3ua1ace5]\n\nLeyendo tu código y el error 2147352567, parace una excepción de tipo DISP_E_EXCEPTION. La función que intenta leer la estructura devuelve un error (posiblemente no controlado). Viendo el video y observando que la primera vez si funciona y la segunda no, buscaría en la creación de la tabla. \nLa prueba que te pido es para ver si realmente la tabla se ha cerrado correctamente.\nSi se cierra, miraría en la creación de la tabla la segunda vez. \nPor ejemplo, en vez de poner :\n[code=fw:3ua1ace5]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">   <span style=\"color: #00C800;\">IF</span> oRsHdr == <span style=\"color: #00C800;\">nil</span><br />        MsgStop<span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"I can't open the table HDRVDA !\"</span>,oApp:<span style=\"color: #000000;\">cAplicacion</span><span style=\"color: #000000;\">&#41;</span><br />        FW_ShowAdoError<span style=\"color: #000000;\">&#40;</span>oApp:<span style=\"color: #000000;\">oCon</span><span style=\"color: #000000;\">&#41;</span><br />      <span style=\"color: #00C800;\">RETURN</span><span style=\"color: #000000;\">&#40;</span>.F.<span style=\"color: #000000;\">&#41;</span><br />   <span style=\"color: #00C800;\">ENDIF</span></div>[/code:3ua1ace5]\n\npondria :\n[code=fw:3ua1ace5]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">   <span style=\"color: #00C800;\">IF</span> VALTYPE<span style=\"color: #000000;\">&#40;</span>oRsHdr<span style=\"color: #000000;\">&#41;</span> <> <span style=\"color: #ff0000;\">\"O\"</span>           <span style=\"color: #B900B9;\">// si no es un objeto</span><br />        MsgStop<span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"I can't open the table HDRVDA !\"</span>,oApp:<span style=\"color: #000000;\">cAplicacion</span><span style=\"color: #000000;\">&#41;</span><br />        FW_ShowAdoError<span style=\"color: #000000;\">&#40;</span>oApp:<span style=\"color: #000000;\">oCon</span><span style=\"color: #000000;\">&#41;</span><br />      <span style=\"color: #00C800;\">RETURN</span><span style=\"color: #000000;\">&#40;</span>.F.<span style=\"color: #000000;\">&#41;</span><br />   <span style=\"color: #00C800;\">ENDIF</span></div>[/code:3ua1ace5]\n\nEs solo una idea. No estoy muy puesto en SQL\n\nSaludos", "time": "11:57", "topic": "Antonio, tu ayuda por favor", "username": "JESUS MARIN" } ]
Antonio, tu ayuda por favor
[ { "date": "2023-05-26", "forum": "FiveWin para Harbour/xHarbour", "text": "Master Antonio y Jesús Marin:\n\nAgradezco tu interés y apoyo, pero no, ninguna de las sugerencias solucionó el problema.\n\nComo bien analizaste, la primera vez que entro con la tabla vacía, se agregan los dos\nregistros, uno de entrada y el siguiente de salida, y se muestran en el browse sin problema.\n\nAl salir y regresar a seguir aumentando más registros, el browse tira el problema, ya probé\nla primera sugerencia de Jesús y sí se cierra la tabla, también probé la segunda sugerencia y el problema\npersiste.\n\nMás datos, estoy simulando movimientos en un almacén, entradas y salidas, en las salidas\nse debe llenar el campo HDR_SUC que contiene el número de la sucursal destino, no es el\ncaso de las entradas, ahí no hay sucursal destino, por esta razón el campo es Null\n\n[url=https&#58;//postimages&#46;org/:2l72u8se][img:2l72u8se]https&#58;//i&#46;postimg&#46;cc/Dz3zWj02/Clip1&#46;jpg[/img:2l72u8se][/url:2l72u8se]\n\nLo curioso es que con solo invertir el orden en que se graban los registros, primero la salida y\ndespués la entrada, todo funciona al 100.\n\nSaludos y gracias nuevamente", "time": "17:44", "topic": "Antonio, tu ayuda por favor", "username": "Armando" } ]
Antonio, tu ayuda por favor
[ { "date": "2023-05-26", "forum": "FiveWin para Harbour/xHarbour", "text": "Armando\n\nHas probado a eliminar esta linea ?\n\n[code=fw:33gt2j45]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">oRsHdr:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"HDR_SUC\"</span><span style=\"color: #000000;\">&#41;</span>:<span style=\"color: #000000;\">Value</span> &nbsp; := AdoNull<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> &nbsp; <span style=\"color: #B900B9;\">// Only out movs has value</span></div>[/code:33gt2j45]\n\nEn el movimiento de salida no grabas nada en el campo HDR_REF.\n¿ qué ocurre si no grabas nada en el campo HDR_SUC ?\n\nSaludos", "time": "18:27", "topic": "Antonio, tu ayuda por favor", "username": "JESUS MARIN" } ]
Antonio, tu ayuda por favor
[ { "date": "2023-05-26", "forum": "FiveWin para Harbour/xHarbour", "text": "Jesús:\n\nGracias, el problema sigue igual, grabando o no el Null.\n\nQuitando el LEFT JOIN a la tabla sucursales, el problema se soluciona, peroooo\nnecesito mostrar el nombre de la sucursal en el Browse.\n\nEmpiezo a pensar que puede ser un pequeño bug en la clase TXBrowse, y que solo\nel experto, Mr. Rao, no puede sacar del problema.\n\nSaludos", "time": "22:49", "topic": "Antonio, tu ayuda por favor", "username": "Armando" } ]
Antonio, tu ayuda por favor
[ { "date": "2009-06-19", "forum": "FiveWin para Harbour/xHarbour", "text": "Saludos, Antonio:\n\nEstoy usando la FWH 9.04, y la utilidad de busqueda incremental, no esta funcionando.\nCompile la misma clase de Combobox de la FWH 8.08 y me funcionan corractamente, la pregunta es, si el hacer esto causara otros errores?\n\nSaludos desde Honduras <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->", "time": "02:36", "topic": "Antonio, un problema Combobox incremental search en FWH 9.04", "username": "Blessed" } ]
Antonio, un problema Combobox incremental search en FWH 9.04
[ { "date": "2008-10-31", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio, \r\n\r\nUso de Fget, para modificar el color y el tamaño de la fuente, mi texto definitivo es el siguiente:\r\n[code:keogp0bl]\nGTF\u00051\u0007Arial\u000511\u00054&#46;84\u00050\u00050\u00050\u00050\u0005Arial Narrow\u000519\u00058&#46;36\u00050\u00050\u00050\u00050\u0005Modern\u000532\u000514&#46;08\u00050\u00051\u00050\u00050\u0005\u0007\u00110\u0005\u000f1\u0005\u00108388608\u0005teste de envio de email\n\u000f2\u0005\u0010255\u0005teste de envio de email\n\u000f3\u0005\u001032768\u0005teste de envio de email\n\u0007\u001a\n[/code:keogp0bl]\r\n\r\nLo que hice fue cambiar el tamaño de la fuente y el color de una línea, que pueden faltar para mostrar correctamente en todo un editor?\r\n\r\nGracias en adelantado, \r\n\r\nSaludos deste Brasil", "time": "20:24", "topic": "Antonio, una ayuda POR FAVOR", "username": "laugusto" } ]
Antonio, una ayuda POR FAVOR
[ { "date": "2008-11-03", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio, \r\n\r\nEstoy usando FGET para editar un texto que será enviado por correo electrónico. Lo que pasa es que el formato de FGET es confuso para leer.\r\n\r\nEstoy usando FGET transformado para editar el texto con cText: = GTFToRTF (cMEMO1), pero el mismo texto, se muestra sólo cuando estén debidamente editado con Word. Lo que quiero es mostrar el texto en el mensaje de correo electrónico. A continuación el texto con el formato GTFToRTF,\r\n[code:21sst8g4]\n&#123;\\rtf1\\ansi\\deff0\\deftab720&#123;\\fonttbl&#123;\\f1\\fnil Arial;&#125;&#123;\\f2\\fnil Arial Narrow;&#125;&#125;\n&#123;\\colortbl;\\red0\\green0\\blue0;&#125;&#123;\\info&#123;\\title &#125;&#123;\\author &#125;\n&#125;&#123;\\pard\\pard\\ql&#123;\\f2\\fs40\\b\\cf1 teste de formata\\'e7ao&#125;&#125;&#125;\u001a\n[/code:21sst8g4]\r\n\r\nEstoy muy agradecido si usted pudiera ayudar a resolver el problema.\r\n\r\nSaludos desde Brasil,", "time": "12:04", "topic": "Antonio, una ayuda POR FAVOR", "username": "laugusto" } ]
Antonio, una ayuda POR FAVOR