|
Pascal Server Pages (PSP)
Pascal Server Pages Web Journal site has been updated. CGI sample has been added. Begin..end blocks implicit now http://pspwebjournal.webjump.com/
Related Discussions - HOW TO RUN DATABASE APPLICATION ON THE INTERNET (2001-01-03 03:04:54)This is possible using COM objects and ActiveX Server ...
Don't ask how ... I'm not into COM object programming ... :o)
Regards
/Filip
- HELP WITH CHDIR !!!! TURBO PASCAL VS DELPHI (2001-01-03 06:48:49)This is because the ChDir Procedure, the SetCurrentDir and SetCurrentDirectory Functions are changing the directory in the active process.
Try...
- HOW TO CREATE SEQURE LOGIN TO DESKTOP APPLICATION (2001-01-05 09:30:01)I'm not pretty sure, what your intention is. One possible approach would be to use a edit-field, which cannot be "spyed out" by the usual password...
- QUERY PARAMETER QUESTION...? (2001-01-04 22:44:03)there are two parts
first is writing the script with variable and another is using bind variable
eg-
for first you can say
query1.sql.text...
- HOW CAN I LOG A MESSAGE IN THE EVENTVIEWER OF WINNT? (2001-01-08 23:53:38)Thanks,
Actualy, it uses the same procedure I used,
but it is explained...
Elscampie
- RESTRICTING USERS OF AN APPLICATION IN A NETWORK SITUATION (2001-01-10 00:56:12)This would be a simple solution.
program OnlyOneOpen;
uses
Forms, SysUtils, classes, windows, dialogs,
uSingleRun in 'uSingleRun.pas'...
- PLACING A BACKGROUND BITMAP ON A PANEL? (2001-01-10 10:02:07)There are some good Freeware components available in Delphi Pages, which do exactly what you want.
e.g. Gradient Panel, Roger Special Panel,...
- HOW TO DO PING? (2001-01-10 12:28:57)You can use the ECHO protocol in which PING is based.
Take a look to the TNMEcho component in FastNet page of Delphi component Palette.
- HOW TO EXECUTE AN APPLICATION AND WAIT UNTIL IT FINISHES (2001-01-13 04:48:18)This may help you...
var
TSI : TStartUpInfo;
TPI : TProcessInformation;
Success : Boolean;
begin...
- IS OPERATOR OVERLOADING POSSIBLE IN DELPHI? (2001-01-11 21:27:48)operator overloading is where you overload a + > = - operator, etc so that when you use the operator for a given class, then it would perform your...
|