Search found 35 matches

by vsp
Sat Oct 10, 2009 10:15 am
Forum: C++ Development
Topic: how to read data from MySQL table...
Replies: 7
Views: 2324

I have downloaded and built wxMySql. It seems to be good and works fine.

Thanks.
by vsp
Sat Oct 10, 2009 10:13 am
Forum: C++ Development
Topic: wx with postgresql integration
Replies: 0
Views: 553

wx with postgresql integration

I personally liked wxMySql and its direct integration with mysql. Any such integration effort made with postgresql ?

Thanks.

Regards,
Venkat.
by vsp
Fri Feb 27, 2009 8:03 am
Forum: wxCode
Topic: databaselayer build
Replies: 2
Views: 1408

databaselayer build

I am getting the error "Cannot open include file: 'mysql.h'"

Anyone can provide me link where I can download the required library and header files.

Thanks.
by vsp
Tue Feb 03, 2009 11:24 am
Forum: C++ Development
Topic: Events logging and playback
Replies: 2
Views: 1138

Events logging and playback

EVT_COMMAND_RANGE ( 10001 , 10020, wxEVT_COMMAND_BUTTON_CLICKED , MainFrame::OnClick ) wxPanel* MainFrame::BuildEventPanel() { wxPanel *panel = new wxPanel ( this , wxID_ANY ); wxBoxSizer *buttonSizer1 = new wxBoxSizer ( wxHORIZONTAL ); wxButton *bn1 = new wxButton ( panel , 10001 , wxT("Butto...
by vsp
Fri Nov 21, 2008 12:13 pm
Forum: C++ Development
Topic: obtaining MAC address?
Replies: 7
Views: 4423

Its working fine for me I have used the code project code directly in windows. int main(int argc, char **argv){ wxApp::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE, "program"); wxInitializer initializer; if ( !initializer ) { fprintf(stderr, "Failed to initialize the wxWidgets library...
by vsp
Wed Nov 12, 2008 3:59 am
Forum: C++ Development
Topic: i want to create a database with widgets form so can any one
Replies: 1
Views: 616

You can use dao alternatively.

You can find dao from

http://www.koansoftware.com/it/prd_svi ... nload.htm
by vsp
Wed Nov 12, 2008 3:56 am
Forum: C++ Development
Topic: how to extract words ?
Replies: 5
Views: 1842

you should use wxStringTokenizer to tokenize the strings based on your choice of delimiter.

Code: Select all

wxStringTokenizer tkz(wxT("first:second:third:fourth"), wxT(":"));
while ( tkz.HasMoreTokens() )
{
    wxString token = tkz.GetNextToken();

    // process token here
}
by vsp
Mon Nov 10, 2008 1:13 pm
Forum: C++ Development
Topic: Trapping Print Screen Key
Replies: 1
Views: 746

scan the WXK_PRINT key code in your OnKey or OnChar function and you can modify as per your requirement.
by vsp
Fri Nov 07, 2008 10:51 am
Forum: General Development
Topic: gui testing tool
Replies: 2
Views: 1293

I have found the following tools provide some level of features but I am not sure how they will work. http://people.redhat.com/zcerza/dogtail/ http://www.gnu.org/software/dejagnu/ A complete list is available here. Please let me know, if any one has already used. http://www.opensourcetesting.org/fun...
by vsp
Fri Nov 07, 2008 9:11 am
Forum: General Development
Topic: gui testing tool
Replies: 2
Views: 1293

gui testing tool

Can any one suggest or used open source GUI testing tools for windows and wxwidgets apps.

Thanks.
VSP
by vsp
Fri Nov 07, 2008 6:19 am
Forum: C++ Development
Topic: MinimizeButton() in wxAuiPaneInfo doesn't work?
Replies: 6
Views: 1796

For me also minimize does not work.

There is a function call Minimize ( true ). But it does not seem to be working.
by vsp
Wed Nov 05, 2008 6:21 am
Forum: General Development
Topic: What flow of programming and tools do you use?
Replies: 41
Views: 75014

My list goes here :

IDE: VS2005 in windows and eclipse in unix platforms
Dialogs: Hand coded
Makefile: gmake
Version Control: Subversion & CVS
Documentation: Doxygen
Unit test : Not using right now. Manual testing
Installer: Inno
Distribution: Sourceforge
by vsp
Wed Nov 05, 2008 5:54 am
Forum: General Development
Topic: Notebook tabs, very hard.
Replies: 6
Views: 1942

I am using wxAUI libs extensively. Its good in terms of look and feel. If you want I can help you out.
by vsp
Tue Nov 04, 2008 7:09 am
Forum: C++ Development
Topic: Getting installed font directory
Replies: 7
Views: 2320

You can alternatively try with
wxString sysFontDir = ::wxOSGetDirectory();
sysFontDir.Append ("\\fonts");
Should work fine.
by vsp
Tue Nov 04, 2008 6:41 am
Forum: C++ Development
Topic: Quick delete question
Replies: 6
Views: 2107

This is a general c++ question.

This will not work
delete [] cages2;
delete cagenums;
How ever this should work fine
for(int i=0; i<cagestotal; i++)
{
delete cages2;
}



If it crashes, you are messing up with pointers.