CodeCharge Studio
search Register Login  

Web Reporting

Visually create Web Reports in PHP, ASP, .NET, Java, Perl and ColdFusion.
CodeCharge.com

YesSoftware Forums -> CodeCharge Studio -> General/Other

 CodeCharge Studio 4.0 Update Available (v4.00.00.04)

Print topic Send  topic

Author Message
peterr


Posts: 5971
Posted: 03/18/2008, 1:45 AM

Hello,

CodeCharge Studio was updated to version 4.00.00.04 to resolve the following issues reported to product support:

Resolved: Problem connecting to database via OLE DB.
Resolved: Service pages not published when clicking "Live Page".
Resolved: Error "Invalid character set name: UTF-8" (PHP).
Resolved: Editing button style not applied properly.
Resolved: Parameters not preserved in record within Update Panel (.NET).
Resolved: URL parameterSpace replaced with "+" in labels.
Resolved: Ajax Feature Builder not allowing to specify the same field in the Text Column as Bound Column.
Resolved: Incorrect path to FCKEditor when placed in a subfolder.
Resolved: Errors in Directory component (ASP, .NET)
Resolved: Autofill not working with .NET/InMotion.
Resolved: Program crash when opening Common files in certain projects (PHP).
Resolved: Flash Charts covering menus, making menu items not visible.
Resolved: Wrong Perl path in ClientI18N.pl (Perl).
Resolved: Grid Navigator not shown when number of records cannot be determined (PHP).
Resolved: Image id corrupted when copying and pasting images.
Resolved: Menu layout corrupted when coping and pasting menus.
Resolved: Flash Charts not working with Oracle (PHP).
Resolved: Occasional errors "(component) not found in the HTML" after using builders.
Resolved: URL parameters not accepting certain date formats (ASP)
Resolved: "Object Required" error when selecting a Theme (rather than Style)
Resolved: Stored Procedure parameters not used in Flash Charts

The CodeCharge Studio 4.00.00.04 update can be obtained from the main product download page ( http://www.yessoftware.com/download/download_form.php?product_id=1 ) or directly from http://download2.yessoftware.com/CCStudio4.exe.
The installation program will take you through the necessary upgrade steps, including uninstalling a previous version of CodeCharge Studio 4.x.

Note: after any CCS version upgrade please press F9 after loading your project into CCS to properly regenerate and republish all project files.
Please do not forget backing up your projects before upgrading!
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com
View profile  Send private message
Stanj

Posts: 166
Posted: 03/18/2008, 2:07 AM

Thanks Peter and YesSoftware
I took a few of the listed bugs as something I did so did not realize others were having the same issue.

Is there a plan to update the docs to cover some new features? I notice what I think are new undocumented actions "Show multiple operation for checkbox list" and "Set multiple operation for checkbox list" .
_________________
Stan
St Petersburg Russia
View profile  Send private message
quasimidi


Posts: 151
Posted: 03/18/2008, 11:42 AM

It is disappointing that Yes didn't fixed the flash chart bug (Flash chart vs. Flex builder), and the Ajax update panel with FCKEditor bug.
Peterr, when shall we expect those fixes?
_________________
RS
View profile  Send private message
peterr


Posts: 5971
Posted: 03/18/2008, 12:51 PM

Robert

I believe that all currently known issues were fixed. There are hundreds of resolved issues and minor changes that are not listed above because they fall into general improvements, issues found internal testing, etc. For example there is no such thing as "Ajax update panel with FCKEditor bug" but the Ajax Update Panel was improved to work better with all components, not only FCK.
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com
View profile  Send private message
peterr


Posts: 5971
Posted: 03/18/2008, 1:05 PM

Stan,

Yes, we're gathering a list of topics that can be added to the documentation. Thanks for your suggestions.
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com
View profile  Send private message
CodeChargenewbie

Posts: 114
Posted: 03/18/2008, 2:16 PM

I hope it'll be fixed in this version, but I have an issue which I posted elsewhere. Basically, the dependent listbox feature does not work for me. One of my other colleagues had no problems and I did the exact same thing he did to setup an example. I tried uninstalling and installing codecharge and that did nothing. It gets caught on the javascript generated by CodeCharge. For some reason, it's giving me the error of "id is null or not an object." When I reply I want to debug it (I'm using IE7 to test it and so did my colleague, btw), it points to this line:

   
var dependentElement = $("NewRecord1Model" + sender.id.substring(14));  

Here's the full code it generates:
//NewRecord1ModelPTDependentListBox1 Start @20-F727AA83  
function NewRecord1ModelPTDependentListBox1_start(sender) {  
    var dependentElement = $("NewRecord1Model" + sender.id.substring(14));  
    new Ajax.Request("../services/CPP_Vehdepend_NewRecord1_Model_PTDependentListBox1.php?keyword=" + sender.value, {  
        method: "get",  
        requestHeaders: ['If-Modified-Since', new Date(0)],  
        onLoading: function(transport) {  
            for (var i = dependentElement.options.length - 1; i > 0; i--) {  
                var currentOption = dependentElement.options.item(i);  
                if (currentOption.value != "") {  
                    dependentElement.remove(i);  
                }  
            }  
        },  
        onSuccess: function(transport) {  
            var valueRows = eval(transport.responseText);  
            for (var i = 0; i < valueRows.length; i++) {  
                var newOption = new Option(valueRows["1"], valueRows["0"]);  
                dependentElement.options[dependentElement.options.length] = newOption;  
            }   
        },   
        onFailure: function(transport) {  
            alert(transport.responseText);  
        }  
    });  
}  
//End NewRecord1ModelPTDependentListBox1 Start

It's getting stuck on the sender ID. It has nothing to do with the service page; so, I'm not sure what's the reason. Maybe it's a weird bug in the software? It is very strange that my colleague is not having any problems with it and yet we did the exact same thing, nothing different.

The ONLY thing that may have to do with it, and this is a question that's been bugging me anyway, every time I press F8, it'll ask me if I want to check out the ajax library files. We use visual sourcesafe...so someone will usually click yes and have them checked out. Then when I try to publish, it'll report a slueth of ajax are checked out and the operation cannot be completed; and do I want to check out the file and keep the changes. I'll say yes and it'll report soemone else has it checked out.

So...my question is -- and I'm wondering if this is a codecharge issue that's been fixed, which is why I included it in this thread -- why does it ask me if I want to check out the ajax files after I hit F8? It doesn't ask me this question when it generates the common file. This problem alludes me.

View profile  Send private message
CodeChargenewbie

Posts: 114
Posted: 03/18/2008, 2:16 PM

sorry. double post
View profile  Send private message
Lucius

Posts: 220
Posted: 03/19/2008, 6:58 AM

Quote peterr:
I believe that all currently known issues were fixed.
...
For example there is no such thing as "Ajax update panel with FCKEditor bug" but the Ajax Update Panel was improved to work better with all components, not only FCK.

That's not really true...
FCKEditor still doesn't work while its under active Update Panel (just tested it). And there is such bug, I know several people reported it, including me - take a look at support case 983932232.

I still have at least 4 issues with how the new features work in CCS, which were not fixed in newest release :-/
View profile  Send private message
quasimidi


Posts: 151
Posted: 03/19/2008, 11:45 AM

To Peterr:

My support cases: 983932097, 983932910

FCKEditor + UpdatePanel issue is NOT resolved. And there are several bug reports on this.

Robert

_________________
RS
View profile  Send private message
Vasiliy

Posts: 378
Posted: 03/19/2008, 10:36 PM

I don't report my bugs anymore because I believe most of them Yes already know, but just waste my time asking to describe again. At the same time they:
1. do not update users when bug status changes (requested long time ago)
2. do not provide users with bugs summary for at least personally reported bugs (requested long time ago).
It's useless to help ppl when they ignore your efforts.

Opinion is based on my experience with Yes.
_________________
Vasiliy
View profile  Send private message
E43509

Posts: 283
Posted: 03/20/2008, 4:43 AM

I haven't delved into 4.x yet but all my previous interactions with support have been positive and they provided timely resolutions. Sorry your experience hasn't been as good as mine.
View profile  Send private message
quasimidi


Posts: 151
Posted: 03/20/2008, 7:57 AM

I agree with E43509, the support from Yes is great if you have purchased support plan.
_________________
RS
View profile  Send private message
AQUANANU


Posts: 107
Posted: 03/20/2008, 11:08 AM

Quote quasimidi:
I agree with E43509, the support from Yes is great if you have purchased support plan.

You mean to say that whatever YES delivers as a product, the licensed user should not expect it to be rectified even if the bug is purely because of some logical / incorrect coding by the YES developers in CCS.

I think we have paid the amount what YES asked for to, we didnt bargain to buy the product, so the least we expect that any bug / code problems should be corrected by Yes promptly. The paid support should not be a factor in resolving the bugs.

The support has been helpful in some of the cases, but mostly they take lots of time to resolve the issue.

Known Bug List, Their Status and temparory solution (bypass) should be available to all licensed users, hope others too feel the same.
_________________
Navneet Kakkar
CEO
Positive Thinker's Inc.
View profile  Send private message
Waspman

Posts: 948
Posted: 03/22/2008, 7:48 AM

I don't have a support plan, cos many years ago the issues I had (more often than not upgrade issues) were not / could not be fixed (so I've got lots of versions of CC running to prove it).

However, recently the issues I have had with V4 have been fixed PDQ and I'm very happy with support.


T


_________________
http://www.waspmedia.co.uk
View profile  Send private message
AQUANANU


Posts: 107
Posted: 04/09/2008, 9:29 PM

dear Yes Team

Any plans for updated release having resolved known issues??

Please let us know so those awaiting a stable and resolved known issue version could cheer up and look forward to migrating from ccs3 to ccs4

Wishing you Best of Luck for all times
_________________
Navneet Kakkar
CEO
Positive Thinker's Inc.
View profile  Send private message
kcedit

Posts: 20
Posted: 04/18/2008, 8:26 AM

After upgrading to this new version (4.00.00.04), I am getting the following error when I pull up some pages which are using "Retrieve Insert ID" events.

*************************************************************
Error:Error occurred while attempting to load Action <Retrieve Insert Id> from Category <Database>.
File: C:\Program Files\CodeChargeStudio4\Components\Actions\Server\Database\Retrieve Insert Id.xml
Reason: The system cannot locate the resource specified.
*************************************************************
View profile  Send private message
artmit

Posts: 1
Posted: 06/12/2008, 4:20 PM

Hi,
I have the same problem after upgrading to 4.01.00.06 - also used Retrieve Last Insert ID action...

Regards
Artur
View profile  Send private message
ckroon

Posts: 869
Posted: 06/12/2008, 7:17 PM

There is a newer version! Go get it! :-D
_________________
Walter Kempees...you are dearly missed.
View profile  Send private message
wkempees


Posts: 1679
Posted: 06/13/2008, 2:18 AM

http://forums.codecharge.com/posts.php?post_id=97644

Quote :
pull up some pages which are using "Retrieve Insert ID" events.

*************************************************************
Error:Error occurred while attempting to load Action <Retrieve Insert Id> from Category <Database>.
File: C:\Program Files\CodeChargeStudio4\Components\Actions\Server\Database\Retrieve Insert Id.xml
Reason: The system cannot locate the resource specified.
*************************************************************

Anyone else see this action?

_________________
Origin: NL, T:GMT+1 (Forumtime +9)
CCS3/4.01.006 PhP, MySQL .Net/InMotion(Vista/XP, XAMPP)

if you liked this info PAYPAL me: http://donate.consultair.eu
View profile  Send private message

Add new topic Subscribe to topic   


These are Community Forums for users to exchange information.
If you would like to obtain technical product help please visit http://support.yessoftware.com.

MS Access to Web

Convert MS Access to Web.
Join thousands of Web developers who build Web applications with minimal coding.

CodeCharge.com

Home   |    Search   |    Members   |    Register   |    Login


Powered by UltraApps Forum created with CodeCharge Studio
Copyright © 2003-2004 by UltraApps.com  and YesSoftware, Inc.