Search found 15 matches

by madhan
Thu Jan 18, 2007 3:24 pm
Forum: Announcements and Discoveries
Topic: ANN: wxSQLite3 1.7.1 released
Replies: 16
Views: 7630

:oops: Sorry, that I provided so few details. But good you reproduced it and released 1.7.1 so quickly. Thanks! Just for future reference: - Win XP, VS 2005 Express - Using Unicode Multilib Debug / Unicode Multilib Release - Using String Key with ascii characters I downloaded 1.7.1 and ran a quick t...
by madhan
Wed Jan 17, 2007 11:09 pm
Forum: Announcements and Discoveries
Topic: ANN: wxSQLite3 1.7.1 released
Replies: 16
Views: 7630

Crash when rekeying db

wxSqlite3 is very cool and I use it for my app. I am testing the new version and found that I got a crash if I tried converting a db that had no encryption to a db with encryption. I reproduced this with minimal sample. I opened the a new db with no database. After running all tests, I ran ReKey and...
by madhan
Mon Jan 01, 2007 1:09 pm
Forum: C++ Development
Topic: AddCatalogLookupPathPrefix behaviour broken in 2.8.0
Replies: 0
Views: 349

AddCatalogLookupPathPrefix behaviour broken in 2.8.0

Hi, I recently migrated my application to 2.8.0 from 2.6.3 and noticed that none of my translation files were being loaded in 2.8.0. Digging further, I noticed that the search path was not adding the unadorned path prefix to the catalog search paths. i.e. if I passed a "folder" to the path...
by madhan
Wed Apr 19, 2006 11:48 am
Forum: Announcements and Discoveries
Topic: Money Manager Ex 0.5.0.0 (Alpha) Released
Replies: 9
Views: 3018

Didn't know that metalogic.
Too bad we have two versions of this software.

Btw, do you have OFX import? If yes, do you have any tips??
by madhan
Mon Apr 17, 2006 2:40 pm
Forum: Announcements and Discoveries
Topic: Money Manager Ex 0.5.0.0 (Alpha) Released
Replies: 9
Views: 3018

You are fast! :-)

Well, I made the commit to CVS yesterday night and because anonymous CVS lags developer CVS access I think it is stale.

But I appreciate the feedback and the issues will be fixed.
by madhan
Mon Apr 17, 2006 11:21 am
Forum: Announcements and Discoveries
Topic: Money Manager Ex 0.5.0.0 (Alpha) Released
Replies: 9
Views: 3018

Yes of course. See anonymous CVS browser
http://cvs.sourceforge.net/viewcvs.py/m ... x/#dirlist
by madhan
Mon Apr 17, 2006 2:45 am
Forum: Announcements and Discoveries
Topic: Money Manager Ex 0.5.0.0 (Alpha) Released
Replies: 9
Views: 3018

Money Manager Ex 0.5.0.0 (Alpha) Released

Money Manager Ex is a free, easy-to-use personal finance software. It primarily helps organize one's finances and keeps track of where, when and how your money is utilized. The program supports checking accounts, savings and credit card accounts, as well as Portfolio accounts. The Outlook-style inte...
by madhan
Wed Feb 15, 2006 5:28 am
Forum: C++ Development
Topic: SetAlign() API when using Virtual List Control Style
Replies: 1
Views: 727

Found the solution. For future reference; This is no different on a list ctrl with LC_VIRTUAL style. Add the column header and then set alignment for the column and itis done. wxListItem itemCol; itemCol.SetImage(-1); itemCol.SetAlign(wxLIST_FORMAT_RIGHT); itemCol.SetText(_("Colum Heading 4 &qu...
by madhan
Wed Feb 15, 2006 3:17 am
Forum: C++ Development
Topic: SetAlign() API when using Virtual List Control Style
Replies: 1
Views: 727

SetAlign() API when using Virtual List Control Style

I created a list control running in wxLC_VIRTUAL style mode. My question is how do I set the alignment of the data for one column to be other than default. I see the API SetAlign(wxLIST_FORMAT_RIGHT) for example that is used with non wxLC_VIRTUAL styles, but how does this work for virtual list contr...
by madhan
Fri Dec 30, 2005 7:20 pm
Forum: C++ Development
Topic: when UDP in wxWidgets?
Replies: 7
Views: 2311

UDP works fine in wxWidgets, I have used it quite a bit with sucess.
Try using it.
by madhan
Fri Dec 30, 2005 7:18 pm
Forum: C++ Development
Topic: To put a frame in front of the others?
Replies: 2
Views: 900

Do something like:

Iconize(false);
Show(true);
Raise(); <--- Brings the window as the topmost window
by madhan
Fri Dec 30, 2005 5:47 pm
Forum: C++ Development
Topic: VC express problem
Replies: 7
Views: 2203

In case someone has the same problem

I ran into the same issue. I was using VC Express 8.0. I finally solved the problem and got the XP theme by doing the following. 1) Created my own app.rc file with the following contents. #include "wx/msw/wx.rc" (Make sure the include paths point to the right directories) 2) Add the .rc fi...
by madhan
Wed Jun 01, 2005 2:22 am
Forum: C++ Development
Topic: How to store custom row item information in listctrl
Replies: 1
Views: 791

How to store custom row item information in listctrl

I have been unable to figure this out from the docs. I am trying to display several rows in a list control. The issue is that when a user selects a particular row I cannot determine by the value of the row's data itself what the data item is precisely. The reason is that there could be several rows ...
by madhan
Mon May 30, 2005 2:12 pm
Forum: C++ Development
Topic: Dynamic Panels have incorrect size unless window is resized
Replies: 2
Views: 964

Thanks!

upCASE,

Thanks so much! That was it.

Just for the record, I added

Code: Select all


// create panel dynamically...
...

// call layout to make it the right size
    mainPanel->Layout();

by madhan
Mon May 30, 2005 1:22 pm
Forum: C++ Development
Topic: Dynamic Panels have incorrect size unless window is resized
Replies: 2
Views: 964

Dynamic Panels have incorrect size unless window is resized

I am quite new to wxWidgets so I am sure I am missing something basic here. In my application, in a main panel, depending upon user events I create different panels (with different controls) on the fly and then add the newly created panel to the main panel. This works fine, except that the created p...