hard to tell without seeing more details
Entry_Autofind has an item parameter that is optional. in a dbform i would expect it to be either not passed or 0. any other value would probably give you...
Type: Posts; User: starzen
hard to tell without seeing more details
Entry_Autofind has an item parameter that is optional. in a dbform i would expect it to be either not passed or 0. any other value would probably give you...
thanks for the info. we use SAML libraries for other projects but in DF webapp we created the interface from scratch
single signon is a bit more than that
one major issue is password maintenance. In a larger corporation if they are running 10 different apps and the users have to maintain their passwords in 10...
dont see a reason why it wouldnt work between 2 DF WebApps. As long as the session table and the cookies are shared and the encryption is the same it should just work.
But of course the big thing...
Roel
the order the css classes are listed makes no difference. What matters is specificity of the classes and the order they appear in the style sheet
in this case the specificity of the two...
yes, would need to post more info.
the CSS class is applied to the top element in the javascript control but the styling you want may need to be applied to child elements
in the browser...
probably calling it after the com object has been destroyed
looks like you are calling something from exiting that calls movetorow
you could use IsComObjectCreated to protect the code
what types are the columns you are not getting values from?
as far as the second one all you need to do is to add the user name and password to the connection string if the connection uses a SQL...
look at embedded sql in the help.
sorting maybe every time you add an item
i would use a string array and the function i mentioned
What version of DF?
i remember we had an issue with this and it was so bad that i decided to write an external DLL to do my query that was massively faster for a number of reasons
i think at...
theoretically 8TB but not that simple in practice
for one it depends on how the memory is consumed and addressed.
registers need to be big enough so the limit may be the size of the registers...
You can use IPC (inter process communication) to communicate between windows processes.
there are a number of different IPC methods such as top level messages, message queues, shared memory,...
have you tried removing and re adding the library
are they used in the main project that uses the library or are they possibly cross referenced from one library to another
are you sure you dont have cookies turned off or something like that?
if it happens on the dev machine log the session keys and see what they are
if it works in other views but not in this one obviously something must be different
have you tried to create a new webapp just with that view
anything special about the app?
technically of course the error means that the session key from the client was not found in the session table
i have had this error when we implemented SSO...
is ICEMEN01 an externally updated table in your DD structure?
record not found happens when you have a record in the buffer that has been deleted and DF tries to refind the record
with...
We have a logging system built into our apps that logs data into a sql database
by default it only logs errors and other forced logs but with configurations it can be set to log all debug...
problem is if other protocols are enabled and the server doesnt have TLS1.2 it will downgrade to other protocols. you would need to disable all other protocols
as far as i know there is no way to...
another option is to use the CoCreateGuid API
Move (CoCreateGuid(AddressOf(myGuid))) to iRetVal
generally setting the size last is better. But i am wondering if that was the reason for the studio to show it different.
is there a reason why you are setting the size twice in some objects?
a bit tricky. DF changes the size when setting any font type properties. so if you set the size first and then change the font...
thats why i was asking about the clear. OnNewCurrentRecord is called when a new record is found or dd is cleared so something seems to be happening too early
follow the callstack back to see what...