Search found 1125 matches

by utelle
Fri Mar 06, 2009 10:46 am
Forum: wxCode
Topic: wxSQLite build error in MSVC2005 'needs to have dll-inte...'
Replies: 6
Views: 2143

Sometimes we use wxWidgets but not all the time. The idea was to get one single DLL, independent from other libraries, which we could always use. For non-wxWidgets application it really doesn't make much sense to use a wxWidgets based SQLite wrapper. You wouldn't be able to use many of the features...
by utelle
Thu Mar 05, 2009 1:58 pm
Forum: wxCode
Topic: wxSQLite build error in MSVC2005 'needs to have dll-inte...'
Replies: 6
Views: 2143

Yes these options will work, but it will not generate a DLL of wxSQLite. Do you know why it is not possible to generate a wxSQLite DLL which doesn't need any other DLL's. If I compile wxWidgets as DLL then the wxSQLite DLL also needs the wxWidgets DLL. Have you tried one of the following configurat...
by utelle
Thu Mar 05, 2009 10:57 am
Forum: wxCode
Topic: wxSQLite build error in MSVC2005 'needs to have dll-inte...'
Replies: 6
Views: 2143

Re: wxSQLite build error in MSVC2005 'needs to have dll-inte

Dear All, When compiling wxSQLite with 'static ANSI debug multib DLL ' in MSVC2005 I get the following error: The part marked in red is the answer to your question: you selected a build not matching your build of wxWidgets. My wxWidgets is compiled with the wx.dsw in MSVC2005 as a static library (w...
by utelle
Sat Feb 28, 2009 4:01 pm
Forum: Announcements and Discoveries
Topic: ANN: wxSQLite3 1.9.5 released
Replies: 0
Views: 914

ANN: wxSQLite3 1.9.5 released

Version 1.9.5 of wxSQLite3 has been released. It supports version 3.6.11 of SQLite . What's new in this release: Besides the upgrade to SQLite 3.6.11 support for the SQLite backup/restore API, introduced with SQLite 3.6.11, has been added. A user defined function class supporting SQLite's REGEXP ope...
by utelle
Fri Feb 27, 2009 8:32 pm
Forum: C++ Development
Topic: Non English characters and sqlite
Replies: 2
Views: 932

Re: Non English characters and sqlite

My project has the following settings: 1. Character set : [Use Unicode Character Set] 2. Runtime Library : [Multi-threaded Debug DLL (/MDd)] Here is the code for a new record: wxString szCommand; . sqlite3_exec(m_db, (const char *)szCommand.char_str(), NULL, NULL, NULL); SQLite assumes that strings...
by utelle
Wed Feb 25, 2009 2:12 pm
Forum: C++ Development
Topic: Help on wxPdfdocument and html
Replies: 2
Views: 817

Re: Help on wxPdfdocument and html

Please provide me some suggestions on displaying the html file which also has images in it on pdf.I need the same layout as a html file displayed in htmlwindow. I used Totext()(wxhtmlwindow) function to write the text in pdf but images in htmlfile cannot be included by this way. Currently wxPdfDocu...
by utelle
Tue Feb 24, 2009 7:57 pm
Forum: Announcements and Discoveries
Topic: ANN: wxSQLite3 1.9.4 released
Replies: 9
Views: 2535

i haven't done a real-life test of the backup/restore functionality yet. Essentially I took the code for methods Backup and Restore from the SQLite shell program, so I hope it will work under most circumstances. But regexp works just fine. Currently the REGEXP operator class caches the last regular...
by utelle
Sun Feb 22, 2009 10:31 am
Forum: Announcements and Discoveries
Topic: ANN: wxSQLite3 1.9.4 released
Replies: 9
Views: 2535

Re: Feature wish

A new version of wxSQLite3 supporting backup and restore (using the online backup API introduced by SQLite 3.6.11) and providing a user defined function class for the REGEXP operator is now available in the wxCode SVN repository . Depending on the comments I get an official release will follow later...
by utelle
Fri Feb 20, 2009 9:53 pm
Forum: Announcements and Discoveries
Topic: ANN: wxSQLite3 1.9.4 released
Replies: 9
Views: 2535

Re: Feature wish

a) implementation of sqlite REGEXP operator No big deal if a user defined function based on wxWidgets and incorporated into wxSQLite3 itself is sufficient. [...] that would be totally sufficient for me Ok, I'm going to implement it for the next version of wxSQLite3. Would it be sufficient to provid...
by utelle
Fri Feb 20, 2009 8:27 am
Forum: Announcements and Discoveries
Topic: ANN: wxSQLite3 1.9.4 released
Replies: 9
Views: 2535

Re: Feature wish

I'd like to make two feature requests. Maybe you could consider those for future versions: a) implementation of sqlite REGEXP operator No big deal if a user defined function based on wxWidgets and incorporated into wxSQLite3 itself is sufficient. BUT such an implementation would not be available in...
by utelle
Sun Feb 08, 2009 3:33 pm
Forum: C++ Development
Topic: wxpdfdocument Cell
Replies: 1
Views: 822

Re: wxpdfdocument Cell

How to print text within cell width?.The problem is if I print text using wxpdfdocument cell it is overflowing than the cell width. ------------------------------ hi this is wxpdfdocument cell comman ------------------------------ Similar to the diagram the text gets overflowed. This happens if the...
by utelle
Sat Jan 24, 2009 12:23 pm
Forum: wxCode
Topic: errors in SVN version of wxsqlite against SVN wxwidgets
Replies: 3
Views: 2401

I'm not sure I would abandon wxchar just yet. Type casting seems to be working just fine for me so far. If this really works for both, version 2.8.9 and SVN of wxWidgets in any build, it's certainly an option. I updated my SVN today. I see that someone added (const wxChar*) to the lines. Except the...
by utelle
Fri Jan 23, 2009 3:27 pm
Forum: wxCode
Topic: change of wxSqlite headerfiles from v1.7.1 causes errors.
Replies: 1
Views: 2080

Re: change of wxSqlite headerfiles from v1.7.1 causes errors

I'm trying to use wxSqlite. Until the version 1.6.0 I can compile my own program with the wxSqlite headers without any errors. But from version 1.7.1 I cannot compile my own program with the wxSqlite headers without getting the errors. I think it is because they inserted the buffer.h but I cannot f...
by utelle
Fri Jan 23, 2009 9:35 am
Forum: wxCode
Topic: errors in SVN version of wxsqlite against SVN wxwidgets
Replies: 3
Views: 2401

Re: errors in SVN version of wxsqlite against SVN wxwidgets

I was wondering if anyone else got these 26 errors? error: cannot convert ‘const char*’ to ‘const wxChar*’ in initialization it occurs in every line in this code section: const wxChar* wxERRMSG_NODB = wxTRANSLATE("No Database opened"); const wxChar* wxERRMSG_NOSTMT = wxTRANSLATE("Sta...
by utelle
Thu Jan 15, 2009 9:10 pm
Forum: Announcements and Discoveries
Topic: ANN: wxSQLite3 1.9.4 released
Replies: 9
Views: 2535

ANN: wxSQLite3 1.9.4 released

Version 1.9.4 of wxSQLite3 has been released. It supports version 3.6.10 of SQLite . The component is compatible with wxWidgets version 2.8.9. What's new in this release: Besides the upgrade to SQLite 3.6.10 support for savepoints, introduced with SQLite 3.6.8, has been added. A method IsOk has been...