You can add information yourself like Samuel suggests, or maybe use Webset psAppicationTitle of oWebapp to 'This will be shown on the browser tab'
Type: Posts; User: Evertjan Dondergoor
You can add information yourself like Samuel suggests, or maybe use Webset psAppicationTitle of oWebapp to 'This will be shown on the browser tab'
Yeah, you can do that. I've running webapps that way at a customer. If you set the cookie to the domain, they can login once and be logged in for both applications. If they do not share the domain...
Yes to apllication.css
The CSS could be something like
.WebMenuItem{
font-family: fantasy;
}
In your query, you can define the collate. (select * from customer where [name] like 'alvarez%' collate Modern_SPanish_CI_AI). You can also change the collate of one fields if you wish, but that has...
XML becomes exponentially slow. So if the XML will become twice the size, it will be 4 times as slow - or whatever the exact numbers are. So if you have a lot of records, you might want to look into...
You need a quote after the Webcon_Sizer, as that is the class. Than after openview you have two quotes, should be only one.
(This is the most British thread ever. You all should have a cup of tea with milk together!)
Yeah, or you create a separate project to clean it up and be done with it. Both are 10 mins of work and both have their advantages and disadvantages. (although some will not be using SQL)
Just did a quick test on my machine: ~20 seconds to export 1M records.
It is probably something with the view, have seen that before. You could maybe use a sql query to get the data and export...
oh, really? That's fine of course. I was tihnking DD, which isn't even called create :-P.
You cannot - or should not - call DD function within create. The idea itself is correct. Just use an alias though and the clear/find commands.
Well, ok.
Normal flow: User clicks button, this gets send to IIS/WAS and they tell webapp.exe that the button was clicked. Webapp.exe does it's job and reports back.
But now webapp.exe does not...
It depends on what you mean with converting. If you just want to have the old application going I would create a new workspace and a new basic web application. Then copy over what you need in the new...
Most likely just cache.
Use a SQL filter on the orderheader like:
where orderheaderid in (select distinct orderheaderid from orderdetail where item = 8)
just add it to the server, like server=myserver\sqlname:1234
You could hide it a bit by moving it to a function
function mySecretThingy Returns String
function_return (character(125) + character(412))
End_function
Then at least the code isn't...
(changed_state(12345))
Put above in the watches of the debugger and step (F10/F11) through the application.
Replace the 12345 with the actual object number.
Must of the time it indeed is an...
13900
Kinda done it like this with the suggestionform. It is for plants, and there is only one 'kalanchoe laciniata' in de database, so I show that article and you can directly select it. But the...
wow, indeed it turns out that is not possible for functions.
Then I'd guess you have to do it the hard way, which really isn't that hard :-)
You can use: alter function databasename.dbo.functionname.
If the user rights are correct it should work.
Yeah, now you mention it: we had the CCH files in a different folder, so with a copy-paste they would not be copied.
It has been years since I worked with pervasive, but back then just a copy-paste would do. I do remember one situation where somehow a full path was used in the filelist, which needed to be fixed,...
If you set the piMenuHeight to a value where it does not fit anymore, the menu should scroll, but to me it seems that having less items in the menu is the way to go.
You could give the form a CSS class based on the value and then use 'margin-left' to give it the indentation you want. So you need to look into OnDefineCSSClass