We are currently using Brio to access our database files on an AS/400 V4R5. We are upgrading the AS/400 to V5R2 in a few weeks. I called Brio to confirm that...
By simply watching and doing what they do you can get kinky with your parnter(s). With live Cams often with celebrity porn stars giving pointers and...
JOB SEEKERS! You want to WORK with the Finest Employers in USA,UK,CANADA, Asia Pacific & Worldwide. Just look no further.Your search Ends here. Just choose...
Hello, we use Brio 6.6.4.44 against AS/400 V5R2 without any problems. AS/400 is used for both data and repository, and everything works like in V4R5. In fact,...
Hello, I have about 700 locally saved bqy developped in V6, and for migration in V8, we have to change the V6 URL stored in the documents to a V8 URL. That...
Hi All, I am in a jam and I need some advice. We are sitting behind a firewall and not allowed to use Active-X. It appears that Brio uses it only during the...
Hi David, Have you saved a document uncompressed and then searched for a part of the URL string in the bqy file? Will the URL be found in some standard script ...
Just out of curiousity (well, it would really help also): Is it possible to access the MS Exchange Server's Global Address list using Brio? Thanks for all help...
Hi, I've got a tricky one (for me anyway). I have a List Box (ListBox2) with multiple values selectable. When clicked, a second ListBox (ListBox4) is populated...
... behind ... In 6.6 installs and earlier For the stand alone client you can get it by entering the Insight key during the client install. each Brio product...
I didn't test it, but if I understand your question this should work: function checkListBox2(){ var returnValue = false var sl = ListBox2.SelectedList for(var...
Thanks a lot. The first one works. But for the 2) question, if 7th or 14th falls in between a week.. say 7th falls on a Friday, I have to calculate the...
Hi Is there a way to export the chart in such a manner that I am able to paste the chart itself in a file. Normally, Using the function to export the chart...
Here is a very simple calc I use to determine week end date (it returns the date for Saurday): gCurrentDate = new Date() gCtrlDate = new Date( 2001,11,30 ) ...
Better Yet !!! Here is a function that returns the Last Day of the Week function gLDOW( xDate ) { // ** Define local variables var CtrlDate = new Date(...
Not exactly the same situation, but we have used 6.6.4 against V5R1 extensively without any problems, but havent moved to V5R2 yet. However, we did have some...
Is there a way to subtract two dates and remove the weekend days? In other words, I want the number of days between two dates without counting weekends....
My current client is on an AS/400 using DB2 V5R2. I have been updating and correcting numerous Brio reports using 6.6.4.44 without any problems. Many of the...
I would create a funtion, passing in the start date and end date. In the funtion set a counter to 0 and for...next through the date range, incrementing the...
Assuming that both of your dates will be weekdays this should work. function subtractWeekDays(startDateAsStringOrDate, endDateAsStringOrDate){ var a = new...
So you're looking for the Saturday that follows a given date? Then in Oracle it would be: TRUNC(SYSDATE) + (7 - TO_NUMBER(TO_CHAR(TRUNC(SYSDATE), 'D'))) ...
Hi I have an EIS script which relies on a filepath and name for its exporting - this file path and name is contained in a text(*.txt) file. I need to get this...
Use: ActiveDocument.Sections.ImportDataFile( DataFileName,bqImportFormatTabText ) Read the data using ....GetCell() Then delete the imported section Keith...
Have you tried to from your menu bar in brio - do an edit copy and they paste into an app. like excel for instance? I find that works. ... to paste the chart...
Hi What you have suggested works , if I do it manually. But I am using java scripts to dynamically generate reports.I need to write a code behind my "Export...
That will work in an EIS, but is there an equivalent function to getDay in the results section? Thanks for the function, I'll add it to my library! ... ...
Try this. It should open up Excel automatically and paste it in. ActiveDocument.Sections["Chart"].Copy() var obj = new JOOLEObject("Excel.Application") ...