[fpc-pascal] RE: fpc-pascal Digest, Vol 32, Issue 12

2007-04-17 Thread Jason P Sage
g? You know... step into, step over, place a brakepoint... -END Jason P sage Wrote: I have outlook also and quoting is a pain. Attempt at answering or at least my opinions concerning your questions. --- For managing a project in Linux or Win32 - for stuff that is non lazarus I personal

[fpc-pascal] Embedded web server

2007-03-14 Thread Jason P Sage
Leonardo M. Ramé Wrote >Hi, I need to create a web app and don't whant to use CGI or Apache >modules, in fact I whant to >create my own web server that serves only an embedded app. > >Anyone knows anithing like this?, if I'm not wrong Jason P. Sage was >looking for so

[fpc-pascal] Re: CGI (with Free Pascal) vs PHP

2007-03-06 Thread Jason P Sage
any application. PHP is great also. I'll put my mmoney on FreePascal because it goes farther, faster, and can handle the long haul. Jason P Sage ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Sockets Unit Demos - RTL Manual Pg 1056

2007-03-04 Thread Jason P Sage
linux and win32? Thank you, Jason P Sage ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] RE: Interprocess Communication

2007-02-28 Thread Jason P Sage
g wrong? Wouldn't be the first time. Any and all help is appreciated. Best Regards, Jason P Sage ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Some features I use daily in FPC I hope

2007-02-22 Thread Jason P Sage
fault... but upsetting nonetheless. I do hope I answered your question - I mean, if I understood your original question about getting the offset with types versus variables - I think the syntax I wrote above does what you are asking. Best Regards All, Jason P Sage ___

[fpc-pascal] Some features I use daily in FPC I hope never go away!

2007-02-22 Thread Jason P Sage
u can do all the C/C++ dirty pointer tricks - rather cleanly in free pascal. BASEADDRESS+OFFSET=YOU Are HERE Best Regards, Jason P Sage Best Regards, Jason P Sage -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, F

[fpc-pascal] Question on how to avoid memory trouble

2007-02-03 Thread Jason P Sage
>The error is not from a lack of stack space, either. The error is >EOutOfMemory that indicates a less easily solved problem. >Can anyone recommend a method to search a whole drive, of arbitrary >size, without running out of memory. >Stu Cox This is exactly the kind of thing my string class wo

[fpc-pascal] Inline and defines

2007-01-23 Thread Jason P Sage
Hello Alexander, If the "documented" compiler directive variable isn't working, I would just make my own so I only had to change one of code: {$DEFINE USEINLINE} {$INFO = } {$IFDEF USEINLINE} {$INFO COMPILING WITH INLINE } {$ELSE} {$INFO COMPILING WITHOUT INLINE } {$ENDIF}

Re: [fpc-pascal] FileExists inconsistency

2007-01-03 Thread Jason P Sage
need write permission ... and sometimes you do. Having a little more info allows one to make more detailed error log files - and user interface "messages" so users and administrators - heck - us heads-down-coders can figure out what and why quickly when something doesn't go as planned.

Re: [fpc-pascal] an old Turbo-Pascal source

2007-01-03 Thread Jason P Sage
#x27;m working on but there is some neat code in there that might help ya. Best Regards, Jason P Sage [EMAIL PROTECTED] -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.432 / Virus Database: 268.16.3/614 - Release Date: 1/2/2007 2:58 PM _

[fpc-pascal] Re: environmentstrings in windows (Jason P Sage)

2006-12-15 Thread Jason P Sage
lue Where "=MyEnvVar" is the Environment Variable and "MyValue" is the value. Best Regards, Jason P Sage http://www.jegas.com -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.432 / Virus Database: 268.15.19/587 - Re

Re: [fpc-pascal] environmentstrings in windows

2006-12-14 Thread Jason P Sage
ContentLength:=iVal(rCGIIN.arNVPair[t].saValue); End; End; --------END Best Regards, Jason P Sage http://www.jegas.com -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.432 / Virus Database: 268.15.18/586

[fpc-pascal] Problem with string conversion

2006-10-20 Thread Jason P Sage
d of >> the program: >> >> External: Sigsegv >> >> System_remove_from_list_fixed >> >> any ideas? >Did you include cwstring as first unit in your project? This question scares me a little because the Threading Applications require you include them first

[fpc-pascal] Re: Temporary Filenames in GO32

2006-10-13 Thread Jason P Sage
On Wed, 11 Oct 2006, Jason P Sage wrote: >> I read an old thread about how to make temporary filenames (unique >> filenames is what the topic was about) and I have written a simple >> unit that sort of does this without needing a second to elapse (or >> millisecond for

[fpc-pascal] Temporary Filenames in GO32

2006-10-12 Thread Jason P Sage
let me know!   Jason P Sage ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] RE: Threads executing in sequence instead of

2006-09-29 Thread Jason P Sage
ll win32 API - and in linux I use sysutils sleep, so I have a function called "Yield" that wraps this up rather nicely .. I have reasons - I TRY to not use sysutils in ONE app due to EXE size reasons - but in linux I just deal - cuz I need the SLEEP function - in all my other apps SIZE is

[fpc-pascal] RE: Threads executing in sequence instead of parallel

2006-09-29 Thread Jason P Sage
know - sometimes alternatives can actually be faster - like multiplexing - or well managed messaging systems - where program gathers work to do in a loop, then processes each little task in order (or priority) one at time - ... depends on the application however. Have a great day all I have a

[fpc-pascal] Sched_Yield, TThread, Multiplexing, Sysutils, Sleep, Win32, Linux, and Thanks

2006-09-20 Thread Jason P Sage
ro anything but I wanted to address the matters people wrote to me about in response to my earlier emails. I’ve tried to cover a lot of ground – and I hear my favorite text editor sitting idle – Time to do some programming!   Jason P Sage

[fpc-pascal] TThreads - COOL!!!

2006-09-19 Thread Jason P Sage
responded how operating Sleep, Yield, Sched_yield type routines don't suspend your app - they give up the cpu to the operating system for whatever THREAD calls it... this was ground breaking when it finally came together - Response time of the Server? So Far? Pretty Nice! Jason P Sage I thin

Re: [fpc-pascal] Please Help - Need ONE HINT - Trying to get

2006-09-16 Thread Jason P Sage
hey can ALL communicate in a context-less way to the main program - allowing the main program to respond by suspending, resuming, terminating... etc any/all of the working threads as it deems correct. Thank You For Your Response Micha. Any and all help is always appreciated. Jason P Sage ___

[fpc-pascal] FPC Compiler Internal Error: 200410231 (To Whom it may Concern)

2006-09-15 Thread Jason P Sage
= Begin JFC_DLITEM(lpItem).lpPtr:=p_lp; End; //====== === Have a great Day. Jason P Sage ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Widget Sets, Lazarus, Graeme Project, FPC Win32

2006-08-19 Thread Jason P Sage
un shy. Not because I'm a windows fan - I love Linux - but I TRY to write applications that compile on both. Thank you in Advance. Jason P Sage ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Re: DLL and Shared Libs in FPC

2006-08-08 Thread Jason P Sage
T unit fix!) THANK YOU ALL! Jason P Sage ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Threading in FPC on Win32 and Linux

2006-08-06 Thread Jason P Sage
hin layer CGI client, that gets a request, and passes the required info to a bigger application which actually does the work and then passes the resultant out going web page result back to the thin layer CGI app that then spits it out to the client. Thanks in a

[fpc-pascal] DLL and Shared Libs in FPC

2006-08-06 Thread Jason P Sage
I have read some things here and there, but can anyone simply tell me if its now possible to write DLL's and Linux Shared Libraries with FPC now? The last time I approached this topic, it was unsupported, and was still not really something that was ready for prime time. Jason P

RE: [fpc-pascal] MySQL3, MySQL4, and MySql5 - Micha Might have answer

2006-08-06 Thread Jason P Sage
t has always worked to my knowledge - and just ended up with bug this (2.0.2 only I think) go around. Thanks for Asking Jes?s Jason P Sage ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] RE: MySQL3, MySQL4, and MySql5 - Micha Might have answer

2006-08-05 Thread Jason P Sage
[Jason P Sage Wrote Originally...] >I heard from Michael Van Canneyt, or Micha, in an email not to long ago, >that the MySQL5 FPC unit is available and has been for awhile. My attempts >at finding it have been fruitless. >Question: Does anyone know where I can find the MySQL5 F

[fpc-pascal] MySQL3, MySQL4, and MySql5 - Micha Might have answer

2006-08-05 Thread Jason P Sage
n. --- Now for some rambling --- END Have a great Day All! Jason P Sage ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] CRT unit, Fedora 5, Doesn't Work- Elaboration here

2006-07-27 Thread Jason P Sage
>>Jason P Sage wrote: >>> A good example is that FreeVision and the FPC IDE do not work on my >>> Linux either. >> >>Elaborate on "do not work" please ? >> >>Micha [Jason Peter Sage] Hello Michael. "Does Not Work" means in thi

[fpc-pascal] CRT (Console Unit) Problems with Fedora 5

2006-07-26 Thread Jason P Sage
IDE do not work on my Linux either. Thanks - this one has baffled me for awhile. One solution would be to make a wrapper to the CRT unit, and depending if I'm Linux or not, use CRT stock lock and barrel, and use a home made lean terminal emulator for Linux. Does this sound like a good or b

[fpc-pascal] MySQL4 Pascal Unit

2006-07-26 Thread Jason P Sage
for MySQL4, and perhaps someone is working on a MySQL5 unit for FPC now. So, my questions can be summarized with: If you used the MySQL4 unit in FPC, do you have any comments you could share? Thank You, Jason P Sage [EMAIL PROTECTED] ___ fpc-pasca

[fpc-pascal] Compiler Warning and Notices like unused variables etc.

2006-07-26 Thread Jason P Sage
es doubt (speaking for myself) when I compile something and there are warnings being displayed. It makes me think the programmer has not addressed everything or my environment might be the cause of said application to maybe not work as designed. Jason P Sage _

[fpc-pascal] A Free Pascal Installer that's easier? For Newbies?

2006-07-21 Thread Jason P Sage
k I installed FPC to both locations! Wow - how do you undo that? Oops! And I'm an... ahem... expert :) Have a great Day people! Jason P Sage -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, July 2

[fpc-pascal] Pascal Compiler - Missing Messages etc.

2006-07-20 Thread Jason P Sage
nd the ditch than to build a bridge! Free Pascal = Awesome Jason P Sage ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal