topic
stringlengths
1
63
text
stringlengths
1
577k
Clipboard size
My guess is that there is probably a 32-bit parameter somewhere in the mix that indicates the size of the text buffer to be copied to the Clipboard, but the parameter is being truncated to 16-bits at some point by some old 16-bit code.
Clipboard size
Patrick,We have been googling for clipboard size (limit) and it seems as there is such limitation <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( -->
Clipboard size
Patrick,[quote:2jeq1r0j]The particular feature I am implementing copies delimited email addresses to the Clipboard so that they may be pasted in the TO: or BCC: block of an email message using whatever email software our customer prefers to use. There may be a better way of allowing our customers to do a mass email to ...
Clipboard size
Thanks James, I will take a look at the FWH Samples ProxOut.prg and TestSmtp.prg (and TestMail.prg for the MAPI) to see if they offer the functionality our customers need for this particular feature.Antonio - If there is indeed a limit of 20k on the ClipBoard in Win32, why am I able to copy many megabytes worth of text...
Clipboard size
Patrick,I should mention that if your users need to compose a message, then perhaps MAPI is your best solution. You can send the TO or BC list to the MAPI client and bring up the message edit screen so they can then type in their message.If you are sending a pre-written message then SMTP is probably the best way. One b...
Clipboard size
Patrick,You are totally right. It was a bug in our code (from 16 bits times) <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->Now it is working fine. These are the required changes in FWH\source\clpbrd.c function SETCLIPBOARDDATA():[code:wvyea59j] &#46;&#46;&#46; ULONG ...
Clipboard size
Thanks James!!! Thanks Antonio!!!-Patrick
Clipboard to jpg file
José, please have a look at sample < [color=#0000FF:2zkg0tsb]testimg.prg [/color:2zkg0tsb]> regards Uwe <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Clipboard to jpg file
[quote="jose_murugosa":3n0bi3fl]I'd like to save a image in clipboard to a jpg file, Could somebody help me? Thanks in advance. Quiero grabar una imagen en el portapapeles a un archivo jpg, alguien me podría ayudar en cuanto a como hacerlo? Gracias desde ya.[/quote:3n0bi3fl] [code=fw:3n0bi3fl]<div class="fw" id="{C...
Clipboard to jpg file
[quote:3l4zxlzf]This formun is excelent[/quote:3l4zxlzf] It is FWH that is excellent!!!
Clipboard to jpg file
Thank you Uwe and Mr. Rao, It worked perfect!! This formun is excelent, people in it are.
Clipboard to jpg file
[quote="nageswaragunupudi":1hjhbe95][quote:1hjhbe95]This formun is excelent[/quote:1hjhbe95] It is FWH that is excellent!!![/quote:1hjhbe95] That's wright Mr. Rao!!
Clipboard to jpg file
I'd like to save a image in clipboard to a jpg file, Could somebody help me? Thanks in advance. Quiero grabar una imagen en el portapapeles a un archivo jpg, alguien me podría ayudar en cuanto a como hacerlo? Gracias desde ya.
Clipboard without a window
Hi to all. I'm trying to call a prg already working into a small exe that will be called from modharbour. This prg reads a lot of informations in several tables and the write this strings inside an excel file, using the clipboard for pasting the datas. The problem is that if I don't have a window or a dialog I cannot u...
Clipboard without a window
Massimo, Please check that you have this code in Class TClipboard METHOD Open() INLINE OpenClipboard( If( ::oWnd == nil, GetDeskTopWindow(), ::oWnd:hWnd ) )
Clipboard without a window
Hi Antonio, no, in my TClipboard Class I have this code : METHOD Open() INLINE OpenClipboard( ::oWnd:hWnd ) Now I make the change and rebuild the exe again. I'll be back to give you the new result. Thanks a lot. Massimo
Clipboard without a window
Here I am Antonio. That was the problem and with your hint is resolved. The program now works like a Concorde. Thank you very very very much. Massimo
Clipper + Windows
Estimados. Tengo un amigo que lleva aaaaaaaaaaaaaaaaaaaaaaaños programando en Clipper 5.2a ( aun no lo puedo pasar al lado oscuro - HARBOUR - por lo menos ) Si bien es cierto sus sistemas estan muy bien hechos, funcionan en todos los WIN 32 bits, quisiera darle a lo menos una mano con una lib, que dejaba los prg clipp...
Clipper + Windows
¿ No será light lib (LL GRAPHICS) ?
Clipper + Windows
los programas de clipper viejo se pueden compilar directamente en harbour y quedan tal cual en 32 bits, para que ponerse a inventar la rueda
Clipper + Windows
Qazwsx2k Lo tengo mas que claro.... pero como el no quiere..... pense que a lo mejor con solo la lib de algo le podria ayudar. Eso.
Clipper + Windows
Adolfo, Hay un terminal de consola (a efectos prácticos es una libreria) que simula un modo semi GUI sin tener que modificar nada. Su nombre es GTWVT y fué desarrollado por Pritpal Bedi. Nunca lo he probado asi que de poca ayuda te puedo ser aparte de contarte esto <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif"...
Clipper 5.2e + COMIX application & FWH
I have few old applications made in clipper 5.2e + comix. Is this safe to run at the same moment FWH application (xHarbour) on the same dbf and cdx files.? I use: SET DBFLOCKSCHEME TO 2 What can I do to prevent dbf or cdx files damage? Is this possible to use both of systems in one time? Robert
Clipper 5.2e + COMIX application & FWH
In theory, it's possible to do this without damaging the files. However, I don't have any DOS clipper 5.2e apps currently coexisting with xHarbour apps using the same files. Thus I can't tell you "yes" for certain. I suggest that you create a set of test files and then access them with a simple test app that has ver...
Clipper 5.2e + COMIX application & FWH
Robert, i use a mixed system of Clipper 5.2e programs ( comix and dbfntx files ) together with xHarbour's dnfntx and dbfcdx. I also set SET DBFLOCKSCHEME TO 2 But for my Clipper apps i added "FI NTXLOCK2" to my link script. Without i had some troubles with error dbfntx 1012 index corruption. But now it's working o...
Clipper 5.2e and OS_ISWTSCLIENT() ??
Hi, I use OS_ISWTSClient() function to Check if the application is running on a Windows Terminal Server client in my application that compiled in xHarbour Builder+FWH. But I need it in my 16 bit application. Is it possible? Is there any function to check it? Thanks,
Clipper 5.2e and OS_ISWTSCLIENT() ??
Hakan, You may use: #define SM_REMOTESESSION 4096 MsgInfo( GetSysMetrics( SM_REMOTESESSION ) )
Clipper 5.2e and OS_ISWTSCLIENT() ??
Thanks Antonio, My 16 bit DOS app. does not use fwh. Can I extract this function from it? Is GetSysMetrics() from Fwh.
Clipper 5.2e and OS_ISWTSCLIENT() ??
Hakan, GetSysMetrics() is a shortname for the Windows API function GetSystemMetrics(). It won't work from a MsDos 16 bis app.
Clipper 5.2e and OS_ISWTSCLIENT() ??
Hakan, Maybe this may help you: getenv("CLIENTNAME") getenv("SESSIONNAME") <!-- m --><a class="postlink" href="http://www.pctoledo.com.br/forum/viewtopic.php?f=4&t=6225">http://www.pctoledo.com.br/forum/viewto ... f=4&t=6225</a><!-- m -->
Clipper 5.2e and OS_ISWTSCLIENT() ??
Thanks Antonio, I already check CLIENTNAME and SESSIONNAME. But some VISTA computers behaves different. Can anybody translate it to English. [code=fw:1q2xd5lz]<div class="fw" id="{CB}" style="font-family: monospace;">A getenv<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"CLIENTNAME"</span><...
Clipper 5.2e and OS_ISWTSCLIENT() ??
Hakan, Google translator produces this: [quote:1zdcj5ma] The getenv ( "clientname") in terminal service returns the name of the machine, beauty, I help ... But on the local network returns "console", since the getenv ( "SESSIONNAME"), returns on the local network I also "console" in the terminal service, returns: RDP...
Clipper 5.3 CHM file available
I do not know if this is legal or not, but since Clipper is not commercialized since 94 and that the Norton Guides are for DOS (pre Windows 95), I took the NG, converted then to HTML files, and then compiled everything to a CHM file which is available on demand for everyone who asks for it (1.5Mb) If someone offers a F...
Clipper 5.3 CHM file available
Emiliano, I've seen WebSites with this kind of information, and I don't think it is ilegal since you are not making any profit from it. I can post it in my website if you like. My e-mail address is in my website.
Clipper 5.3 CHM file available
You can send it to "soporte at PuntoTactil.com"
Clipper 5.3 CHM file available
Clipper docs are available from here: <!-- m --><a class="postlink" href="http://www.ousob.com/ng/53guide/">http://www.ousob.com/ng/53guide/</a><!-- m --> Clipper error codes (compatible with Harbour/xHarbour): <!-- m --><a class="postlink" href="http://www.ousob.com/ng/53error/">http://www.ousob.com/ng/53error/</a><!...
Clipper 5.3 CHM file available
No email add. to contact! Could you please post baack the FTP link on this thread? Thanks!
Clipper 5.3 CHM file available
Thanks Antonio, But this form of file may be usefull for users that have to pay for internet by the hour, since it will be OffLine... I know that is the deal in Guatemala at least...
Clipper 5.3 CHM file available
The Link is: <!-- m --><a class="postlink" href="http://www.MayaPOS.com/FiveWin/Clipper.chm">http://www.MayaPOS.com/FiveWin/Clipper.chm</a><!-- m -->
Clipper 5.3 CHM file available
+traffic saturating our lines for a simple thing that we can do locally
Clipper 5.3 CHM file available
Emiliano, It seems to be a error in the file, maybe some missing files?? [img:1gtzl11c]http&#58;//www&#46;MayaPOS&#46;com/FiveWin/clippererror&#46;png[/img:1gtzl11c]
Clipper 5.3 CHM file available
right click on the file's properties and 'Unblock' the file so that the security block is bypassed
Clipper 5.3Fivewinharbour www online NG (HelpManual)
<!-- m --><a class="postlink" href="http://www.itlnet.net/programming/program/Reference/c53g01c/menu.html">http://www.itlnet.net/programming/progr ... /menu.html</a><!-- m --><!-- m --><a class="postlink" href="http://www.ousob.com/norton.php">http://www.ousob.com/norton.php</a><!-- m -->
Clipper 5.3b exe
Hi All I reinstalled my clipper 5.3a ... and applied the 5.3b US patch , but the clipper.exe doesn't seem take the patch .. all other files do. This has come about because I'm now getting a memory low error and I'm trying to get rid of it. Apparently, clipper.exe for 5.3b with the updates to the errsysw.prg gets rid...
Clipper 5.3b exe
Hello, Put the files provided with the Clipper 5.3b patch in the root directory of clipper (by default \CLIP53), then load PATCH.EXE. This is the way for the 5.3b international version. Files to copy into Clipper 5.3 root directory : 53A_BI.RTP PATCH.EXE CLIP53BI.TXT Regards,
Clipper Code under FiveWin ?
hi, i try to compile Clipper Source with FiveWin, is this possible <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> now it run until @ 8,0 SAY [code=fw:1sa6xx9y]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #000000;">3972</span> nMi...
Clipper Code under FiveWin ?
you cannot use clipper command on fw
Clipper Code under FiveWin ?
change to : LOCAL oSay // on top @ 8, 0 SAY [b:2ww56eby]oSay PROMPT [/b:2ww56eby] '?' regards Uwe <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Clipper Code under FiveWin ?
Hello, Use samples/build test.prg to create a DOS .exe app.
Clipper Code under FiveWin ?
hi [quote="MOISES":3kme3g2v]Use samples/build test.prg to create a DOS .exe app.[/quote:3kme3g2v] thx for help but i got a Error when try it [quote:3kme3g2v]Error: Unresolved external '_HB_FUN_MSGINFO' referenced from C:\FWH\SAMPLES\TEST.OBJ Error: Unable to perform link[/quote:3kme3g2v]
Clipper Code under FiveWin ?
[quote="ukoenig":14npxb2d]change to : LOCAL oSay // on top @ 8, 0 SAY [b:14npxb2d]oSay PROMPT [/b:14npxb2d] '?' [/quote:14npxb2d] ooooh ... that will be much work to change all lines ... is there a Way to use #xtranslate to get that Syntax <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Qu...
Clipper Code under FiveWin ?
Please instead of test use your prg
Clipper Code under FiveWin ?
Clipper programs can not be directly compiled and built with FWH directly without any changes. We need to use Windows/Dialogs and use FWH syntax which is similar to clipper syntax but not exactly the same. Recently we tried in a limited way how far we can make old Clippper syntax work. Test this example: [code=fw:8siu...
Clipper Code under FiveWin ?
Now, let us try the code posted first: With minor modifications: 1) Added translate for DISPBOX 2) Changed CLEAR SCREEN as CLEAR //SCREEN .. commented out SCREEN 3) Text of say is made a long text [code=fw:1iu7s420]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</spa...
Clipper Code under FiveWin ?
hi, thx for help. i agree that Clipper Code is very old but it still work for me with my Xbase++ Code. i have made a GUI Version in Xbase++ and harbour/HMG but not with FiveWin yet. i tought Fivewin can use Clipper Code as "Console" that why i try it and got that Message. i will learn how GUI under FiveWin work. it ...
Clipper Code under FiveWin ?
hi, [quote="MOISES":3l1se2cm]Please instead of test use your prg[/quote:3l1se2cm] i will do it when i finish FiveWin Version. GUI Part now is for harbour / HMG so it will not work under FiveWin and Console Mode was just a try
Clipper Code under FiveWin ?
[quote="Jimmy":3u3hsjnv] i agree that Clipper Code is very old but it still work for me with my Xbase++ Code. i have made a GUI Version in Xbase++ and harbour/HMG but not with FiveWin yet. i tought Fivewin can use Clipper Code as "Console" that why i try it and got that Message. i will learn how GUI under FiveWin wor...
Clipper Code under FiveWin ?
hi, [quote="hua":gpg5zaru]If you want to build console program, you just need to compile and link with [x]Harbour. You link in FWH only if you want windows GUI. Try googling GTWVT or GTWVG for more info. I didn't experiment much with windows console program[/quote:gpg5zaru] thx for Answer. my working harbour HMG Versi...
Clipper Code under FiveWin ?
Dear Jimmy, Could you please post some screenshots of your app using GTWVT ? Does it look nice ? Is the output speed the only problem ? many thanks
Clipper Code under FiveWin ?
hi Antonio, [quote="Antonio Linares":27for19j]Could you please post some screenshots of your app using GTWVT ? Does it look nice ? Is the output speed the only problem ?[/quote:27for19j] i have not made a Snapshot from GTWVT Version but it look exact like my Xbase++ Console [img:27for19j]http&#58;//www&#46;hmgforum&#46...
Clipper Tools (CT3.LIB)
Hello to all of my friends in FiveWin/xHb A couple of days ago, I purchased a new Win 7 (64-bit) laptop. I installed everything, and re-build everything, except for one program that is using the file CT3.LIB, and at that point, I had a problem <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" t...
Clipper Tools (CT3.LIB)
Please do remember that 16bit applications will not run under Windows 7 (64 bit version). Regards Anser
Clipper Tools (CT3.LIB)
Mr Anser What Mr. Bartzokas wants is ct.lib compiled and built for 64-bits. If he needs 32 bit version, he can download from either xharbour.org or free.xharbour.com.
Clipper Tools (CT3.LIB)
That is correct my friends... I need CT.LIB for 64 bits. (CT3.LIB worked fined for 32 bits in Windows XP - Problems are with Windows 7 -> CT.LIB which I don't have of course) Thanks for your attempts... Expecting that someone will send it to me, or post somewhere that I can download with a relative link.
Clipper Tools (CT3.LIB)
If you are developing 32 bit applications on your 64-bit Windows 7 PC, you can use 32bit libraries (including ct.lib) downloaded from xharbour.org or free.xharbour.com. If you want to develop 64-bit applications then you need to download the sources and build your own libraries. ct3.lib is a 16 bit library to be link...
Clipper Tools (CT3.LIB)
Thanks for the advise, however, I was unable to get to the right link. Can you please send me the link? Thank you in advance! Evans
Clipper and FiveWin article
Today's article about Clipper and FiveWin: Artículo de hoy relativo a Clipper y FiveWin: [url:1yt1gxoh]http&#58;//bitactual&#46;es/2016/07/27/nantucket-clipper-summer87/[/url:1yt1gxoh]
Clipper and FiveWin article
Gracias Master Buen articulo
Clipper and FiveWin article
Esta bien la revista, pero el artículo 'olvida' la evolución de Clipper a Harbour, dando un aire algo obsoleto al lenguaje Clipper y dejando una imagen de Fivewin de que sólo sirve para traspasar viejas aplicaciones a Windows, cuando no es cierto, ya que todos sabemos que a nivel GUI puede competir con cualquiera de la...
Clipper and FiveWin article
Holas, si faltaba algo, aquí esta Antonio con algo de explicación [url:2u6iawmz]http&#58;//bitactual&#46;es/2016/07/28/antonio-linares-creador-de-fivewin-y-harbour/[/url:2u6iawmz] Gracias Antonio Saludos Marcelo
Clipper and FiveWin article
Muy, muy bueno. Magnífica entrevista y super refrescante foto. Dice Antonio que desde entonces 20 años... y nosotros decimos: "Antonio mil veces gracias, porque gracias a ti, a aquella sombrilla programming book muchos llevamos también otros 20 años en el lio"
Clipper and FiveWin article
Buena oportunidad para agradecerte Antonio por todo lo que has dado a nuestro pequeño pero muy productivo mundo de programacion en mi caso solo se programar en Harbour no manejo nada mas, pero he logrado dar una vida decente a mi familia Muchas gracias gran Maestro, si llegas a venir a Ecuador sera un honor tenerte en ...
Clipper and Harbour books
Hi, I am searching for advance Clipper and Harbour books, where arrays and codeblocks are explained. Thanks <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Clipper and Harbour books
Hello, for Harbour I think there are not books, but a really good Clipper's book is one writed by Rick Spence regards Marcelo
Clipper and Harbour books
There is an article on codeblocks here: [url:jktviadv]http&#58;//www&#46;leylan&#46;com/app&#46;asp?pg=blocks[/url:jktviadv] Regards, James
Clipper and Harbour books
I highly recommend the book, Clipper 5.2 (or 5.3) - A Developer's Guide by Joseph D. Booth, Greg Lief and Craig Yellick
Clipper appl with faster processor fails
Dear Friends, Some years ago Clipper apps failed with newer faster processors. At that time a solution became available that solved the problem. I beleive a kind of WAIT programme. That was implemented in the Clipper programs and the problem was gone. My question is, do we have a similar problem today and if so is t...
Clipper appl with faster processor fails
Hello! Some suggestions: 1. Disable DEP: <!-- m --><a class="postlink" href="http://www.sysinternals.com/Information/bootini.html">http://www.sysinternals.com/Information/bootini.html</a><!-- m --> (Use /execute instead of /noexecute=OPTIN) 2. Disable hyper-threading in BIOS 3. If CPU has two cores, this might me he...
Clipper appl with faster processor fails
Thanks Roman, Very interesting but I did not see a problem related to a Clipper app. Since Antonio is not responding I think that Clipper does not have this problem. Questions: What is NTDVM and DEP Jules de Pierre
Clipper appl with faster processor fails
NTVDM is the Windows NT Virtual Dos Machine, a program that allows 16 bit apps to run under Windows NT-2000-XP. EMG
Clipper appl with faster processor fails
2 steps to avoid runtime error for Clipper exe in high performance processor pc : - link this obj : <!-- m --><a class="postlink" href="http://hyperupload.com/download/022a123e17/_wait_b.obj.html">http://hyperupload.com/download/022a123 ... b.obj.html</a><!-- m --> - upgrade to Blinker v7.0
Clipper appl with faster processor fails
Hello! <!-- m --><a class="postlink" href="http://h10025.www1.hp.com/ewfrf/wc/genericDocument?lc=pt&cc=br&dlc=pt&docname=c00223284">http://h10025.www1.hp.com/ewfrf/wc/gene ... =c00223284</a><!-- m --> [quote:1j0iter2]The Data Execution Prevention (DEP) feature in the Windows operating system is designed to help preven...
Clipper appl with faster processor fails
Dear Roman, It are new PC's with WIN XP PRO Inclusive SP2 I do not have the processor specs yet. But it are new computers. Dear Who, I included _Wair_B already in 1996. I think I come to the conclusion that the problems my customer has is not because of Clipper apps. I heard that they had frequently Corruption Error...
Clipper appl with faster processor fails
Jules! We have a DOS Clipper app running in Windows XP SP2 on several PC-s with Pentium 6xx CPU-s without problems. They are linked with Blinker (extended mode). Which version of Clipper is used in your case? What linker? Are DBF-s located on server or on local disk? If your Clipper app directly access hardware (lik...
Clipper appl with faster processor fails
Jules, We use just one Clipper app in msdos and works ok on XP <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
Clipper appl with faster processor fails
Go through the OPTEDIT.EXE commands and try to link your applicaiton with protected mode linker EXOSPACE. We have several applications compiled with Clipper 5.3b and linked with EXOSPACE and subsequently using OPTEDIT.EXE commands to change the behaviour of the Executable to suit to your requirements. They are al...
Clipper appl with faster processor fails
Dear collegues, Thanks for your cooperation. I am convinced now that my customer has no Ckipper XP PRO problem. I used Blinker and Clipper 5.3b Databases are on the server. Files and Buffers are OK. So I advised my customer to look at his installation of XP PRO workstations in a Windows 2000 server environment. There...
Clipper appl with faster processor fails
Hello! [quote="Jules de Pierre":2ty2lxsk] So I advised my customer to look at his installation of XP PRO workstations in a Windows 2000 server environment. There is a rumour that that is the problem. [/quote:2ty2lxsk] In our case DBF-s are on Netware 4.2 server, which is more Clipper friendly. Anyhow, when dealing wi...
Clipper appl with faster processor fails
[quote="Jules de Pierre":3w1p61gp]Dear Friends, Some years ago Clipper apps failed with newer faster processors. At that time a solution became available that solved the problem. I beleive a kind of WAIT programme. That was implemented in the Clipper programs and the problem was gone. My question is, do we have a si...
Clipper code recover
Hi, I need a clipper code recover Clipper 5.2 and blinker 4.10 Many thanks marco
Clipper code recover
Hi, I need a clipper code recover Clipper 5.2 and blinker 4.10 Many thanks marco
Clipper code recover
Search "clipper valkyrie" on google
Clipper code recover
Marco v5demo.exe does not work! Clipper 5.2 Blinker 4.10 Unrecognized linker code. Unable to continue processing. Press any key to continue.
Clipper code recover
Hi marco, As far I know, .EXE files linked with blinker cannot be recovered. If you have the .OBJ files, you can link them with MS Link an use the Valkyrie. Here in Brazil, some time ago, I heard about works recovering blinker linked files. If is very important, I can look after the author. regards, Euclides
Clipper code recover
The guy in Brazil who claimed to have a decompiler that worked with Blinker 3.3 and above is Wagner Nunes <!-- w --><a class="postlink" href="http://www.vagucs.com.br">www.vagucs.com.br</a><!-- w --> . But don't waste your time or money. His product does not work. And he keeps your money ...
Clipper colors with Read only ( follow up )
Antonio Forgive the follow up on this post as I thought the Clipper colors with READONLY was fixed in 1202. I went back and reviewed your example demonstrating your fix using code : [code=fw:1gq1znaf]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span s...
Clipper colors with Read only ( follow up )
Rick, did You test activating the Checkbox inside the Resource ? EDITTEXT 113, 46, 71, 57, 12, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP EDITTEXT 113, 46, 71, 57, 12, [color=#FF0000:1o5cgwmg]ES_READONLY [/color:1o5cgwmg]| ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP Best Regards Uwe <!-- s:?: --><img src="{SMILIES_PATH}/i...
Clipper colors with Read only ( follow up )
Uwe All the fields in my example are text .. I was just trying to show if adding 'tab stop' to the field would make any difference in the behavior of the Get ? Rick Lipkin
Clipper y sus topicos
Cuestión de imagen. Esa es la conclusión a la que he llegado despues de tantas entrevistas de trabajo. ¿que es lo que quiero decir?, me explicaré. Cuando vas a una entrevista y miran mi curriculum, lo leen y luego alzan la vista. Y mirandome a los ojos me dicen con aire de complicidad... de la viaje escuela ¿he? A lo...
Clipper y sus topicos
El lenguaje C es bastante más antiguo que Clipper y nadie ha conseguido desbancarlo aún, se usa para construir todos los sistemas operativos que usamos hoy en dia <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> La antiguedad es una prueba de su calidad y de su robustez. Ge...