vcl4php-users Mailing List for VCL for PHP (Page 2)
Brought to you by:
ttm
You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
(34) |
May
(2) |
Jun
(3) |
Jul
(4) |
Aug
(4) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
|
Feb
(3) |
Mar
|
Apr
(1) |
May
|
Jun
(2) |
Jul
(1) |
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2009 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
From: Rob W. <rob...@gm...> - 2007-05-28 12:51:54
|
w/ VCL for PHP 1.0: It appears that when you click on the DateTimePicker (as an end-user, or while testing an app), it raises the calendar behind all other controls, which would be fine, except for the fact that I'd like to use it on a PageControl, and there you never see the calendar when you click the pull-down button. If this is fixed in a later release, can someone tell me so. I'm really uncomfortable with the beta versions of VCL for PHP because they include a "broken" "enhancement": I believe I read that it stores the XML file in the session, but when you reload a page, the result of this is that all components on every page of a page control are displayed at once on the screen. -Rob -- Rob Wilkens http://RobWilkens.com 516-874-0579 |
From: Rob W. <rob...@gm...> - 2007-05-15 14:03:59
|
Hello, I have a question about the treeview control. I originally asked this in the borland newsgroups earlier today, but after poking around some more there found this list. Basically, is it possible (and if not, is it possible to extend?) to add multiple columns to the TreeList control? Also, can it (or can it be extended to?) support drag-n-drop? (that is: from tree node to tree node.) I've implemented this once (and it was painfully slow, primarily due to drag-and-drop) w/ PHP/Javascript and my own home-brew tree control, but I'd like to try again and base it on the VCL for PHP treelist control (which is very nice looking, judging from the webmail sample included with Delphi for PHP). Also, with Delphi for PHP is it possible to "upgrade" the VCL included with Delphi for PHP to use the most recent one from the website (which I see was released yesterday). If so, where do I place the files, and if there's documentation somewhere on that, please feel free to say RTFM. Unfortunately, the Delphi documentation (for VCL anyway) in the help system stinks. I would refer to myself as asking a 'newbie' question, but on the other hand, we're just all getting started (as I understand) on release 1.0 usage (of Delphi for PHP), so I would find it hard to believe that most users aren't newbies at this stage. -- Rob Wilkens http://RobWilkens.com 516-874-0579 |
From: qadram s. <su...@qa...> - 2007-04-25 17:26:00
|
nts...@ao... escribió: > Hello world, > > Just checking in to see if anyone out there in the bigger world has > done any projects so fare with Codegear’s Delphi 4 PHP and especially > deployed it? I have been using Delphi since Delphi 1 and still love > it. Delphi 4 PHP is a little setback in what the IDE should be able to > do, but I am sure it will get there. Be sure of that, Delphi for Windows is a 12 year-old product..., we will need some time, but the plans are that. > Here is the real question: Any issues with using the Authentication VCL > when it is deployed? Do you mean the BasicAuthentication component? The only issue is if your hosting company setups PHP in CGI mode, that leads to two problems: -Your hosting doesn't know about PHP and doesn't setup properly -Authentication won't work, this is a PHP limitation, not a VCL for PHP limitation Regards -- José León qadram software C/Juan Ramón Jiménez, 15 Entlo. 2 03203 Elche ALICANTE (SPAIN) T: +34 965 45 48 48 F: +34 965 45 48 48 M: +34 618 28 13 69 http://www.qadram.com |
From: qadram s. <su...@qa...> - 2007-04-25 17:23:37
|
nts...@ao... escribió: > Gurus. > > I need a little help in regards to using the Delphi 4 PHP > DateTimePicker VCL. > > I have an application where any page that does not have the > DateTimePicker will return the servers local date / time when I use > $TodayDate = date("Y-m-d H:i:s"); > > Then I have pages where I am using DateTimePicker and now the > $TodayDate = date("Y-m-d H:i:s"); returns the UTC time even if I have > try to change the TimeZone property to America/Los_Angeles. > > I do not have a problem with that DataTimePicker VCL does not > understand the TimeZone part but it seam strange to me that it changes > the result of $TodayDate = date("Y-m-d H:i:s"); > > To fix the issue I use > date_default_timezone_set("America/Los_Angeles"); in the Before Show > Event. > > One could conclude that the DateTimePicker VCL is having a TimeZone bug. > > As always any and all inputs are welcome. Replied on development list. Regards -- José León qadram software C/Juan Ramón Jiménez, 15 Entlo. 2 03203 Elche ALICANTE (SPAIN) T: +34 965 45 48 48 F: +34 965 45 48 48 M: +34 618 28 13 69 http://www.qadram.com |
From: qadram s. <su...@qa...> - 2007-04-25 17:23:13
|
pet min escribió: > Hi everybody, > > I am new to the list so i hope there is already someone that is thinking over the same problem/question. > > How can I set up a DBGrid component in read only mode ? All I expect is a behavior (Property) that does not permit the user to make changes in this component, and after that in the data table. > > When I set DBGrid->DataSource to a Query("SELECT * ... ") the records are not updated but the user is still able to make changes of the text in the DBGrid cells, which I find very confusing. > > Any idea about this ? You must write javascript to disable editing on each column, we need to add a readonly property to the DBGrid to do this automatically for you: function ddproducts1AfterShow($sender, $params) { ?> <script type="text/javascript"> ddproducts1_tableModel.setColumnEditable(0, false); ddproducts1_tableModel.setColumnEditable(1, false); ddproducts1_tableModel.setColumnEditable(2, false); ddproducts1_tableModel.setColumnEditable(3, false); ddproducts1_tableModel.setColumnEditable(4, false); </script> <?php } Generate an OnAfterShow event for the dbgrid and insert this code, being ddproducts1 your dbgrid. Regards -- José León qadram software C/Juan Ramón Jiménez, 15 Entlo. 2 03203 Elche ALICANTE (SPAIN) T: +34 965 45 48 48 F: +34 965 45 48 48 M: +34 618 28 13 69 http://www.qadram.com |
From: pet m. <pe...@ab...> - 2007-04-22 23:04:44
|
Hi everybody, I am new to the list so i hope there is already someone that is thinking over the same problem/question. How can I set up a DBGrid component in read only mode ? All I expect is a behavior (Property) that does not permit the user to make changes in this component, and after that in the data table. When I set DBGrid->DataSource to a Query("SELECT * ... ") the records are not updated but the user is still able to make changes of the text in the DBGrid cells, which I find very confusing. Any idea about this ? Cheers, Minor |
From: <nts...@ao...> - 2007-04-21 18:06:27
|
Gurus. I need a little help in regards to using the Delphi 4 PHP DateTimePicker VCL. I have an application where any page that does not have the DateTimePicker will return the servers local date / time when I use $TodayDate = date("Y-m-d H:i:s"); Then I have pages where I am using DateTimePicker and now the $TodayDate = date("Y-m-d H:i:s"); returns the UTC time even if I have try to change the TimeZone property to America/Los_Angeles. I do not have a problem with that DataTimePicker VCL does not understand the TimeZone part but it seam strange to me that it changes the result of $TodayDate = date("Y-m-d H:i:s"); To fix the issue I use date_default_timezone_set("America/Los_Angeles"); in the Before Show Event. One could conclude that the DateTimePicker VCL is having a TimeZone bug. As always any and all inputs are welcome. Bjarne \v/ Coordinate your email-newsletters with NTS eBlast tool suite http://www.go2nts.com/eblast ________________________________________________________________________ AOL now offers free email to everyone. Find out more about what's free from AOL at AOL.com. |
From: <nts...@ao...> - 2007-04-20 16:45:38
|
Hello world, Just checking in to see if anyone out there in the bigger world has=20 done any projects so fare with Codegear=E2=80=99s Delphi 4 PHP and especiall= y=20 deployed it? I have been using Delphi since Delphi 1 and still love=20 it. Delphi 4 PHP is a little setback in what the IDE should be able to=20 do, but I am sure it will get there. Here is the real question: Any issues with using the Authentication VCL=20 when it is deployed? Bjarne \v/ Coordinate your email-newsletters with NTS eBlast tool suite http://www.go2nts.com/eblast ________________________________________________________________________ AOL now offers free email to everyone. Find out more about what's free=20 from AOL at AOL.com. =3D0 |
From: Zoltan V. <zv...@sh...> - 2007-04-20 16:16:37
|
Thanks Jose, It works now. Regards Zoltan Varga zv...@sh... Home: 1 250 380 0819 Cell: 1 250 516 8324 =A0 > -----Original Message----- > From: vcl...@li... [mailto:vcl4php- > use...@li...] On Behalf Of qadram support > Sent: Tuesday, April 17, 2007 6:45 AM > To: vcl...@li... > Subject: Re: [vcl4php-users] Server configuration >=20 > Zoltan Varga escribi=F3: > > Hello, > > > > > > > > I just created an application and dropped a ButtonView to the page. > > > > It works fine with the pre-installed webserver, starting the > application > > from the IDE. > > > > I distributed it with the Deployment Wizard to my server and the > > ButtonView doesn=92t show up. > > > > I use the same servers: Apache 2.2, PHP 5. > > > > What is the configuration setting to have this VCL component = working? > Please, checkout this FAQ: >=20 > = http://www.qadram.com/vcl4php/wiki/index.php/Faq#Q:Running_my_app_I_get > _a_javascript_error_.22qx_is_not_defined.22 >=20 > Regards > -- > Jos=E9 Le=F3n > qadram software > C/Juan Ram=F3n Jim=E9nez, 15 Entlo. 2 > 03203 Elche ALICANTE (SPAIN) > T: +34 965 45 48 48 > F: +34 965 45 48 48 > M: +34 618 28 13 69 > http://www.qadram.com >=20 > = ----------------------------------------------------------------------- > -- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > vcl4php-users mailing list > vcl...@li... > https://lists.sourceforge.net/lists/listinfo/vcl4php-users |
From: qadram s. <su...@qa...> - 2007-04-17 13:47:04
|
Marcello Fontolan escribió: > Ok, I will explain what I expect... > > For example, I have a form with 3 edits, all linked (DataSource and > DataField) with a table field. > Edit1 -> Code (Autoinc) > Edit2 -> Title (Varchar) > Edit3 -> Name (Varchar) > > When the unit runs, the table are open and the first record are > displayed on the edits. > I can navigate using DBPaginator and edit the records. > > Now, I want insert a new record so, I expect that: > > - User click on the Insert button; > - All edits are cleared; > - The focus goes to the Edit2 since Edit1 is autoinc; > - User fills Edit2, tab to Edit3 and after finish, click on the "Post" > button; > > This is similar what I do in Delphi for Win32 so, I am trying think > the same way. In web applications, things work a bit different, but if you have some sample code, we can debug it, send it to us. Regards -- José León qadram software C/Juan Ramón Jiménez, 15 Entlo. 2 03203 Elche ALICANTE (SPAIN) T: +34 965 45 48 48 F: +34 965 45 48 48 M: +34 618 28 13 69 http://www.qadram.com |
From: qadram s. <su...@qa...> - 2007-04-17 13:45:08
|
Zoltan Varga escribió: > Hello, > > > > I just created an application and dropped a ButtonView to the page. > > It works fine with the pre-installed webserver, starting the application > from the IDE. > > I distributed it with the Deployment Wizard to my server and the > ButtonView doesn’t show up. > > I use the same servers: Apache 2.2, PHP 5. > > What is the configuration setting to have this VCL component working? Please, checkout this FAQ: http://www.qadram.com/vcl4php/wiki/index.php/Faq#Q:Running_my_app_I_get_a_javascript_error_.22qx_is_not_defined.22 Regards -- José León qadram software C/Juan Ramón Jiménez, 15 Entlo. 2 03203 Elche ALICANTE (SPAIN) T: +34 965 45 48 48 F: +34 965 45 48 48 M: +34 618 28 13 69 http://www.qadram.com |
From: qadram s. <su...@qa...> - 2007-04-17 13:44:21
|
Luca Bonazzi escribió: > Good link with lot of trick... but not all server (hoster) give putty > (ssh) access. I usually use server with no configuration capability > (no .htaccess, save mode enabled, only a ftp access) and install (just > copy) PEAR require reconfigure lot of include, include_once, etc etc. > > But isn't a problem. I understand that is a PEAR problem, not a vcl problem... I have not tested it, but it maybe possible to place a PEAR.php on location of your webserver that includes the real PEAR.php from vcl/PEAR so that will work. Regards -- José León qadram software C/Juan Ramón Jiménez, 15 Entlo. 2 03203 Elche ALICANTE (SPAIN) T: +34 965 45 48 48 F: +34 965 45 48 48 M: +34 618 28 13 69 http://www.qadram.com |
From: Luca B. <in...@lu...> - 2007-04-16 23:00:48
|
Good link with lot of trick... but not all server (hoster) give putty (ssh) access. I usually use server with no configuration capability (no .htaccess, save mode enabled, only a ftp access) and install (just copy) PEAR require reconfigure lot of include, include_once, etc etc. But isn't a problem. I understand that is a PEAR problem, not a vcl problem= ... On 4/17/07, Brian Layman <Br...@th...> wrote: > > unfortunaly not all server allow to add PEAR into path (and in safe > mode i can't use ini_set). > > I will change hosting :) > Maybe this will help: > "How to install custom PEAR modules on 1and1.com and other shared > servers" - > http://www.thecodecave.com/article116 > > It may or may not match your circumstances, but I thought I would throw > it out there for you... > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > vcl4php-users mailing list > vcl...@li... > https://lists.sourceforge.net/lists/listinfo/vcl4php-users > --=20 Dott. Luca Bonazzi Consulenze informatiche http://www.lucabonazzi.it Via Zucchini, 79 44100 - Ferrara tel.: 328 883 4443 fax.: 178 227 2443 P.IVA 01646200384 Questo messaggio di posta elettronica contiene informazioni di carattere confidenziale rivolte esclusivamente al destinatario sopra indicato. =C8 vietato l'uso, la diffusione, distribuzione o riproduzione da parte di ogni altra persona. Nel caso aveste ricevuto questo messaggio di posta elettronica per errore, siete pregati di segnalarlo immediatamente al mittente e distruggere quanto ricevuto (compresi i file allegati) senza farne copia. Qualsivoglia utilizzo non autorizzato del contenuto di questo messaggio costituisce violazione dell'obbligo di non prendere cognizione della corrispondenza tra altri soggetti, salvo pi=F9 grave illecito, ed espone il responsabile alle relative conseguenze. |
From: Brian L. <Br...@Th...> - 2007-04-16 22:36:23
|
> unfortunaly not all server allow to add PEAR into path (and in safe mode i can't use ini_set). > I will change hosting :) Maybe this will help: "How to install custom PEAR modules on 1and1.com and other shared servers" - http://www.thecodecave.com/article116 It may or may not match your circumstances, but I thought I would throw it out there for you... |
From: qadram s. <su...@qa...> - 2007-04-16 11:44:56
|
Hello, Daily builds are automated now, so you don't have to mess with SVN just to try the latest changes. You can get daily builds on the left pane on the project website: http://www.qadram.com/vcl4php/index.php Or in the daily builds page: http://www.qadram.com/vcl4php/index.php?ac=2100 Also, the change log is also updated and you can access it from here: http://www.qadram.com/vcl4php/daily_builds/changelog Regards -- José León qadram software C/Juan Ramón Jiménez, 15 Entlo. 2 03203 Elche ALICANTE (SPAIN) T: +34 965 45 48 48 F: +34 965 45 48 48 M: +34 618 28 13 69 http://www.qadram.com |
From: Luca B. <in...@lu...> - 2007-04-16 08:32:57
|
unfortunaly not all server allow to add PEAR into path (and in safe mode i can't use ini_set). I will change hosting :) On 4/14/07, qadram support <su...@qa...> wrote: > Luca Bonazzi escribi=F3: > > I'm testing PEARDataGrid ... maybe isn't better replace all include, > > include_once, require, with use_unit ? > We should try not to change libraries used to build wrappers, so they > can easily updated without additional changes. You will need to add the > PEAR folder to the php.ini include path to let PEAR work. > > Regards > -- > Jos=E9 Le=F3n > qadram software > C/Juan Ram=F3n Jim=E9nez, 15 Entlo. 2 > 03203 Elche ALICANTE (SPAIN) > T: +34 965 45 48 48 > F: +34 965 45 48 48 > M: +34 618 28 13 69 > http://www.qadram.com > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share y= our > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > _______________________________________________ > vcl4php-users mailing list > vcl...@li... > https://lists.sourceforge.net/lists/listinfo/vcl4php-users > --=20 Dott. Luca Bonazzi Consulenze informatiche http://www.lucabonazzi.it Via Zucchini, 79 44100 - Ferrara tel.: 328 883 4443 fax.: 178 227 2443 P.IVA 01646200384 Questo messaggio di posta elettronica contiene informazioni di carattere confidenziale rivolte esclusivamente al destinatario sopra indicato. =C8 vietato l'uso, la diffusione, distribuzione o riproduzione da parte di ogni altra persona. Nel caso aveste ricevuto questo messaggio di posta elettronica per errore, siete pregati di segnalarlo immediatamente al mittente e distruggere quanto ricevuto (compresi i file allegati) senza farne copia. Qualsivoglia utilizzo non autorizzato del contenuto di questo messaggio costituisce violazione dell'obbligo di non prendere cognizione della corrispondenza tra altri soggetti, salvo pi=F9 grave illecito, ed espone il responsabile alle relative conseguenze. |
From: Zoltan V. <zv...@sh...> - 2007-04-14 15:48:35
|
Hello, I just created an application and dropped a ButtonView to the page. It works fine with the pre-installed webserver, starting the application from the IDE. I distributed it with the Deployment Wizard to my server and the ButtonView doesn't show up. I use the same servers: Apache 2.2, PHP 5. What is the configuration setting to have this VCL component working? Thanks Zoltan Varga <mailto:zv...@sh...> zv...@sh... Home: 1 250 380 0819 Cell: 1 250 516 8324 |
From: Marcello F. <mar...@fo...> - 2007-04-14 13:38:50
|
Ok, I will explain what I expect... For example, I have a form with 3 edits, all linked (DataSource and DataField) with a table field. Edit1 -> Code (Autoinc) Edit2 -> Title (Varchar) Edit3 -> Name (Varchar) When the unit runs, the table are open and the first record are displayed on the edits. I can navigate using DBPaginator and edit the records. Now, I want insert a new record so, I expect that: - User click on the Insert button; - All edits are cleared; - The focus goes to the Edit2 since Edit1 is autoinc; - User fills Edit2, tab to Edit3 and after finish, click on the "Post" button; This is similar what I do in Delphi for Win32 so, I am trying think the same way. Best Regards, Marcello qadram support escreveu: > Marcello Fontolan escribió: > >> Hello, >> >> Doing some tests with Delphi for PHP and VCL I have stop at the >> following problem: >> >> I create a DataBase, a Teable and a DataSource. >> Put a DBPaginator and some Edits, all with their DataSource and >> DataField properties pointed to the Table Fields. >> DBPaginator works ok and I can browse the records. >> I create a button to edit the record with the code: >> >> function Button2JSClick($sender, $params) >> { >> echo $this->Button2->ajaxCall("Button2Click"); >> ?> >> return(false); >> <?php >> } >> function Button2Click($sender, $params) >> { >> $this->TClie->Edit(); >> } >> >> >> I also create a button to post the data with the code: >> >> function Button3Click($sender, $params) >> { >> if (($this->TClie->State == dsEdit) or ($this->TClie->State == >> dsInsert)) >> { >> $this->TClie->Post(); >> } >> } >> >> Works fine and I can edit the record. >> >> To continue the tests, I create another button to insert a new record >> with the code: >> >> function Button1JSClick($sender, $params) >> { >> echo $this->Button1->ajaxCall("Button1Click"); >> ?> >> return(false); >> <?php >> } >> function Button1Click($sender, $params) >> { >> $this->TClie->Insert(); >> } >> >> The table really goes to Insert mode but I can not move the focus to >> the first edit field and the edit fields are not empty. >> The current record are displayed on the edit fields. >> If I replace the data with the new one to be inserted, after click on >> the "post" button nothing changes and no record are added. >> What I am doing wrong? >> Do I have use the old PHP style of call the same page with a >> "action=insert" and run a insert sql command? >> > The Insert() method prepares the dataset to insert a new record, so: > -Insert() > -Set fields to the values you want to insert > -Post() to add the record > > I don't understand very well the problem, so if you can reword your > question, I will try to help you. > > Regards > |
From: qadram s. <su...@qa...> - 2007-04-14 10:40:42
|
Marcello Fontolan escribió: > Hello, > > Doing some tests with Delphi for PHP and VCL I have stop at the > following problem: > > I create a DataBase, a Teable and a DataSource. > Put a DBPaginator and some Edits, all with their DataSource and > DataField properties pointed to the Table Fields. > DBPaginator works ok and I can browse the records. > I create a button to edit the record with the code: > > function Button2JSClick($sender, $params) > { > echo $this->Button2->ajaxCall("Button2Click"); > ?> > return(false); > <?php > } > function Button2Click($sender, $params) > { > $this->TClie->Edit(); > } > > > I also create a button to post the data with the code: > > function Button3Click($sender, $params) > { > if (($this->TClie->State == dsEdit) or ($this->TClie->State == > dsInsert)) > { > $this->TClie->Post(); > } > } > > Works fine and I can edit the record. > > To continue the tests, I create another button to insert a new record > with the code: > > function Button1JSClick($sender, $params) > { > echo $this->Button1->ajaxCall("Button1Click"); > ?> > return(false); > <?php > } > function Button1Click($sender, $params) > { > $this->TClie->Insert(); > } > > The table really goes to Insert mode but I can not move the focus to > the first edit field and the edit fields are not empty. > The current record are displayed on the edit fields. > If I replace the data with the new one to be inserted, after click on > the "post" button nothing changes and no record are added. > What I am doing wrong? > Do I have use the old PHP style of call the same page with a > "action=insert" and run a insert sql command? The Insert() method prepares the dataset to insert a new record, so: -Insert() -Set fields to the values you want to insert -Post() to add the record I don't understand very well the problem, so if you can reword your question, I will try to help you. Regards -- José León qadram software C/Juan Ramón Jiménez, 15 Entlo. 2 03203 Elche ALICANTE (SPAIN) T: +34 965 45 48 48 F: +34 965 45 48 48 M: +34 618 28 13 69 http://www.qadram.com |
From: qadram s. <su...@qa...> - 2007-04-14 10:34:44
|
Luca Bonazzi escribió: > I'm testing PEARDataGrid ... maybe isn't better replace all include, > include_once, require, with use_unit ? We should try not to change libraries used to build wrappers, so they can easily updated without additional changes. You will need to add the PEAR folder to the php.ini include path to let PEAR work. Regards -- José León qadram software C/Juan Ramón Jiménez, 15 Entlo. 2 03203 Elche ALICANTE (SPAIN) T: +34 965 45 48 48 F: +34 965 45 48 48 M: +34 618 28 13 69 http://www.qadram.com |
From: Luca B. <in...@lu...> - 2007-04-13 09:36:15
|
I'm testing PEARDataGrid ... maybe isn't better replace all include, include_once, require, with use_unit ? On 4/12/07, Brian Layman <Br...@th...> wrote: > > > The first PEAR wrapper has been added to the SVN repository, you can > > find here an screencast on how it works: > > http://www.qadram.com/vcl4php/index.php?ac=3D16 > > Oh, now that's very nice! > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share y= our > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > _______________________________________________ > vcl4php-users mailing list > vcl...@li... > https://lists.sourceforge.net/lists/listinfo/vcl4php-users > --=20 Dott. Luca Bonazzi Consulenze informatiche http://www.lucabonazzi.it Via Zucchini, 79 44100 - Ferrara tel.: 328 883 4443 fax.: 178 227 2443 P.IVA 01646200384 Questo messaggio di posta elettronica contiene informazioni di carattere confidenziale rivolte esclusivamente al destinatario sopra indicato. =C8 vietato l'uso, la diffusione, distribuzione o riproduzione da parte di ogni altra persona. Nel caso aveste ricevuto questo messaggio di posta elettronica per errore, siete pregati di segnalarlo immediatamente al mittente e distruggere quanto ricevuto (compresi i file allegati) senza farne copia. Qualsivoglia utilizzo non autorizzato del contenuto di questo messaggio costituisce violazione dell'obbligo di non prendere cognizione della corrispondenza tra altri soggetti, salvo pi=F9 grave illecito, ed espone il responsabile alle relative conseguenze. |
From: Marcello F. <mar...@fo...> - 2007-04-13 02:35:38
|
Hello, Doing some tests with Delphi for PHP and VCL I have stop at the following problem: I create a DataBase, a Teable and a DataSource. Put a DBPaginator and some Edits, all with their DataSource and DataField properties pointed to the Table Fields. DBPaginator works ok and I can browse the records. I create a button to edit the record with the code: function Button2JSClick($sender, $params) { echo $this->Button2->ajaxCall("Button2Click"); ?> return(false); <?php } function Button2Click($sender, $params) { $this->TClie->Edit(); } I also create a button to post the data with the code: function Button3Click($sender, $params) { if (($this->TClie->State == dsEdit) or ($this->TClie->State == dsInsert)) { $this->TClie->Post(); } } Works fine and I can edit the record. To continue the tests, I create another button to insert a new record with the code: function Button1JSClick($sender, $params) { echo $this->Button1->ajaxCall("Button1Click"); ?> return(false); <?php } function Button1Click($sender, $params) { $this->TClie->Insert(); } The table really goes to Insert mode but I can not move the focus to the first edit field and the edit fields are not empty. The current record are displayed on the edit fields. If I replace the data with the new one to be inserted, after click on the "post" button nothing changes and no record are added. What I am doing wrong? Do I have use the old PHP style of call the same page with a "action=insert" and run a insert sql command? Best Regards, Marcello |
From: Adler M. <adl...@gm...> - 2007-04-12 17:10:33
|
Hello!!! My name is Adler Brediks Medrado, from Brasilia, Brazil, and i am here to share experiences with the vcl4php and Delphi for PHP. Nice to meet you, Best regards. -- adler medrado Consultor http://adler.neshertech.net |
From: Brian L. <Br...@Th...> - 2007-04-12 17:02:10
|
> The first PEAR wrapper has been added to the SVN repository, you can > find here an screencast on how it works: > http://www.qadram.com/vcl4php/index.php?ac=16 Oh, now that's very nice! |
From: qadram s. <su...@qa...> - 2007-04-12 16:56:18
|
Hello, The first PEAR wrapper has been added to the SVN repository, you can find here an screencast on how it works: http://www.qadram.com/vcl4php/index.php?ac=16 We are working to get the daily builds automation as soon as possible, so you can try the latest changes easily. Regards -- José León qadram software C/Juan Ramón Jiménez, 15 Entlo. 2 03203 Elche ALICANTE (SPAIN) T: +34 965 45 48 48 F: +34 965 45 48 48 M: +34 618 28 13 69 http://www.qadram.com |