Quantcast
Channel: ASPRunner forums
Viewing all 2520 articles
Browse latest View live

how to debug the phprunner control project file

$
0
0
To load the project I need more than 3 hours to let me work.
I have the theory that the history of previous versions could be the effect that it takes a lot to load the porjecto

Event for After Group Of Records Updated

$
0
0
In my project, I'm currently using the following code to call a procedure on the After record updated event under the Edit page section

Quote

tDAL.CustomQuery("EXEC psyRefreshtblPrimaryDataset");


I'm currently using in-line edit in this particular instance, where users will quickly select or deselect a series of checkboxes on a list page. I have the row click action set to do inline edit, so effectively two clicks for each row with activate in-line edit and change my field value between 1 and 0. When the user has a number rows changed, I want them to be able to select the Save All button to update the records as a batch. This in itself is not an issue as my table will update fine. However, this process calls the procedure quoted above for each record being updated in the batch. Not an ideal situation I'm sure you can agree.

I noticed that there is an After group of records deleted event on the list page, and wondered if there was something that I could do to mimic an After group of records updated event, or perhaps a way to trigger my procedure call upon leaving the list page?

Any clues?

SQL Variables

$
0
0
If I need more flexibility in a lookup dropdown, I'd like to use a form variable in my lookup query.

Say I have a dropdown called PartNumber, and I want to use the selected field in a subsequent dropdown that will require a table join.

The query would look something like this:

SELECT pro2.Mold_Center
FROM dbo.production_partmaster pro
LEFT OUTER JOIN dbo.production_moldtypes pro1 ON pro.moldtype=pro1.id
LEFT OUTER JOIN dbo.production_moldcenter pro2 ON pro1.id=pro2.MoldType
WHERE pro.partno = <selected previous dropdown PartNumber>.

How do I get the <selected previous dropdown PartNumber> from the form?

Any help is appreciated!!

Thanks,

John

Please actiavte my account

$
0
0
Hi,
I don't know why my account is not activated.
I paid for phprunner upgrade.
I use "Resend activation link" function that on https://xlinesoft.com/dss/support.asp?link=account
I received mail,but the activate account link doesn't work.

=======================
You have registered as user at Xlinesoft Support center.
Click this link to actiavte your account:
https://xlinesoft.com/dss/support.asp?code=
(If you are unable to click on the link, copy and paste it into your browser window)

email: yuan0623@seed.net.tw
password: XXXXXXXX

Xlinesoft Support Center
https://xlinesoft.com/dss/support.asp
=======================

Please help me to activate my account.
I want to download phprunner 10.1 .
Thanks.

Change favicon (PHPrunner 10.0)

$
0
0
Hello,
how I can customize favicon with phprunner 10?
thanks

[SOLVED] Cannot log in After building with 10.1

$
0
0
I built a project in 10.0 Enterprise and it worked fine. I downloaded the new 10.1, uninstalled the 10.0 and then installed 10.1. I loaded the project and did a full build and an upload "all" files. When it is finished uploading it opens the login page and allows me to type in the credentials but it will not allow me to submit. The button highlights as I mouse over but when I click nothing happens.

I took the login page out an tried with no security and was able to get to the main page of the site and see some data but my dashboards were not there (assuming a permission left over from the build) Any body having an issue like this or any suggestions would greatly appreciated.

Thanks
mk

Limit data displayed in detail chart

$
0
0
Hello listers,

I would like to limit the data displayed in a chart when the chart is a detail of a table (using PHP Runner 9.8, latest build).
I thought it could be done analogous to the procedure when displaying a table as a detail, which works with this code in "AfterTableInit":

if(isset($_POST["mode"]) && $_POST["mode"] === "listdetails")
{
  $query->addWhere("year=2012");
}


This does, however, not work when displaying a chart as a detail to a table. It does work when adding this code:

  $query->addWhere("year=2012");


But, the chart will then be limited always.

Thanks for any hint

Import page opened in popup via custom button


Field order in pages and child record position

$
0
0
Hi,
I have a master and child table. When i display child record on master pages (list, add, edit, view) it display child record at top of every page, even in the list page it is at bottom in designer tab.

How can we move it to bottom of all pages when we apply copy order to all pages from list page.

Migration to PHP 7

$
0
0
Actually I'm running several PHPR 10 applications on a Windows Server; there I use PHP 5.6.40 and run it as FastCGI application.
I would like to migrate to PHP version 7.
When I just switch to for example PHP 7.1.26 all HTML pages work fine, but all PHPR applications show this error (or similar):

Fatal error: Failed to create COM object `ADODB.Connection': Access is denied. in E:\www\...\connections\Connection.php on line 661

Has someone an idea what is going wrong and can assist?

Thanks
Philip

Print Master, Details and Subdetail on the same page

$
0
0
Hi everybody,

i am wondering if there is a possibility to print out 2 Levels Details tables.
This is what I want to achieve:

I am setting up a software for a transport company.
The client gives a transport order and each order contains several tours.
At the end of every month I need to send an invoice to the client containing his orders during the current month including the tours that belongs to each order.

So the invoice structure should look like this:

[Client Address]


-Order Nr. 1
------------Tour Nr. 1
------------Tour Nr. 2
------------Tour Nr. 3

-Order Nr. 2
------------Tour Nr. 1
------------Tour Nr. 2
------------Tour Nr. 3

All Tables are Linked with (Client-ID and Tour-ID)
The Print Page prints only the orders. I don’t see a possibility to print out the tours although they are assigned as Detail Table for the orders.

Any idea how to get this job done?

Check if start date is earlier than end date (PHPrunner 9.0)

ASPRunner.NET Error (2147467259)

$
0
0
Hello all,

I recently took over IT administration for a small organization that uses ASPRunner.NET. So far I've liked the program and the application has been working great until last week when everything stopped working. I've attached a picture of the error below. After the clients sign in to the application they receive this error. I've checked all the settings in IIS and it seems like if I change the App Pool from "ASP.NET v4.0 Classic" to Classing .NET AppPool" it will work for an hour or so but then reverts back to the same error message. Would anyone know what would be causing this error?

Thanks!

Posted Image

Login with 2 different Active Directories

$
0
0
Hello,

I have a web with login and i need to use two different Active Directories, this is posible with PHPRunner 9.8?

Thanks

Dropdown that generates Weeknumbers

$
0
0
Hi everybody,

i am working on a project and I need a little help with the following issue:
i have a date field in my database called (CalWeek) which stands for Calendar Week.
In the add/edit page this field should appear as a dropdown which generates the next 5 weeks automatically starting from today.

Example:

Assuming today’s date is 01.03.2019
The values in the dropdown should be:
11-2019
12-2019
13-2019
14-2019
15-2019

Any ideas how to get this done?
I’d appreciate any advice..

Advice on project

$
0
0
Hi All
Just have a quick question. I have 76 tables in my database. I did a partial import and just imported the first 50 tables and my project runs like lightening
If I have the 76 tables my project times out, so I am guessing I have an error on a table.

Beside removing table by table and testing, is there a quicker way I can see what table is giving the issues?

Cheers

Paul.

Read Only Lookup Field

$
0
0
Hello,

I have 4 fields: FiscalYear, Department, Account and Remainder. I would like for Remainder to be a read only value that auto populates depending on the other 3 fields. I already tried "This dropdown is dependent on...," in fact Department is dependent on FiscalYear and Account is dependent on both FiscalYear and Department, and it works... sometimes. Sometimes it acts a bit funky where after selecting the other 3 values the correct Remaining value flashes really quickly but its not selected and I'm not able to do so, only "Please select" is available. Additionaly, I was not able to figure out how to make it read only (HTML?).

I'm guessing it will be a Javascript onload Event that checks when Account changes, as that's the last field being selected, and then does a SQL query.

Any help would be appreciated.

Thank you!

previous builds

$
0
0
Unfortunately the newest build of phpr always crashes during sftp upload on my machine.
As far as I can see, it uploads everything just fine, but 3 error popups appear during the upload (and the upload continues to run in the background). As soon as I confirm one of the error popups the program terminates.
(and all of the popups tell that they've written a crashdump file, each of them ~24;B in size).

Question: is there an archive of previous builds of phpr somewhere on the site? I didn't find anything, but maybe I just missed it.

Thanks.

show record details in a list.

$
0
0
Hello, Kind of new to PHPRunner.

I want to show all the record details in the list. I know you can click on the button and it will expand and show the details. But is there a way to show the details by default?

I usually show the list, after a "search" It is a search result. If I use a view seems to show the details without problem.

Posted Image

I really, really appreciate your support..

C.Cas

360 image viewer

$
0
0
Is anybody have tried a 360 image viewer plugin to phprunner?

Or anyone can give a guide/idea on how to integrate with your recommended viewer script... :D
Viewing all 2520 articles
Browse latest View live