The idea of option A I mentioned is to have the login separate from the selected dataset. The users has to log in, which is stored in a cookie. He will have choices which dataset to work with, say...
Type: Posts; User: Evertjan Dondergoor
The idea of option A I mentioned is to have the login separate from the selected dataset. The users has to log in, which is stored in a cookie. He will have choices which dataset to work with, say...
The possible options I see:
a.Aallow one login to chose which data they want to see. You can store the choice in a client-webproperty and use that to determine what data needs to be used. This...
The code you posted seems to work fine, but you mention Datetime and that will not work well.
So this works fine
{ WebProperty = Server}
Property Date pdVanaf (DateSet(1900,01,01))...
Although it has probably nothing to do with the problem, I would consider dynamically changing the SQL-Filter + constrain in a search as very risky. You'd have to make sure these filters get reset...
Ah, ok, right. That's true.
Try registering again.
Your code works for me, although structure_end already closes the table. No need to close it again and in fact that should throw an error as the value of hTable will have changed.
Note that you...
Class cPortalDatadictionary is a DataDictionary
Procedure Construct_object
Forward Send Construct_Object
// Delete, create and update settings.
{...
Your wording does not match the diagram. Assuming the diagram is correct, my guess is that you did not constrain_file both D and J tables to the parent O. Otherwise you might indeed need an alias or...
After a manual DD-find I surely assume the global buffers are updated. IOW, red might be more correct, but I have always used green.
Technically it should work, but it might create issues with global buffers. You might be better off using alias-tables.
Runprogram Shell background 'https://www.dataaccess.com'
Most people would put it directly in index.html, somewhere at the end of the header. As long as it is included after the DF-engine, it should be fine.
Not sure if helpful, but this worked for me
[code]
Runprogram Wait "powershell.exe" "get-process"
/code]
Some blue-white thingy popup up and disappeared :-)
You either connect directly to the database or add the database name to the query. I think ALTER TABLE [<dbName>].[dbo].[Customer] should work. That is not very handy if your SQL is automatically...
You also need to add the HTTP module in IIS. Normally the studio will do this for you, but on the server this might not happen automatically. Unfortunately I did not find a help for that, although it...
WAS needs access, not IIS. So go to services, find the Dataflex Webapplication service and check the 'Logon as'. That account needs read/write access to the upload folder.
.PDF-logo {
background-image: url(https://upload.wikimedia.org/wikipedia/commons/8/87/PDF_file_icon.svg);
background-size: cover; /* or maybe a fixed width */
background-repeat:...
Interesting, but it seems you are right. Docs says it should work. Quickly tested in the Weborder and there it did work.
Did you check the learning center? there must be some stuf on there I think.
Your quest is sorta weird, you might be trying to do something you shouldn't be doing. What do you mean with 'opening a webapp'. Normally you'd have a process pool running of say 4 processes that...
This property should do the job for web. the properties you mention are for windows applications.
There is an online course on custom controls as well: https://learning.dataaccess.com/courses/custom-controls/
And a side note: maybe the scheduler library fits your needs....
In a program with a 'window' the window_handle will always have a value, but in a program without a window (like webapp or a background process without UI) the window_handle will be 0. I do not think...
For this reason I normally create a procedure anyway and call that one. You probably just can add [Procedure DoSomething/End_Procedure] around your existing code and call that procedure as the last...