Let's say I wanted to build a minimal Windows app using Corman Common Lisp. Let's take as a quick, operational definition of a "minimal Windows app" that it...
538
Chris Double
DoubleC@...
Mar 3, 2002 8:45 pm
There are some CLOS windowing elements included in CCL. But they are still quite low level and require 'Petzold level' knowledge of the Windows API. See...
539
wilsonch0
Mar 9, 2002 2:23 pm
I'll write up a tutorial and post it if I can get through this, but I'll need help getting through it. Goal: Develop a CCL function to run another Windows...
540
Chris Double
DoubleC@...
Mar 10, 2002 8:59 pm
Corman Lisp 1.5 has the 'shell39; call defined in Win32.lisp. Run like: (shell "cmd.exe / c dir") Chris. ... Disclaimer: "The information contained in this...
541
wilsonch0
Mar 11, 2002 1:21 am
... [snip] Chris, thanks for taking time from your Monday morning to answer me who am still lazing around Sunday afternoon. I see the shell command and I know...
542
Chris Double
DoubleC@...
Mar 11, 2002 2:21 am
Glad to be of help. I wish it was still Sunday here! Where wrapping API calls I generally use the '...A' versions rather than the '...W' versions. That way I...
543
Reini Urban
reiniurban
Mar 11, 2002 7:02 pm
... You'll need any W version (unicode) only for COM or for very special locales. But you don't have to care for that. roger already predefined all win32 api...
544
wilsonch0
Mar 13, 2002 12:49 am
Thanks much for your message. It helped me get much further. I have some comments and questions to test my understanding and to make the next steps. --...
545
Reini Urban
reiniurban
Mar 13, 2002 1:49 am
since there are so many win32 smybols roger wrote a short program which defines all funcs, types and structs from abbrevated definitions in win32-symbols.lisp....
546
Chris Double
DoubleC@...
Mar 13, 2002 2:08 am
... The platform SDK is also available for download from the Microsoft site (msdn.microsoft.com). This has full help. Chris. ... Disclaimer: "The information...
547
rohan nicholls
rohannicholls
Mar 14, 2002 11:03 pm
Hello all, I feel a fool asking this question, but in connection with my other question about the odbc libraries I have run into the problem of packages. The...
548
wilsonch0
Mar 17, 2002 3:18 pm
Okay, I tried to digest all that had been told to me and I wrote up a sequence of Lisp that I intend to 1) run an external process, 2) wait for the external...
549
Reini Urban
reiniurban
Mar 17, 2002 4:00 pm
... some minor observations: (CreateProcess "c:\\program files\92;winbatch92;\tibbs92;\code92;\tibbs_cp.wbt", cl::C_NULL, lpProcessAttributes, lpThreadAttributes, 0, ...
550
Reini Urban
reiniurban
Mar 17, 2002 7:07 pm
... BTW: better use HINSTANCE ShellExecute( HWND hwnd, LPCTSTR lpOperation, LPCTSTR lpFile, LPCTSTR lpParameters, LPCTSTR lpDirectory, INT nShowCmd ); see ...
551
Roger Corman
rgcorman
Mar 18, 2002 12:16 am
... Hi Clark, On the subject of malloc, when you call ct:malloc a finalizer automatically gets set up which will free the allocated C-heap block when the lisp...
552
wilsonch0
Mar 19, 2002 1:09 pm
Okay, I'm feeling my way here, holler if I'm heading the wrong direction. I reduced the code I was trying to execute to these two lines, which Reini had put at...
553
wilsonch0
Mar 19, 2002 1:19 pm
... [snip] ... [snip] Still executing just: (use-package '(:win :ct)) (require :winbase) So I deleted the winbase.lisp line that declared IGNORE. And I got a ...
554
mikehalpinuk
Mar 20, 2002 9:45 am
... question ... to do ... file? How ... and ... background ... people do a ... that I have ... object ... there are ... mostly ... methodologies. ... once I ...
555
hitureas
Mar 28, 2002 8:47 am
Here is a place you can find lots of good deals on credit cards. I have the worst credit and I was approved! Click on link Below! http://apply4creditcard.com...
556
Joe Marshall
prunesquallor@...
Apr 1, 2002 9:30 pm
With the appropriate registry settings, you can make it so that clicking on a corman lisp image file launches it. My settings are reproduced below. Another...
557
Chris Double
DoubleC@...
Apr 3, 2002 11:19 pm
I've pasted below a copy of clipboard.lisp, some functions I use for using the clipboard during development. Sometimes I have a console version of CL running...
558
Chris Double
DoubleC@...
Apr 3, 2002 11:38 pm
Add the following to gain the ability to write strings to the clipboard. This allows you to write editor macros. For example, you can write a function that...
559
Chris Double
DoubleC@...
Apr 4, 2002 2:37 am
Here's an example of a simple clipboard filter function to comment out a region. It will place '#| ... |# ' guards around the text in the clipboard. To use,...
560
Chris Double
iamcdouble
Apr 5, 2002 11:45 am
The following code works fine: (defun x () (write-char #\( *standard-output*) (write-char #\) *standard-output*)) The following crashes: (defun x () ...
561
Chris Double
iamcdouble
Apr 5, 2002 12:41 pm
I've narrowed it down a bit more. The following causes the error as well: #\null Chris....
562
Chris Double
iamcdouble
Apr 5, 2002 1:01 pm
The following code used to work in CCL 1.42: (defpackage x (:use :common-lisp) (:export #:junk)) In CCL 1.5 I get the error: ;;; An error occurred in function...
563
Chris Double
iamcdouble
Apr 5, 2002 1:20 pm
I've updated the SQL-ODBC and AllegroServe packages to work with Corman Lisp 1.5. They are available at: http://www.double.co.nz/cl Unfortunately the SQL-ODBC...
564
Marco Antoniotti
marcoxa@...
Apr 5, 2002 3:56 pm
... (with-noise-ahead " Well, the real question is: can Franz fix its kludgy and non backward compatible support for case sensitivity? :) ") Cheers -- Marco...
565
Chris Double
DoubleC@...
Apr 7, 2002 9:07 pm
... Is the defpackage format that ACL tends to use non standard in some way? I'm talking about the use of '#:somename39; for names of packages and exports, etc. ...
566
Chris Double
DoubleC@...
Apr 7, 2002 9:09 pm
Is there a defsystem that works with CCL 1.5? Has anyone managed a port of the one available at clocc.sf.net? Chris. http://www.double.co.nz/cl ... Disclaimer:...