topic
stringlengths
1
63
text
stringlengths
1
577k
sharing forms with mod_harbour !!!
Design your forms and share them. Other users modify them (visual inheritance) and share them again... This way forms turns into social self-contained entitites, with full functionality that can be shared and reused: [url:37j632zo]https://harbour.fourtech.es/modharbour_samples/designer.prg?20190825071...
sharing forms with mod_harbour !!!
Really nice and useful. Many compliments Antonio.
shell execute second try
Setting RTF to Wordpad MFC-aplication from configuration shellexecute( oWnd:hwnd,"open",rtf-file,....) has no effect. Resetting RTF extension to microsoft word , and it works !!!! How can we change this behaviour for shellexecute ????? Frank
shell execute second try
Frank, Both of these work for me: SHELLEXECUTE(0,0,"C:\TEST\TEST.RTF",0,0,1 ) SHELLEXECUTE( oWnd:hwnd,"open","C:\TEST\TEST.RTF",0,0,1) Make sure you have RTF files accosiated with WordPad. Jeff
shell.explorer Activex and Keyboard
When I use the shell.explorer activeX to a window, then user cannot use keyboards into forms to change fields. You can see the problem to webexp.prg (into samples) if you try to navigate google.com. Into this page the key "Tab" "doesn't work". Is there any idea how may I try permit the use of keyboard?
shell.explorer Activex and Keyboard
I am encountering the same issue. When jumping to the activeX control (containing a web form login page), I cannot use the Tab key to move from field to field. All other keyboard navigation seems to work fine. Has anybody else experienced this and found a fix? Thanks
shell.explorer Activex and Keyboard
We are aware of this bug but haven`t found a solution yet... <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( -->
shell.explorer Activex and Keyboard
hello. Is there any news on this topic? Regards.
shell.explorer Activex and Keyboard
Not yet. We have tried all ideas that came to mind and searched the web, with no solution yet <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( -->
shellexec or winexec
Hello, I would need an example of how to use shellexec or winexec to run a program in the program's directory. Best regards Otto
shellexec or winexec
Hello, as a workaround I tried with a bat-file. cd\ cd xwinhotel call xwinhotel.exe This is working. Best regards Otto
shellexec or winexec
Is that what you mean ? cPt:=CurDrive()+':\'+CurDir() SHELLEXECUTE( 0, 0, cPt+"\"+MyFile, 0, 0, 1)
shellexec or winexec
function MyRun( cComando, nStyle, lWait, lShowResult ) local oShell, nRetorno IF valtype( nStyle ) != "N" nStyle := 0 ENDIF IF ValType( lWait ) != "L" lWait := .T. ENDIF IF ValType( lShowResult ) != "L" lShowResult := .F. ENDIF oShell := CreateObject( "WScript.Shell" ) IF !GetEnv( "OS" ) == "Windows_NT" cComando ...
shellexec or winexec
To run a second program in the same directory [code=fw:2driqyfg]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><br /><span style="color: #00C800;">FUNCTION</span> Main<span style="color: #000000;">&#40...
shellexec or winexec
Hello, thank you all for your help. I will test all the solutions on the weekend. Best regards Otto
shellexecute
To All I have two different programs that I cut and past a simple shellexecute statement into : Curl := "http://www.yahoo.com" msginfo( Curl ) SHELLEXECUTE(nil,"open", cURL,0,0,1) One program this works and the other different program it does not .. Driving me absolutely nuts .. I have created a 3 line test program...
shellexecute
To All I don't know what happened .. I decided to re-build the application ( old app ) one module at a time and fixing some .rc's and some sloppy code .. and Shellexecute is working just fine .. Go Figure Thanks Rick Lipkin
shellexecute
Running shellexec("exe") from a program in directory #1. To Run an exe in another directory #2. After the exe is closed in directory #2 i need to change a variable in directory #1. How can I find out when the exe is closed in directory #2 from directory #1. Thansk always for the help
shellexecute
Harvey, I don't know the kind of EXE, is running in Directory 2 ( a FWH-application ? ) You can test if any Application is still running with : [color=#0000FF:2r7c9z32]DLL32 FUNCTION GetExiCodP; ( hProcess AS LONG, ; @lpExitCode AS LONG ) ; AS LONG PASCAL; FROM "GetExitCodeProcess" LIB "KERNEL32"[/color:2r7c9z32] ...
shellexecute
Uwe Thanks for the help. Always appreciated.
shellexecute
Hi All. I just want to view a pdf file so I use the command: tuss:=shellexecute(0,"open","c:\concentrics\cloudconnect.pdf",,,1) and it works with windows 7 but with windows 10 nothing happens and it returns 31. Probably its a very complicated answer but I hope not!
shellexecute
Shellexecute(0,0,"c:\concentrics\cloudconnect.pdf",0,0,3)
shellexecute
Beautiful! Thank you so much
shellexecute
Can you also try [code=fw:2l5f5app]<div class="fw" id="{CB}" style="font-family: monospace;"><br />HTMLVIEW<span style="color: #000000;">&#40;</span> <cPdffileWithFullpath> <span style="color: #000000;">&#41;</span><br />&nbsp;</div>[/code:2l5f5app]
shellexecute return code
Hi everybody, I'd like to know the meaning of a 42 return code. W100 64 bits Thanks
shellexecute return code
[quote="ADutheil":1rl16f86]Hi everybody, I'd like to know the meaning of a 42 return code. W100 64 bits Thanks[/quote:1rl16f86] From MSDN: [quote:1rl16f86]If the function succeeds, it returns a value greater than 32.[/quote:1rl16f86] So 42 means "all ok". EMG
shellexecute return code
Thanks.
shift + F5
THAT I CAN CALL A FUNCTION WITH COMBINATION OF KEYS ( shift + F5 ) JOHN
shift + F5
This is a working sample: [code:2elba4da]#include "Fivewin&#46;ch" FUNCTION MAIN&#40;&#41; LOCAL oDlg LOCAL cVar &#58;= SPACE&#40; 30 &#41; SETKEY&#40; VK_F2, &#123; || If&#40; GetKeyState&#40; VK_CONTROL &#41;, MsgInfo&#40; "Hello!" &#41;, &#41; &#125; &#41; SETKEY&#40; VK_F3, &#123; || If&#40; G...
shift + F5
Enrico I A LOT THANK
show a BITMAP ON EXPLORERBAR RESOLVED!!!
I want show a bitmap on EXPLORERBAR NOT ON A SINGLE PANEL [img:m9xif7pa]http&#58;//img228&#46;imageshack&#46;us/img228/1165/errbmp&#46;jpg[/img:m9xif7pa] LOCAL oBrush := TBrush():New("NULL",,,) @ 420, 15 BITMAP oApp:oLogoBmp FILENAME ".\bitmaps\fivetech.BMP" NOBORDER PIXEL OF oApp():oExBar oApp:...
show a BITMAP ON EXPLORERBAR RESOLVED!!!
RESOLVED!!! I made a new method on ExplorerBar Class Now run ok!! thanks to Daniel for the help
show a BITMAP ON EXPLORERBAR RESOLVED!!!
Very nice screenshot <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
show /hide a bitmap on a get
I have this tget control When the cSeek is empty it must not show any button when the user insert any digit it must show the button and the bitmap How resolve it? [code=fw:9on3q3kt]<div class="fw" id="{CB}" style="font-family: monospace;">  <span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"...
show /hide a bitmap on a get
Silvio: Mira si te sirve asi: [code=fw:2h3acvlb]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br />&nbsp;<br /><span style="color: #00C800;">function</span> Main<span style="color: #000000;">&#40;</span><span st...
show /hide a bitmap on a get
thanks LET ME WRITE ONLY ONE cR
show /hide a bitmap on a get
[code=fw:26y26dj6]<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;">function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>  ...
show /hide a bitmap on a get
[quote="Cgallegoa":36ygjsc6][code=fw:36ygjsc6]<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;">function</span> Main<span style="color: #000000;">&#40;</span><span style="col...
show /hide a bitmap on a get
Silvio: [code=fw:1ur660rl]<div class="fw" id="{CB}" style="font-family: monospace;">     @ <span style="color: #000000;">1</span>, <span style="color: #000000;">1</span> <span style="color: #0000ff;">GET</span> oGet <span style="color: #0000ff;">VAR</span> cSeek <span style="color: #0000ff;">SIZE</span> <span style="c...
show /hide a bitmap on a get
[quote="Cgallegoa":3ujcrf2k]Silvio: [code=fw:3ujcrf2k]<div class="fw" id="{CB}" style="font-family: monospace;">     @ <span style="color: #000000;">1</span>, <span style="color: #000000;">1</span> <span style="color: #0000ff;">GET</span> oGet <span style="color: #0000ff;">VAR</span> cSeek <span style="color: #0000ff;...
show BITMAP
When I run this program the error message shown: Message not found TBITMAP:DISPBEGIN stack calls: __ERRRT_SBASE(0) ...... #include "FWCE.ch" function Main() local oWnd DEFINE WINDOW oWnd TITLE "Bmp-Res" * @ 10, 20 BITMAP RESOURCE "users" SIZE 60, 60 && working @ 10, 20 BITMAP filename CURDIR()+"\user...
show BITMAP
Darjo, Please download a new FWPPC we have just published that should fix that problem. Thanks.
show BITMAP
Antonio, thank you for quick answer. I installed new version. Now is better. But now is black border around picture - the shown picture is greater then original ??? regards, Darjo
show BITMAP
Darjo, Fixed. Please download and install FWPPC again <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> Thanks for your feedback,
show DELETED Record in XBROWSE
hi, i want to shsw DELETED Record so i use [code=fw:360zqrob]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp;  SET DELETED OFF<br />   BrowseDBF<span style="color: #000000;">&#40;</span> cPath, cFile, cAlias, cRdd <span style="color: #000000;">&#41;</span><br />   SET DELETED <span style="color: #000...
show DELETED Record in XBROWSE
hi, did nobody have a Solution to "show" DELETED Record in XBROWSE <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
show DELETED Record in XBROWSE
I am just starting my work. Pls wait
show DELETED Record in XBROWSE
[quote:29su1z03] what is Parameter .T. for ?[/quote:29su1z03] Syntax: [code=fw:29su1z03]<div class="fw" id="{CB}" style="font-family: monospace;">oBrw:<span style="color: #000000;">Delete</span><span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#91;</span>lMessage<span style="color: #000000;">&#...
show DELETED Record in XBROWSE
Test Program [code=fw:14uryznk]<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;">"set.ch"</span><br /><br /><span style="color: #00C800...
show DELETED Record in XBROWSE
hi, you Sample work i saw these Line [code=fw:3crkmqnp]<div class="fw" id="{CB}" style="font-family: monospace;">    COLUMNS <span style="color: #ff0000;">"DELETED() AS DELETED"</span>,<span style="color: #ff0000;">"CODE"</span>,<span style="color: #ff0000;">"NAME"</span> ;<br /><br />   :<span style="color: #000000;...
show DELETED Record in XBROWSE
hi, found a Solution for "me" , but not able to make a Sample in my MAIN i have [code=fw:3h5j63m7]<div class="fw" id="{CB}" style="font-family: monospace;">   SET DELETED <span style="color: #0000ff;">ON</span></div>[/code:3h5j63m7] i have try this [code=fw:3h5j63m7]<div class="fw" id="{CB}" style="font-family: monos...
show DELETED Record in XBROWSE
Whatever happens to your end, you should be able to reproduce with a sample. Like whatever we said, we proved with a sample.
show DELETED Record in XBROWSE
Whatever happens to your end, you should be able to reproduce with a sample. Like whatever we said, we proved with a sample.
show DELETED Record in XBROWSE
If you can please clarify my doubt, I am interested in knowing this: In case of Clipper/Harbour, SET DELETED OFF/ON is a Global (application wide) setting, whereas in case of Dbase/FoxPro, this setting is a workarea wise setting. That means, in this code: [code=fw:18qhe15i]<div class="fw" id="{CB}" style="font-family...
show DELETED Record in XBROWSE
hi, Xbase++ SET DELETED OFF/ON are Global (application wide) setting, even in Thread which have a other "Workspacelist" i can send you hole Project as i´mm not able (yet) to build a Sample which same Effect. it doesn´t matter in "this" Project as DUALGRID but for other Project i have to find out what is going on
show DELETED Record in XBROWSE
Yes, please. Though I am not sure if can understand.
show a bitmap
I want show a bitmap on xbrowse I make a simply dbf with this structure cod c 4 bitmap c 60 on firstrecord there is cod bitmap 1 .\bitmaps\test1.bmp Can I show this dbf on a xbrowse showing the bitmap ?
show a bitmap
Hello Silvio, The Bitmap-Preview and Edit : [img:205l737e]http&#58;//www&#46;pflegeplus&#46;com/pictures/bmpedit1&#46;jpg[/img:205l737e] [code=fw:205l737e]<div class="fw" id="{CB}" style="font-family: monospace;"><br />DBSELECTAREA<span style="color: #000000;">&#40;</span> <span style="color: #000000;">1</span> <spa...
show a bitmap
thanks a lot!
show a bitmap
Silvio, a mistake in writing, for changing a BMP : Must be the Filename and not the BMP-Field [color=#FF0000:m3ifqu5i]oCol:bStrImage [/color:m3ifqu5i]:= {|oCol, oLbx70| [color=#FF0000:m3ifqu5i]ALLTRIM((1)->FILE)[/color:m3ifqu5i] } Best Regards Uwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" ti...
show a bitmap
this afternoon I try it thanks
show a btnbmp pressed on buttonbar
Dear Silvio, mira C:\FWH..\SAMPLES\TESTSK1.PRG si ayuda. Regards, saludos.
show a btnbmp pressed on buttonbar
Estimado Silvio, única forma en que logré hacerlo funcionar. Dear Silvio, only way I managed to make it work. [code=fw:93ly2ivb]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// C:\FWH..\SAMPLES\GRADSIL.PRG</span><br /><br /><span style="color: #00D7D7;">#include</span> ...
show a btnbmp pressed on buttonbar
[img:boljvyt3]https&#58;//i&#46;postimg&#46;cc/JnnLBckL/buttonbar&#46;png[/img:boljvyt3] On a buttonbar (2015) I have these btnbmps and I would like that when I press a button it stays pressed to simulate the select option , so I made DEFINE BUTTON oSelf:oPlus FILENAME ".\bitmaps\plus.bmp" OF ::oBar ; ...
show a btnbmp pressed on buttonbar
Dear Silvio, Maybe replacing the bitmap with another with different color ?
show a btnbmp pressed on buttonbar
[quote="Antonio Linares":3w430go3]Dear Silvio, Maybe replacing the bitmap with another with different color ?[/quote:3w430go3] I did not think about it but otherwise in the ribbonbar it does it automatically if you use lselected as you can see here [img:3w430go3]https&#58;//i&#46;postimg&#46;cc/wv9F0g55/ribbonbar&...
show a btnbmp pressed on buttonbar
I tried DEFINE BUTTON oSelf:oPlus FILENAME ".\bitmaps\plus.bmp" OF ::oBar ; TOOLTIP "plus numbers" ; ACTION (oSelf:oPlus:lPressed:=!oSelf:oPlus:lPressed,; oSelf:oPlus:setcolor( CLR_BLUE, If( oSelf:oPlus:lPressed == .t., CLR_RED, CLR_BLUE )) ,; oSelf:oPlus:refresh() but n...
show a btnbmp pressed on buttonbar
No I made DEFINE BUTTON oSelf:oPlus FILENAME ".\bitmaps\plus.bmp" OF ::oBar ; TOOLTIP "plus numbers" ; ACTION (ChangePressedBtn(oSelf:oPlus)) [code=fw:3iu79soi]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">Function</span> ChangePressedBtn<span style="...
show a btnbmp pressed on buttonbar
Please try this test [code=fw:rculzpbd]<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;">Function</span> test<span style="color: #000000;">&#40;</span><span style="color: #0...
show a btnbmp pressed on buttonbar
I have a different thing. the two btnbmp are active through a logical variable lnumber, if it is active, oPlus must be activated, if it is negative, oNumber must be activated. Instead oCancel deselects both buttons and lnumber: = nil I just solved it like this [code=fw:35vof6kv]<div class="fw" id="{CB}" style="font-f...
show a btnbmp pressed on buttonbar
Very good Silvio. Congratulations. Funciona mui bien. [code=fw:2jwpnyq4]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// C:\FWH..\SAMPLES\GRADSIL2.PRG</span><br /><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><...
show a calendar
Can I can make to show a calendar for only one month ? the user must not select another month only that I passed !!! and the use must Pick a date for that month sample september from 1 to 30
show a message then created a dialog and not before
I have a dialog at init go to add a array aItems I need on xbrowse from a function calcolo() if I make a check calcolo function have some message boxes I wish before create the dialog with all object and then the calcolo function can show the messages my problem is the message is showed before to create the dial...
show a message then created a dialog and not before
Silvio, just change to : ..... ..... [color=#0000FF:3vz3u1wb]oDlg:bPainted := {||Calcolo(@aItems) }[/color:3vz3u1wb] ACTIVATE DIALOG oDlg CENTERED; ON INIT ( oPanelGreen := PanelGreen(oFolder),; EVAL( oDlg:bResized)) regards Uwe <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif"...
show a message then created a dialog and not before
each time I resize it come the message ...no good
show a message then created a dialog and not before
Silvio, You can use a var that will show the message only at once. [color=#0000FF:1pfimoaw]lMessage := .F. oDlg:bPainted := {|| IIF( lMessage = .F., ( Calcolo(@aItems), lMessage := .T.), NIL ) }[/color:1pfimoaw] regards Uwe <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!--...
show a message then created a dialog and not before
goods <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> it an good idea
show a message then created a dialog and not before
oDlg:[b:feawwdws]bStart[/b:feawwdws] := {||Calcolo(@aItems) }
show a string into xbrowse
I have a field numeric and I wish show the string + "gg" :bEditValue :={ || str(oBrw:aArrayData[ oBrw:nArrayAt,1])+"gg" } why not run ?
show a string into xbrowse
Simpler way is: [code=fw:1rbl2xve]<div class="fw" id="{CB}" style="font-family: monospace;">oCol:<span style="color: #000000;">cEditPicture</span> := <span style="color: #ff0000;">"###gg"</span></div>[/code:1rbl2xve]
show a string into xbrowse
[quote="nageswaragunupudi":3mt5lv3t]Simpler way is: [code=fw:3mt5lv3t]<div class="fw" id="{CB}" style="font-family: monospace;">oCol:<span style="color: #000000;">cEditPicture</span> := <span style="color: #ff0000;">"###gg"</span></div>[/code:3mt5lv3t][/quote:3mt5lv3t] run only the last element [img:3mt5lv3t]https&#...
show a string into xbrowse
[quote:mnyfuqhx]I have a field numeric and I wish show the string + "gg"[/quote:mnyfuqhx] Your question was to display "numeric" values with suffix "gg". The suggestion of oCol:cEditPicture := "###gg" works for numeric values but not character values In your code: [code=fw:mnyfuqhx]<div class="fw" id="{CB}" style="fo...
show a string into xbrowse
thanks
show bitmap on window/dialog
A possible Solution : 1. You start with a defined Archive on the right hand side. 2. Define the Area for Painting ( use Gradient-Fill for Borders ) [img:wqkj0ros]http&#58;//www&#46;pflegeplus&#46;com/pictures/planner1&#46;jpg[/img:wqkj0ros] 3. You move as many Objects You like from the Archive to a defined Position 4...
show bitmap on window/dialog
I must show many tables for a restaurant 1. I need each bitmaps transparent 2. each bitmap must be move on the winow from user ( design) to create a configuration of rooms with all tables 3. each bitmap must change image if the user change sample green = free red = no free .... as tsbutton made I try...
show bitmaps on Header and columns with Xbrowse
To create a column in xbrowse I use this line oCol:= oApp():oGrid:AddCol() oCol:AddResource("sort1") oCol:AddResource("sort2") oCol:AddResource("GRADO...
show bitmaps on Header and columns with Xbrowse
[b:3rhh0g7l]for change bitmap on header use...[/b:3rhh0g7l] DATA nHeadBmpNo // header ordinal bitmap to use of ::aBitmaps [b:3rhh0g7l]for change bitmap on cell use...[/b:3rhh0g7l] bBmpData // Ordinal bitmap data codeblock (returns a number in the range 1-len(aBitmaps)) use original fivewin bitmap, from fold...
show bitmaps on Header and columns with Xbrowse
your sample run ok but I must correction this sources oCol:= oApp():oGrid:AddCol() oCol:AddResource("sort1") oCol:AddResource("sort2") oCol:nHeadBmpNo ...
show image !
My friends what work images: Como trabalhar com imagens assim: <!-- m --><a class="postlink" href="http://img405.imageshack.us/img405/1643/restaurantenw4.jpg">http://img405.imageshack.us/img405/1643 ... ntenw4.jpg</a><!-- m -->
show image !
Aoki, If you want the bitmaps to cover all the area, then use TBitmap controls
show line number in memo edit
hi, i need show line and columm with an memoedit, i already make this in format get, but in memo normal i dont know, someone can help me?
show line number in memo edit
[quote="Nop":1mkq5jby]hi, i need show line and columm with an memoedit, i already make this in format get, but in memo normal i dont know, someone can help me?[/quote:1mkq5jby] Try [code:1mkq5jby]oGet&#58;GetRow&#40;&#41; oGet&#58;GetCol&#40;&#41;[/code:1mkq5jby] EMG
show line number in memo edit
Enrico, thanks, in format use i use: oFGet:bLocate := {| nRow, nCol | oMsgItem:SetText( "Lin: " + Str( nRow, 4 ) + " " + "Col: " + Str( nCol, 4 ) ) } this is can adapted to memo get? thanks
show line number in memo edit
[quote="Nop":3bds9fbq]Enrico, thanks, in format use i use: oFGet:bLocate := {| nRow, nCol | oMsgItem:SetText( "Lin: " + Str( nRow, 4 ) + " " + "Col: " + Str( nCol, 4 ) ) } this is can adapted to memo get? thanks[/quote:3bds9fbq] What is locate event? EMG
show line number in memo edit
i dont know, i see in a sample of format get, i need an way to show line , and columm when user movimente the cursor in memo. like an notepad. thanks again
show line number in memo edit
or maybe, use richedit in memofields, this is possible? i need like an notepad im memo files, showing the line and columm of cursor. thanks
show line number in memo edit
This is a sample but it is not working properly. Antonio? [code:3gn31o09]#include "Fivewin&#46;ch" FUNCTION MAIN&#40;&#41; LOCAL oDlg LOCAL oGet, cVar &#58;= "This is a test" LOCAL oRow, oCol DEFINE DIALOG oDlg; SIZE 400, 400 @ 0, 0 GET oGet VAR cVar MEMO; SIZE 100, 100...
show line number in memo edit
Enrico, this is my problem... dont work...
show line number in memo edit
[quote="Nop":814otftl]Enrico, this is my problem... dont work...[/quote:814otftl] Did you try my sample? It works... almost. <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> EMG
show only some records on Xbrowse ( nRecords year)
I made a small test to try I wish show only nrecord and only the year = nyear selected by user [code=fw:82104gr5]<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 />REQUEST DBFCDX<br /><br /><...