Brice André | 7 Feb 13:26
Picon

Problem during registration of wxUPnP library

Dear all,

A long time ago (several months at least), I registered a new project, called wxUPnP. I never received any confirmation for this new project and so, I tought that something went wrong.

I updated another project (wxEMail) today and, during this process, I saw that the wxUPnP project is now present in the list of projects that I can manage.

But, after checking, I still have no access to the svn repository of this project.

Thus, did I do something wrong or is this project lost somewhere in the wxCode website ?

Thanks in advance,

Brice André

------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
wxCode-users mailing list
wxCode-users@...
https://lists.sourceforge.net/lists/listinfo/wxcode-users
Brice André | 7 Feb 12:52
Picon

Release of wxEMail 1.0 (Beta)

Dear all,

I just released a new version of the wxEMail component. It's the first release of this component since it was renamed from wxSMTP.

The major changes are :
   - support of the POP-3 protocol (client side)
   - support of SSL protocol (if open-ssl is properly installed on the client machine)
   - interface consolidation
   - several bugs correction
   - now, I have a fully functionnal bakefile environment and so, generated makefiles should be OK on all platforms

Do not hesitate to contact me if you have troubles with this new version of the lib.

Regards,
Brice André

------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
wxCode-users mailing list
wxCode-users@...
https://lists.sourceforge.net/lists/listinfo/wxcode-users
SourceForge.net | 11 Jan 18:16
Picon

[ wxcode-Bugs-3472472 ] handling long unbroken strings in WriteXml

Bugs item #3472472, was opened at 2012-01-11 09:16
Message generated for change (Tracker Item Submitted) made by ewsavage
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=462816&aid=3472472&group_id=51305

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: wxpdfdoc
Group: last released version
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Eric W Savage (ewsavage)
Assigned to: Nobody/Anonymous (nobody)
Summary: handling long unbroken strings in WriteXml 

Initial Comment:
When passing a long unbroken string within a tag to WriteXml the text is broken into multiple line before it
needs to be. This is most easily seen within a "td" tag, where the text is output with a single character per line.

wxpdfdoc version: 0.9.2.1
code used to generate issue: xmlwrite.cpp (based on xmlwrite.cpp in samples/minimal)

output PDFs and possible resolution will be attached 

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=462816&aid=3472472&group_id=51305

------------------------------------------------------------------------------
Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex
infrastructure or vast IT resources to deliver seamless, secure access to
virtual desktops. With this all-in-one solution, easily deploy virtual 
desktops for less than the cost of PCs and save 60% on VDI infrastructure 
costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox
Nuklear Zelph | 7 Jan 13:45
Picon

XSTC has a new home

It now lives on this project space:

http://sourceforge.net/projects/nztexteditor/

There has been a new release the info is on the project blog page.

http://sourceforge.net/p/nztexteditor/blog/2012/01/xstc-release/

also there is an announcement on the wxForum, "announcements and discoveries" forum.

Nuklear

------------------------------------------------------------------------------
Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex
infrastructure or vast IT resources to deliver seamless, secure access to
virtual desktops. With this all-in-one solution, easily deploy virtual 
desktops for less than the cost of PCs and save 60% on VDI infrastructure 
costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox
_______________________________________________
wxCode-users mailing list
wxCode-users@...
https://lists.sourceforge.net/lists/listinfo/wxcode-users
SourceForge.net | 3 Jan 12:09
Picon

[ wxcode-Bugs-3468903 ] "wxmemdbg" issue

Bugs item #3468903, was opened at 2012-01-03 03:09
Message generated for change (Tracker Item Submitted) made by 
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=462816&aid=3468903&group_id=51305

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: Yes
Submitted By: https://www.google.com/accounts ()
Assigned to: Nobody/Anonymous (nobody)
Summary: "wxmemdbg" issue

Initial Comment:
"wxmemdbg" couldn't indicate memory leaks at which line when it is console application:

Hello,

I know this is not support forum for wxWidgets but I am using to catch
memory leaks with "wxmemdbg.h" header file at specified this address 
"http://wxcode.svn.sourceforge.net/viewvc/wxcode/trunk/wxCode/components/wxpdfdoc/src/wxmemdbg.h?revision=1026&view=markup"

At this XML example:

http://docs.wxwidgets.org/stable/wx_wxxmldocument.html

wxXmlDocument doc;
if (!doc.Load(wxT("myfile.xml")))
    return false;

// start processing the XML file
if (doc.GetRoot()->GetName() != wxT("myroot-node"))
    return false;

wxXmlNode *child = doc.GetRoot()->GetChildren();
while (child) {

    if (child->GetName() == wxT("tag1")) {

        // process text enclosed by <tag1></tag1>
        wxString content = child->GetNodeContent();

        ...

        // process properties of <tag1>
        wxString propvalue1 = 
            child->GetPropVal(wxT("prop1"), 
                              wxT("default-value"));
        wxString propvalue2 = 
            child->GetPropVal(wxT("prop2"), 
                              wxT("default-value"));

        ...

    } else if (child->GetName() == wxT("tag2")) {

        // process tag2 ...
    }

    child = child->GetNext();
}

There was a memory leak but "wxmemdbg.h" header file doesn't indicate the exact line where
memory leak occurs.

I've written the project as a console application but I realize that "wxmemdbg.h" header
file catchs the memory leaks but it doesn't indicate which line the leak occurs. Is it not
feature of "wxmemdbg.h" header file to not indicate where the memory leaks occurs at which line
when it is console application?

Could you please assist for this issue?

Thanks in Advance.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=462816&aid=3468903&group_id=51305

------------------------------------------------------------------------------
Write once. Port to many.
Get the SDK and tools to simplify cross-platform app development. Create 
new or port existing apps to sell to consumers worldwide. Explore the 
Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join
http://p.sf.net/sfu/intel-appdev
SourceForge.net | 18 Nov 01:23
Picon

[ wxcode-Feature Requests-3439647 ] FFabavxqzPO

Feature Requests item #3439647, was opened at 2011-11-17 16:23
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=462819&aid=3439647&group_id=51305

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Mailing list
Group: CVS HEAD
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: FFabavxqzPO

Initial Comment:
SjpiQi  <a href="http://rqgosaxzsohr.com/">rqgosaxzsohr</a>,
[url=http://xfsazwjqclej.com/]xfsazwjqclej[/url],
[link=http://efgjuijpzuyh.com/]efgjuijpzuyh[/link], http://dgpctqxypnej.com/

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=462819&aid=3439647&group_id=51305

------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
SourceForge.net | 13 Nov 19:11
Picon

[ wxcode-Bugs-3437410 ] QimIoGLpKTfN

Bugs item #3437410, was opened at 2011-11-13 10:11
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=462816&aid=3437410&group_id=51305

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: wxpdfdoc
Group: last released version
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: QimIoGLpKTfN

Initial Comment:
Fk5abc  <a href="http://ixluzlbqregd.com/">ixluzlbqregd</a>,
[url=http://xskxhwasqvuw.com/]xskxhwasqvuw[/url],
[link=http://ghkufvcquecg.com/]ghkufvcquecg[/link], http://ohpowrhfgecl.com/

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=462816&aid=3437410&group_id=51305

------------------------------------------------------------------------------
RSA(R) Conference 2012
Save $700 by Nov 18
Register now
http://p.sf.net/sfu/rsa-sfdev2dev1
SourceForge.net | 8 Nov 18:16
Picon

http://pgoebwbfgsjf.com/">pgoebwbfgsjf</a>,

Feature Requests item #3435039, was opened at 2011-11-08 09:16
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=462819&aid=3435039&group_id=51305

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Any component
Group: last released version
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: QvYbod  <a href="http://pgoebwbfgsjf.com/">pgoebwbfgsjf</a>,

Initial Comment:
QvYbod  <a href="http://pgoebwbfgsjf.com/">pgoebwbfgsjf</a>,
[url=http://vhzgaieaemzc.com/]vhzgaieaemzc[/url],
[link=http://eshytgzghjqk.com/]eshytgzghjqk[/link], http://cjgnovpenrhh.com/

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=462819&aid=3435039&group_id=51305

------------------------------------------------------------------------------
RSA(R) Conference 2012
Save $700 by Nov 18
Register now
http://p.sf.net/sfu/rsa-sfdev2dev1
SourceForge.net | 7 Nov 15:45
Picon

[ wxcode-Feature Requests-3434525 ] YWQTVnDMvDMgfaq

Feature Requests item #3434525, was opened at 2011-11-07 06:45
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=462819&aid=3434525&group_id=51305

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Mailing list
Group: CVS HEAD
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: YWQTVnDMvDMgfaq

Initial Comment:
80RgdN  <a href="http://exkadlhoxfzr.com/">exkadlhoxfzr</a>,
[url=http://jbakqyjpxxed.com/]jbakqyjpxxed[/url],
[link=http://cfdxgzrntinj.com/]cfdxgzrntinj[/link], http://evzrpkptgxol.com/

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=462819&aid=3434525&group_id=51305

------------------------------------------------------------------------------
RSA(R) Conference 2012
Save $700 by Nov 18
Register now
http://p.sf.net/sfu/rsa-sfdev2dev1
Ulrich Telle | 2 Nov 18:01
Picon
Picon
Gravatar

Issues with wxFreeChart

Hi,

recently I started to use the wxCode component wxFreeChart due to 
requirements of one of my projects to display x-y-charts for series of 
curves.

I have several issues in using wxFreeChart and I hope someone might be 
able to give some advice.

1) I was able to compile wxFreeChart as a static library but when I try 
to compile it as a DLL (which is necessary for my project) I get tons of
warning messages from Visual C++ 2008/2010 like the following:

wxCode\components\freechart\include\wx/drawobject.h(46) : warning C4251:
'Observable<O>::OIt': class 'std::_Vector_iterator<_Ty,_Alloc>' needs to
have a DLL interface to be used by clients of class 'Observable<O>'
         with
         [
             O=DrawObserver
         ]
         and
         [
             _Ty=DrawObserver *,
             _Alloc=std::allocator<DrawObserver *>
         ]
         and
         [
             O=DrawObserver
         ]

Although these are "only" warnings and the resulting demo application
seems to work (except the dynamic X-Y sample which crashes) I would like
to get rid of those warnings since I fear there might be situations 
where not resolving this might impose problems.

2) At least in the VC++ project files coming with wxFreeChart there are
some missing pieces: one has to add the AUI link library for the 
component itself and the ADV link library for the sample application. 
Additionally it seems not to be possible to generate a static library 
for wxFreeChart based on wxWidgets DLLs (although this option can be 
selected from the build configurations it doesn't work)

3) I plan to produce charts by wxFreeChart and to add them to PDF 
reports generated based on my own wxCode component wxPdfDocument. In 
principle I got it to work using my wxPdfDC class but I have problems to 
display smooth curves. If I use too few data points I see edges in the 
curve, if I use too many data points I see a very jagged curve. I think 
this is a problem with all wxDC based classes since they are pixel 
oriented. Nevertheless it might be possible to get smoother curves by 
using splines instead of simple lines to connect the data points. How 
could I accomplish this? Should I create a new XYRenderer?

4) I need to create a X-Y chart with 2 different y-axes where one axis
shows the values in degree Celsius and the other in degree Fahrenheit. 
The problem is that I get crooked values for the axis annotation. For 
example if I have an axis for Celsius with a range from 20 to 35 degrees 
I get good annotations for the Celsius axis (namely 20, 25, 30, 35) but 
for the Fahrenheit axis I get 68, 77, 86, 95, but I would like to get 
shifted ticks and annotations (i.e. ticks marked with 70, 80 and 90). Is 
this possible somehow? Or would I have to create a specialized axis 
class for that purpose?

5) Are there plans to create a version of wxFreeChart based on
wxGraphicsContext instead of wxDC? For vector oriented output devices 
this would be probably a lot better. I myself plan to implement a
wxPdfGraphicsContext.

Regards,

Ulrich

------------------------------------------------------------------------------
RSA&#174; Conference 2012
Save $700 by Nov 18
Register now&#33;
http://p.sf.net/sfu/rsa-sfdev2dev1
SourceForge.net | 1 Nov 20:32
Picon

[ wxcode-Feature Requests-3432016 ] scrolling for wxtreelistctrl

Feature Requests item #3432016, was opened at 2011-11-01 19:32
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=462819&aid=3432016&group_id=51305

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Any component
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: scrolling for wxtreelistctrl

Initial Comment:
it may be a good idea to allow automatic scrolling like  windows explorer, where dragging an object abovethe
top or under the bottom of the visible part of a tree will trigger scrolling as long as the cursor does not
come back in the tree window. 

it may help, that using scrollto may work. the only small flaw is with this method, the dragged item is
initialized in onbeingdrag amd the same variable will be saved over and over as long as its out of the
window. the flaw is whenever the cursor enter the window again, onbeingdrag gets called again, thus
reinitializing the item again. 
This can be seen when trying to drag an item from the top to all the way to the bottom and enter the window and go
to the top. whats going to happen is after re etnering the item will jump straight to the top. 

Thank you

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=462819&aid=3432016&group_id=51305

------------------------------------------------------------------------------
RSA&#174; Conference 2012
Save $700 by Nov 18
Register now&#33;
http://p.sf.net/sfu/rsa-sfdev2dev1

Gmane