Search found 16 matches

by venkat_sp
Thu Sep 24, 2009 1:28 pm
Forum: C++ Development
Topic: very small HTTP-Server
Replies: 4
Views: 2123

try this link if it helps http://wiki.wxwidgets.org/WxHTTP
by venkat_sp
Thu Apr 30, 2009 5:48 am
Forum: Open Discussion
Topic: wx for java binding
Replies: 2
Views: 2108

I have been working on wxwidgets for very long time. The reasons of not using swing could be 1. No native support 2. The design of swing event handling is not the clean. 3. The layouts are not that sophisticated. How ever, I think I need to work on swing as it is matured over the years. I am just cu...
by venkat_sp
Wed Apr 29, 2009 2:36 pm
Forum: Open Discussion
Topic: wx for java binding
Replies: 2
Views: 2108

wx for java binding

Hi,

Anyone has any idea which will be the decent wx for java binding.

I have seen jwx and wx4j. I am not sure there is any development and maintenance is happening.

If any one has any earlier knowledge please provide me the details.

Thanks.
by venkat_sp
Wed Mar 04, 2009 7:32 am
Forum: Open Discussion
Topic: Is there any good email client library in wxwidgets
Replies: 1
Views: 1781

Is there any good email client library in wxwidgets

Hi,

I need to develop a email client program. Is there any SMTP/POP3/IMAP email component library in wxwidgets. If not any one can help me in suggesting me a good library.

Thanks.
by venkat_sp
Fri Feb 27, 2009 1:17 pm
Forum: wxCode
Topic: databaselayer build
Replies: 2
Views: 1413

Thanks. It works fine.
by venkat_sp
Fri Feb 27, 2009 6:43 am
Forum: Open Discussion
Topic: comparing two databases
Replies: 2
Views: 1867

Thanks for your reply.

Well I can do that.

But I cannot do a simple member by member compare as I need to handle it very large data sets as this approach is going to take a very long time.
by venkat_sp
Thu Feb 26, 2009 10:56 am
Forum: Open Discussion
Topic: comparing two databases
Replies: 2
Views: 1867

comparing two databases

I am using wxODBC for getting data from two different data sources. I want to compare the incoming/fetched data for similarity.Can I get some help.

Any one has any idea how the database compare tool in general works.

My sincere apology, if this is not the right forum to discuss this.

Thanks.
by venkat_sp
Mon Feb 23, 2009 9:59 am
Forum: C++ Development
Topic: How to get higher priority for an application
Replies: 3
Views: 1277

You can use GetCurrentProcess() which will return the handle.
by venkat_sp
Tue Feb 17, 2009 10:18 am
Forum: Open Discussion
Topic: The end of desktop applications?
Replies: 16
Views: 11678

Here is a nice post

http://venkat-sp.blogspot.com/
by venkat_sp
Tue Feb 17, 2009 10:18 am
Forum: Open Discussion
Topic: The end of desktop applications?
Replies: 16
Views: 11678

Here is a nice post

http://venkat-sp.blogspot.com/
by venkat_sp
Thu Feb 05, 2009 8:46 am
Forum: C++ Development
Topic: Events logging and playback
Replies: 2
Views: 1153

Thanks. Its working
by venkat_sp
Wed Oct 22, 2008 7:19 am
Forum: C++ Development
Topic: writing to xml file using wxXML
Replies: 4
Views: 1819

I have modified the code for getting the required output and its working fine. wxXmlDocument XmlDoc; wxXmlNode * XmlDept = new wxXmlNode(wxXML_ELEMENT_NODE ,wxT("Dept")); wxXmlNode * XmlDeptName = new wxXmlNode(wxXML_ELEMENT_NODE ,wxT("dept_name"),wxT("dept_name") ); wx...
by venkat_sp
Wed Oct 22, 2008 6:59 am
Forum: C++ Development
Topic: writing to xml file using wxXML
Replies: 4
Views: 1819

Thanks for your code. However, after executing your code I got the following output.

"<?xml version="1.0" encoding="utf-8"?>
<Dept><dept_name/><dept_head/><dept_strength/><dept_info/></Dept>"
by venkat_sp
Tue Oct 21, 2008 2:09 pm
Forum: C++ Development
Topic: writing to xml file using wxXML
Replies: 4
Views: 1819

writing to xml file using wxXML

Hi I have a class for example say the following class dept { public: ... ... private: std::string dept_name; std::string dept_head; std::string dept_strength; }; std::vector<dept> deptVec; I need to write the deptVec details to an xml file. Any one can help me in providing how to write the dept deta...
by venkat_sp
Fri Sep 19, 2008 5:44 am
Forum: C++ Development
Topic: event handling issue
Replies: 3
Views: 940

The Onkey event is in frame ------------------------------ void MyFrame::OnKey ( wxKeyEvent& evt ){ wxMessageBox ("event !!!"); } The OnKey event in in panel --------------------------------- void MyPanel::OnKey ( wxKeyEvent& evt ){ wxMessageBox ("event !!!"); } The filte...