--------------- FIDO MESSAGE AREA==> TOPIC: 202 CLIPPER Ref: ECC00000 Date: 08/01/97 From: JAN DOGGEN Time: 07:55pm \/To: RICHARD GIBBS (Read 0 times) Subj: GGGGrrrr! Hello Richard! RG> fIfile := FOpen(file_in) RG> fOfile := FCreate(file_out) RG> fO2file := FCreate(file2_out) RG> fclose(fIfile) RG> fclose(fOfile) Where's the 3rd close? Bye, Jan --- FleetStreet 1.13 #857 * Origin: * Point van Lighthouse BBS * OS/2 * (2:285/324.15) --------------- FIDO MESSAGE AREA==> TOPIC: 202 CLIPPER Ref: ECD00000 Date: 08/07/97 From: RAYMOND PESEK Time: 11:36pm \/To: BEN CAVANAGH (Read 0 times) Subj: Index of 2 fields RP>>SEEK dtos(Date) + "the number" BC ->It don't work, because with seek you can only seek on one field. It absolutely does. It's seeking the key expression, which is a combination of the two fields. You just have to make sure that the total length of your SEEK expression is exactly the same as that of the two fields combined. If the field holding the magazine number has a width of four, for example, it'd be SEEK dtos(Date) + padl(alltrim(FIELD->Number),4) Raymond Pesek * 1st 2.00 #2448 * Moderator - Clipper Echo --- InterEcho 1.19 * Origin: PC-Ohio PCBoard * Cleveland, OH * 216-381-3320 (1:157/200) --------------- FIDO MESSAGE AREA==> TOPIC: 202 CLIPPER Ref: ECD00001 Date: 08/07/97 From: VINCENT SOEURT Time: 11:14am \/To: FEIKE OLDENHUIS (Read 0 times) Subj: Clipper -> Windows ! What Tool is best ?11:14:0008/07/97 Hi Feike! > Until tyhis moment I prefer the Xbase++. > I bought the xbase++ for OS/2. It looks very good. It is really > compatible with clipper 5.2. I tested this buy compiling a clipper 5.2 > program with xbase++. > The only problem can be the price of the product DM 800 and for the > XbTools III als DM 800. Can you tell me where you got a (evaluation)copy of this product? I'm very curious about it and would like to see it working myself. But I've trouble getting a demo. I've been on their site, but even there I cannot find any relevant information. I would be very pleased if you could! Best regards, Vincent. --- FMail 0.94 * Origin: Voorlopig mijn laatste origin! (2:285/308.1) --------------- FIDO MESSAGE AREA==> TOPIC: 202 CLIPPER Ref: ECG00000 Date: 08/09/97 From: ALEK & TOMEK Time: 10:47pm \/To: ALL (Read 0 times) Subj: Praca dla programisy apex!carrier.kiev.ua!demos!news.maxwell.syr.edu!news.icm.edu.pl!news.tpnet.pl! ppp-rap114.wroclaw.tpnet.pl From: "Alek & Tomek" Ofert staej pracy dla zaawansowanego programisty Clipper'a posiada ALLEX Wrocaw. Kontakt tel. 73-49-68 od 8 do 16. Tomasz Czajczyski --- ifmail v.2.10-ax * Origin: "ALLEX" Wrocaw (2:464/36@fidonet) --------------- FIDO MESSAGE AREA==> TOPIC: 202 CLIPPER Ref: ECG00001 Date: 08/10/97 From: HELDER M. VIEIRA Time: 07:53pm \/To: ALL (Read 0 times) Subj: Re: Praca dla programisy apex!carrier.kiev.ua!demos!newsfeed.direct.ca!europa.clark.net!144.212.95.13!n ntprelay.mathworks.com!news.mathworks.com!news-xfer.cybernet.dk!duke.telepac.p t!news.telepac.pt!usenet From: "Helder M. Vieira" Say what ? --- ifmail v.2.10-ax * Origin: hmv (2:464/36@fidonet) --------------- FIDO MESSAGE AREA==> TOPIC: 202 CLIPPER Ref: ECG00002 Date: 08/11/97 From: ARNO TOLMEIJER Time: 11:57am \/To: VINCENT SOEURT (Read 0 times) Subj: Clipper -> Windows ! What Tool is best ?11:57:0008/11/97 Vincent, -=> Vincent Soeurt wrote to Feike Oldenhuis <=- VS> Can you tell me where you got a (evaluation)copy of this product? I'm VS> very curious about it and would like to see it working myself. Try www.afaonline.com Regards, Arno. --- Blue Wave/386 v2.30 * Origin: HEKOM Holland. Clipper and CDGN Headquarters. (2:2802/223) --------------- FIDO MESSAGE AREA==> TOPIC: 202 CLIPPER Ref: ECG00003 Date: 08/10/97 From: DENIS BRAUSSEN Time: 10:36pm \/To: JEAN MENTEN (Read 0 times) Subj: Clip4win Jean Menten, In a message on 28 July, wrote : JM> Hallo , JM> JM> I'm trying to get acquainted with the clipper add-on library CLIP4WIN. 'v JM> got some questions about this library: nice idea, excellent choice. :-)) Clip4win is a (very good) library wich allow you to write REAL WINDOWS EXE (but only in 16 bits, because Clipper makes 16 bits *.obj) The structure of your PRG is, in such a windows style programming, very close from C style. (BUT, last Version of Clip4Win include an OOP engine which allow you to create your own classes...) Clip4Win is a lib wich provide a (near) FULL access to WINDOWS' API , nothing else (apart it's OOP capabilities...) So, before using Cli4Win you __MUST__ learn how to program windows. without this step, it's __IMPOSSIBLE__ to use Clip4Win. for instance, With a book like the __very__ best: Charles Petzold's WINDOWS PROGRAMMING, the one which is dedicated for windows 3.1 and NOT the last release dedicated for Windows 95) JM> 1. JM> The programm-windows never appears at the same place at the screen at JM> start-up:Why ? when you use CW_USEDEFAULT when creating a window, WINDOWS makes what it wants :)) simply adjust yourself your parameters like in this sample when you use CreateWindo() : #DEFINE APP_NAME "CLIP4WIN_ESSAI" STATIC hinst // keeper of the pgm's instance number // random opening... :(( hWnd:=CreateWindow(APP_NAME,; OemToAnsi("Denis BRAUSSEN, a simple Clip4Win Window"),; WS_OVERLAPPEDWINDOW,; CW_USEDEFAULT,; // X left top corner CW_USEDEFAULT; // Y left top corner CW_USEDEFAULT; // WIDTH CW_USEDEFAULT; // HEIGHT 0,; // HPARENT nothing here 0,; // HMNU none here hinst,; ) simply adjust yourself your parameters like in this sample: // user defined :-)) hWnd:=CreateWindow(APP_NAME,; OemToAnsi("Denis BRAUSSEN, a simple Clip4Win Window"),; WS_OVERLAPPEDWINDOW,; 0,; // X (sample) 0,; // Y (sample) 728,; // WIDTH (sample) 400,; // HEIGHT (sample) 0,; // HPARENT 0,; // HMNU hinst,; ) 2. The programm-windows always has a different size: Why ? for the same reason What do I have to do, to make it a full screen window ? give the right HEIGHT and WIDTH to CreateWindow() you can also change Windows position et/or size and redraw it. see API ;-) 3. Is there any body out there who is using CLIP4WIN ? yes me. ;-)) What are your experiences (as an advanced user) with CLIP4WIN ? i think Clip4Win is a very good product, mostly bug free... But now i've stopped developping in CLIPPER and i only use Clip4Win 'at home' for 'the fun' :-)) (i'm on LINUX now, but i, time to time, reopen my dear clipper compiler, 'cause i have to maintain old code :-)) ) It exists a mailing list. in it you'll can ask everything you want (but be carefull: members are _expert_ programmers ;-)) ) ---------------------CUT HERE----------------> =========================================================================== BBS: SUPTEL NANCY - USRobotics Courier V Date: 30-01-97 (22:07) Number: 21741 From: ANDRE RICARDO BARRETO DE Refer#: NONE To: DENIS BRAUSSEN Recvd: YES (PVT) Subj: [clip-4-win-l] Welcome! Conf: (51) E-Mail --------------------------------------------------------------------------- TO :denis.braussen FROM :arbo@magiclink.com.br ------------------------------------------------------------ The Clip-4-Win mailing list Hello, friends. The purpose of this list is to discuss and exchange anything related to Clip-4-Win, the ingenious creation of John Skelton. You can send questions, ideas, source samples (for big things, please zip and uuencode), suggestions, project proposals, progress reports... well, you get the point. Send these commands to majordomo@magiclink.com.br: For getting in: subscribe clip-4-win-l For getting out: unsubscribe clip-4-win-l Good programming! Andre' Ricardo Barreto de Oliveira DSYC - Datacon Systemas de Computacao Salvador - Bahia - BRASIL