topic
stringlengths
1
63
text
stringlengths
1
577k
Catching GPF's
Hi. I'm looking at catching GPF's in xHarbour using SetUnhandledExceptionfilter. Has anybody done this already that can provide me with a sample? Thanks, Alex
Catching GPF's
Alex, If you use the xHarbour build we provide from <!-- w --><a class="postlink" href="http://www.fivetechsoft.com/files/xharbour.exe">www.fivetechsoft.com/files/xharbour.exe</a><!-- w --> it already include GPFs catching using SetUnhandledExceptionfilter(). Both Harbour and xHarbour already include support for SetU...
Catching GPF's
We're currently using the commercial version of xHarbour. I'll see what I can find out from their newsgroup. Alex
Catching HB_CompileFromBuf() errors
Its been a long time since this conversation happened in the Harbour development group: [url:2uao77ti]https&#58;//groups&#46;google&#46;com/d/msg/harbour-devel/WFnOTGO91gk/RdLiu_JyAWYJ[/url:2uao77ti] Today I tried to understand Przemek's words again: [quote:2uao77ti]Such redirection should be implemented using GT API...
Catching HB_CompileFromBuf() errors
How I discovered it: function HB_CompileFromBuf() is declared in c:\harbour\src\compiler\hbcmplib.c and it makes this call: hb_compGenArgList( 2, hb_pcount(), &argc, &argv, &pIncItem, &pOpenFunc, &pMsgFunc ); Notice the 2. In hb_compGenArgList() we find this code: [code=fw:lx8ry9nz]<div class="fw" id="{CB}" style="f...
Catching errorlevel from old dos app
Hello all How can I determine what error code a dos app returns. I’m using the blat command line mailer. When the email doesn’t get sent the app returns an non zero errorlevel code. Is there a way to get that code without writing a second app to trap it and pass it along to the main app through a file or something. For...
Catching errorlevel from old dos app
Try ErrorLevel() function. EMG
Catching errorlevel from old dos app
Here is a beeter example. [code:1dkofsb2] // erelvl&#46;prg #include "fivewin&#46;ch" PROCEDURE Main&#40;&#41; LOCAL nErr nErr &#58;= WaitRun&#40;"tst2&#46;exe"&#41; MSGInfo&#40;nErr&#41; MSGInfo&#40;errorlevel&#40;&#41;&#41; // returns 0 RETURN // tst2&#46;prg ? "hello to you" errorlevel&#40;1&#41; inkey&#...
Catching errorlevel from old dos app
Sorry, I don't think that ErrorLevel() function can help you. EMG
Category tree with xBrowse
I have a table for categories I want to show in xBrowse with a tree can someone help me? Table Structure ID N 3 Parent N 3 Bez C 30 [list:1o4no1ev] Local aData := { ; { 1,0 , "Neu" }, ; { 2,0 , "OK Kat1"}, ; { 3,0 , "OK Marken"}, ; ...
Category tree with xBrowse
[code=fw:2zqbmyj4]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"xbrowse.ch"</span><br /><br />REQUEST DBFCDX<br /><br /><span styl...
Category tree with xBrowse
This is cool! If someone want show 2 columns, ID and Bez, how the code becomes ? Regards, Perry
Category tree with xBrowse
[quote="AntoninoP":csymuz6d]This is cool! If someone want show 2 columns, ID and Bez, how the code becomes ? Regards, Perry[/quote:csymuz6d] [code=fw:csymuz6d]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><...
Category tree with xBrowse
Thank Rao Unfortunately, I did not wanted. the tree should be -Neu -OK Kat1 -OK Marken --UK Ford --UK Opel --UK VW --UK Porsche --OUK Geländewagen ---UUK Q7 ---UUK Kuga ---UUK Tucson ---UUK Sorento -OK Kat3 -OK Kat4 I have found the solution ! [code=fw:1cr9ng66]<div class="fw" id="{CB}" style="font-family: monospace...
Catering for Different User Screen Resolutions
How does one cater for different screen resolutions? I have designed my screens for 800x600, assuming that it would suite most people, even those with large screens and finer resolutions. Typical data input screens e.g.: Company: XXX Acc no. XXXX Surname: XXXX Firstname: XXXX etc. Some users that run 1024...
Catering for Different User Screen Resolutions
Hi, 1.Modify dialog.prg: add METHOD Autoresize(ntop,nleft) local i,rsl0,rsl1,oCtrol,aRect DEFAULT ntop:=0 DEFAULT nleft:=0 rsl0:=getsysmetrics(0)/800 if rsl0<=1; return ; end //<=800*600, not needed rsl1:=getsysmetrics(1)/600 for i:=1 TO LEN(::acontrols) oCtrol = ::aControls[i] aRect...
Catering for Different User Screen Resolutions
hi, works in windows (mdi) too?? thanks
Catering for Different User Screen Resolutions
Not yet.
Caution: Windows 10 Fall Creators Update
Reported by Alaska: [quote:2sw0a4ed]// Caution: Windows 10 Fall Creators Update Our final tests with Windows 10 Version 1709 (Fall Creators Update) revealed timing issues with the local file system, which may lead to changed application behavior as well as application runtime errors. In fact, all coding patterns w...
Caution: Windows 10 Fall Creators Update
Dear Antonio, I noticed such behaviour with SMB2 as well. I am not sure but I think Directory() gives better result than file. Is this technically possible or are the underlying function the same? Thanks in advance Otto
Caution: Windows 10 Fall Creators Update
Otto, The underlying function is the same: hb_fsFindFirst() (also hb_fsFindNext() on Directory()) [url:1ry58puq]https&#58;//github&#46;com/harbour/core/blob/master/src/rtl/file&#46;c[/url:1ry58puq] [url:1ry58puq]https&#58;//github&#46;com/harbour/core/blob/master/src/rtl/direct&#46;c[/url:1ry58puq] but as Directory(...
Caution: Windows 10 Fall Creators Update
Antonio, Otto Unfortunately .. the Fall Creator has been rolled out to almost everyone in the US .. and as you know, there is no way you can really stop the updates in Windows 10 .. I see many customers walk into the repair shop with the 'spinning wheel of death' 9 out of 10 times due to the Fall Creator update fail...
Caution: Windows 10 Fall Creators Update
I also had problems in this case when I create temporary tables locally. To solve the problem I had to invent a routine. [code=fw:ajp8fb46]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">FUNCTION</span> TAds_TableErase<span style="color: #000000;">&#40;</span>f_nConnection...
Caution: Windows 10 Fall Creators Update
When Satya Nadella took over as CEO, he established the "freedom to create" philosophy and shared it with all Microsoft staff ( in a memo later made public ). It places an emphasis on ideas and creative exploration rather than the stability of products, and their use in the "real world." I expressed my concerns at th...
Caution: Windows 10 Fall Creators Update
<!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( --> Anyway, I didn't notice that problem so far... EMG
Caution: Windows 10 Fall Creators Update
Maybe doing a Sysrefresh() before the File() would be a workaround. If that works, you could create your own file checking routine: [code=fw:1ost20v6]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> xfile<span style="color: #000000;">&#40;</span><span style="colo...
Caution: Windows 10 Fall Creators Update
To All Just my 2 cents worth ( again ) .... sounds like a latency hard disk write problem ... whether it be on a network or a local drive.... unfortunately not everyone can afford a solid state drive .... there is basically zero latency with disk writes and I have a SSD and not seen the problem on my machine. Rick Li...
Caution: Windows 10 Fall Creators Update
James, [quote="James Bott":4ie5kg50]Maybe doing a Sysrefresh() before the File() would be a workaround. If that works, you could create your own file checking routine: [code=fw:4ie5kg50]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> xfile<span style="color: #0...
Caution: Windows 10 Fall Creators Update
Hello, I found this post: <!-- m --><a class="postlink" href="https://support.microsoft.com/en-us/help/4034314/smbv1-is-not-installed-windows-10-and-windows-server-version-1709">https://support.microsoft.com/en-us/hel ... rsion-1709</a><!-- m --> Maybe missing SMB is the problem. Best regards, Otto
Cayetano's BarLib
Original Cayetano's BarLib to create barcodes: <!-- m --><a class="postlink" href="http://hyperupload.com/download/02bd8de195/barlib.zip.html">http://hyperupload.com/download/02bd8de ... b.zip.html</a><!-- m -->
Cayetano's BarLib
Cayetano's BarLib enhanced by Enrico: <!-- m --><a class="postlink" href="http://hyperupload.com/download/029e8f4142/BarLib2.zip.html">http://hyperupload.com/download/029e8f4 ... 2.zip.html</a><!-- m -->
Cayetano's BarLib
Not so enhanced. Only some little bugfixes. EMG
Cayetano's BarLib
EMG or Antonio When I download from Hypersys there is a bug I not can see anything into Barlib2.zip Can you correct the problem ? Best Regards
Cayetano's BarLib
I just tried to download it and it seems ok. Anyway, I'm going to send it to your private mailbox. EMG
Cayetano's BarLib
All, May I know the availability of barlib2? Looks like not found in the download site. Thanks, Jose
Cayetano's BarLib2
All, May I know the availability of barlib2? Looks like not found in the mentioned download site. (<!-- m --><a class="postlink" href="http://hyperupload.com/download/029e8f4142/BarLib2.zip.html">http://hyperupload.com/download/029e8f4 ... 2.zip.html</a><!-- m -->) Thanks, Jose
Cayetano's BarLib2
Barlib2 is a Barlib modified from EMG try to ask to Emg please Not send me any message please
Cayetano's BarLib2
I have no Barlib2. I only made a little fix to Barlib, nothing more. EMG
Cayetano's BarLib2
Jose, Try this link <!-- m --><a class="postlink" href="http://www.esnips.com/doc/1e78c161-35ce-4cb8-acf0-1c918b403853/BarLib">http://www.esnips.com/doc/1e78c161-35ce ... 853/BarLib</a><!-- m --> . I'm not sure whether this is the one you wanted or not
Ccmo puedo mostrar solo el body de email en testpop3
Estimado Colegas Como puedo mostrar el body del email solamente en testpop3 y grabarlo en un txt si alguien me puede orientar desde ya mucha gracias Fabian
Celda editable en Browse
Estimados; En un browse, en el que se puede editar una celda para introducir un valor numérico quisiera: Que detecte el valor pulsado tanto si es desde el teclado horizontal (ya lo probé y funciona), como desde el teclado numérico (cual es codigo inkey) La otra es: como muevo el cursor a la derecha del valor ingresado,...
Celda editable en Browse
Mario... Tienes varias opciones Puedes usar FastEdit, esto hara que el "cursor" se dirija hasta la proxima celda editable, en cambio si no quieres usar el FastEdit puedes usar en en el bOnPostEdit, GoRight(), tienes otra opcion es una modificacion a la clase que te permite ir a la direccion que quieras despues de la ed...
Celda editable en Browse
muchas gracias Daniel; me olvidé de un detalle muuuuy importante uso FWH DIC2007 y wBrowse, si bien es el de Hernán, uso el método lEditcol <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: --> <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="...
Celda transparente
Hola amigos. En xBrowse tenemos la data oBrw:lTransparent := .t., que pinta todo el browse transparente, sobre el dialogo o ventana contenedora. Pregunta: Es posible, basado en una condicion, pintar transparentes determinadas celdas? Me explico: Tenemos un dialog que contiene una imagen como background. Sobre esta i...
Celda transparente
Lo siguiente no hace nada: [code=fw:1cxnehjd]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">//-----------------------------------------------------//</span><br /><span style="color: #00C800;">Function</span> CeldaTransparente<span style="color: #000000;">&#40;</span>oBrw2<span s...
Celda transparente
Otro intento sin resultados deseados: [code=fw:34zdun2g]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">//-----------------------------------------------------//</span><br /><span style="color: #00C800;">Function</span> CeldaTransparente<span style="color: #000000;">&#40;</span>o...
Celda transparente
Parece que encontré la solución: [code=fw:s26pnzls]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">//Celdas sin valor serán transparentes. Para ello, oBrw2:lTransparent := .t., y ClrBck de celda debe ser NIL</span><br /><span style="color: #B900B9;">//---------------------------...
Celda transparente
[quote="FranciscoA":11glm4fy]Parece que encontré la solución: [code=fw:11glm4fy]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">//Celdas sin valor serán transparentes. Para ello, oBrw2:lTransparent := .t., y ClrBck de celda debe ser NIL</span><br /><span style="color: #B900B9;">...
Celda transparente
[quote:27eeafvq]oCol:lTransparent applies to the entire column, not to individual cells[/quote:27eeafvq] Nages. I know it. After so much testing I reached that solution, and it's working for the litle proyect I am making. Despues de muchas pruebas salió esa solución y está funcionando para el pequeño proyecto, hasta...
Celda transparente
He notado que si en la ultima fila hay celda sin valor, pone transparente toda esa columna.
Celda transparente
Aqui dejo el codigo, por si alguien quiere mejorarlo. [code=fw:13igl5r7]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br /><span style="color: #00C800;">static</span> aM, aR, cClr := <span style="color: #f...
Celda transparente
Resultado: [url=https&#58;//imgbb&#46;com/:1dhnb7xu][img:1dhnb7xu]https&#58;//i&#46;ibb&#46;co/cC2vBzD/mesa&#46;png[/img:1dhnb7xu][/url:1dhnb7xu]
Celda transparente
Proyecto finalizado: [url=https&#58;//ibb&#46;co/V96N9wh:3h6aa05n][img:3h6aa05n]https&#58;//i&#46;ibb&#46;co/r09t0dL/ruleta&#46;png[/img:3h6aa05n][/url:3h6aa05n]
Celda transparente
Hola Francisco. Grande Maestro, te pasaste? Te Felicito, se ve súper. Muchos Saludos Antonio.
Celda transparente
Francisco, muy bien, ya sabes que este tipo de "tips" de efectos estéticos me gustan mucho. Tu implementación es muy muy buena ( "nivelazo" ). Como siempre he dicho "Imaginación al poder" Enhorabuena
Celda transparente
Hola Cristóbal. Mi estimado Maestro, gracias por sus comentarios.
Celda transparente
Hola Antonio. Gracias por tu comentario. Estamos a la orden. Saludos.
Celda transparente
[quote="FranciscoA":1yzso767]He notado que si en la ultima fila hay celda sin valor, pone transparente toda esa columna.[/quote:1yzso767] Aqui está la solucion: [code=fw:1yzso767]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"...
Celdas con dos Colores en Tsbrowse es posible ?
Estimado colegasEstoy desarrollando un planning de hotel , es posible ponerle2 colores a una celda GraciasFabian
Celdas con dos Colores en Tsbrowse es posible ?
Fabian,Te refieres a usar un degradado de colores en una celda ?O a que una linea sea de un color y la siguiente de otro ?
Celdas con dos Colores en Tsbrowse es posible ?
AntonioLo que quiero hacer es que la misma celda tenga por ejemplo mitad color rojo mitad color verdeGracias Fabian
Celdas con dos Colores en Tsbrowse es posible ?
[quote="Databaselab2002":74wfkw4o]Lo que quiero hacer es que la misma celda tenga por ejemplo mitad color rojo mitad color verde[/quote:74wfkw4o]Hola Fabián:Cual mitad: Superior/Inferior, Izquierda/Derecha, Recta/Diagonal?Podrías ilustrar aproximadamente tu idea?Saludos.Manuel Mercado
Celdas con dos Colores en Tsbrowse es posible ?
Estimado ManuelComo comente anteriormente , he desarrollado un planning de ocupacion hotelera ,lo que quiero realizar es lo siguiente si un pasajero termina su estadia el 13/9 a las 10hs y a las 11hsingresa otro pasajero tener dos colores en una misma celda ej: 13/9 -------------------------------...
Celdas en blanco con xbrowse
Buenas tardes, Tengo un Browse con varias columnas y quiero que si el valor de la celda es cero que se muestre la celda en blanco. ¿hay alguna forma más elegante de hacer esto? oBrw1:aCols[1]:bStrData := { || if( !empty(oBrw1:aArrayData[oBrw1:nArrayAt,1]),str(oBrw1:aArrayData[oBrw1:nArrayAt,1])," ") } oBrw1:aCols[2]:...
Celdas en blanco con xbrowse
Hola Alvaro... Intentalo de esta forma oBrw1:aCols[i]:bStrData := GenBloque( oBrw, i ) Function GenBloque( oBrw, i ) return { || if( !empty(oBrw1:aRow[ i ]), str(oBrw1:aRow[ i ])," ") }
Celdas en blanco con xbrowse
Muchas gracias. Alvaro
Cell font
Hi, There is an xBrowse from one column. I need the cells in this column to have a different font. How to do it ?
Cell font
Natter: Look [b:4y7cn6ie]FWH\Samples\xbfntclr.prg[/b:4y7cn6ie]
Cell font
Thanks Cgallegoa, but that's not exactly what I need. <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> I need one cell to have one font and the second one another.
Cell font
Creo que es lo que necesitas [url:trurifdb]https&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=6&t=37872&p=226349&hilit=leandro+font+xbrowse&sid=28a1ec26ef7233a68ade4c76928fdab1&sid=7f0fd57a391b1cc18625b3c8cb3b4b7e#p226349[/url:trurifdb]
Cell font
You can assign a codeblock to oCol:oDataFont
Cell font
Leandro, Rao, thank you, this is what I need !
Cells format in Excel 2013 Mr Rao ??
Greetings ... I have a problem creating an Excel file with Office 2013, I have no problem with previous versions, in all previous cases put the following line: oSheet: Cells (NFIL, 6): NumberFormat: = "#, ## 0.00" And I format the cell with "," as thousand separator, with "." as decimal point and 2 decimal digits...
Cells format in Excel 2013 Mr Rao ??
Please try [code=fw:3abptryq]<div class="fw" id="{CB}" style="font-family: monospace;">oSheet: <span style="color: #000000;">Cells</span> <span style="color: #000000;">&#40;</span>NFIL, <span style="color: #000000;">6</span><span style="color: #000000;">&#41;</span>: <span style="color: #000000;">NumberFormat</span>:...
Cells format in Excel 2013 Mr Rao ??
Thank you I check the configuration of the PC, but proves again with your indication. Thank you very much
Cells format in Excel 2013 Mr Rao ??
When I have a question like this. I record a macro, set the format I want, stop macro recording, then edit the macro and check out what Excel thinks it should be.
Cells format in Excel 2013 Mr Rao ??
Buena idea Gale, voy a probar, gracias
Cells on xBrowse
Dear friends of the forum how to display a message or trigger an action to select a cell in XBROWSE with just one click, no double click or right click <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> I have developed a pattern of weekly visits and each visit is, cl...
Cells on xBrowse
Have you tried bLClicked? James
Cells on xBrowse
James, Brief precise and concise! To know which row guided me to the current record, but as I find out which column was clicked? With a right click have the bRClickData in each column. A Greeting from Honduras <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Cells on xBrowse
Try: oBrw:bLClicked:= {| nRow, nCol, nFlags| msgInfo( nCol ) } Regards, James
Cells on xBrowse
[code=fw:r5ocz20x]<div class="fw" id="{CB}" style="font-family: monospace;">oBrw:<span style="color: #000000;">bLClicked</span>:= <span style="color: #000000;">&#123;</span>| nRow, nCol, nFlags| MyFunc<span style="color: #000000;">&#40;</span> nCol <span style="color: #000000;">&#41;</span> <span style="color: #000000;...
Cells on xBrowse
Thanks friends the nCol is the current position based on the current display columns. There will have to make a calculation that pretended to jump, to find the field in the table to see. Thanks for your time, it's bLClicked has been very helpful A Greeting from Honduras <!-- s:D --><img src="{SMILIES_PATH}/icon_bigg...
Cells on xBrowse
Try [code=fw:1afi40jv]<div class="fw" id="{CB}" style="font-family: monospace;">nCol := oBrw:<span style="color: #000000;">ColAtPos</span><span style="color: #000000;">&#40;</span> oBrw:<span style="color: #000000;">nColSel</span> <span style="color: #000000;">&#41;</span>:<span style="color: #000000;">nCreationOrder</...
Cells on xBrowse
what we need to know is on which column of the browse the user clicked. method MouseColPos( nColPixelClicked ) --> nCol clicked oBrw:ColAtPos( oBrw:MouseColPos( nColPixelClicked ) ) --> oCol clicked
Center bitmap
Hello, I have a blank area between menu and message and I need to place a bitmap (logo) in this area. Can someone send me code to place a bitmap centerd in maximized window based on length and width of bitmap and length and width of display? Thank you,
Center bitmap
Darrell, Try the example below. James [code:w2bdfrgv]> #INCLUDE "C&#58;\FW192\INCLUDE\FIVEWIN&#46;CH" > * > STATIC oWnd,nWndWid,nWndHgt > * > FUNCTION Main&#40;&#41; > DEFINE WINDOW oWnd; > FROM 1,2 TO MaxRow&#40;&#41;-3,MaxCol&#40;&#41;-2; > TITLE "BMP Logo Centering" > ACTIVATE WINDOW oWnd...
Center bitmap
Darrell, I found some old code where I did it like this. This code will redraw the bitmap centered whenever the window is resized. James [code:2hffkrsz] ACTIVATE WINDOW ownd maximized ; on paint &#40;PalBmpDraw&#40; oWnd&#58;oWndClient&#58;hDC, &#40;oWnd&#58;nHeight/2-oBmp&#58;nHeight/2&#41;-50,&#40;o...
Center bitmap
Hi James, Thank you very much!
Center caption on ribbon
The code is working but on taskbar only 3 points are shown. Does someone have a better solution? Best regards, Otto [code=fw:2is8uet8]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">function</span> onresize<span style="color: #000000;">&#40;</span>oWnd<span style="color: #0...
Center caption on ribbon
Otto, Have you tried to use tabs (Chr( 9 )) instead of spaces (Chr(32)) ?
Center caption on ribbon
Hello Antonio, TAB does not work on the caption. If I insert TAB the caption remains on the left side. Best regards, Otto
Center caption on ribbon
Otto, Have you tried using Chr( 255 ) ?
Center caption on ribbon
Hello Antonio, chr(255) does not work. Best regards, Otto [img:1gryhcwl]http&#58;//www&#46;atzwanger-software&#46;com/fw/center&#46;jpg[/img:1gryhcwl]
Center say vertically
Perfect. Thank you for your help
Center say vertically
Hello friends. @ 13,95 SAY oSay VAR cMESSAGE SIZE 250,46 OF oDlg oSay:nStyle := nOr( SS_CENTERIMAGE ) Not work ? Thanks
Center say vertically
This works [code=fw:212jk9pu]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; oSay:<span style="color: #000000;">nStyle</span> := nOr<span style="color: #000000;">&#40;</span> oSay:<span style="color: #000000;">nStyle</span>, SS_CENTERIMAGE &nbsp;<span style="color: #000000;">&#41;</span><br />&nbsp;</...
CenterMsgs()
If on start of the app CenterMsgs() are using, then freezes the programm after call a msgrun() with title!
CenterMsgs()
To center msgRun() in a window/dialog, use this syntax" [code=fw:1948ql6e]<div class="fw" id="{CB}" style="font-family: monospace;">MsgRun<span style="color: #000000;">&#40;</span> cCaption, cTitle, bAction, oWndParent <span style="color: #000000;">&#41;</span></div>[/code:1948ql6e]
CenterMsgs()
[quote="byte-one":1hvzioyv]If on start of the app CenterMsgs() are using, then freezes the programm after call a msgrun() with title![/quote:1hvzioyv] Please make the following correction to fwh\source\function\msgrun.prg: Please locate the following lines in the function msgrun(...) lines 25 to 34 [code=fw:1hvzioyv...