Search found 8 matches

by hsalas
Fri Dec 09, 2011 5:23 pm
Forum: C++ Development
Topic: wxMemoryBuffer binary content doesn't match XP vs Win7
Replies: 2
Views: 736

Re: wxMemoryBuffer binary content doesn't match XP vs Win7

Sorry, last message was broken. This is the right code: #define BUFFER_SIZE 50 unsigned char* mBuffer; bool AES128RIPEMD128::Save(wxMemoryBuffer& buffer) { bool res = true; try{ this->Encrypt(); buffer.SetBufSize(BUFFER_SIZE + 1); buffer.AppendData(reinterpret_cast<void*>(mBuffer), BUFFER_SIZE +...
by hsalas
Fri Dec 09, 2011 4:27 pm
Forum: C++ Development
Topic: wxMemoryBuffer binary content doesn't match XP vs Win7
Replies: 2
Views: 736

wxMemoryBuffer binary content doesn't match XP vs Win7

Hi, friends. I have some lines of code where I use the wxMemoryBuffer class. #define BUFFER_SIZE 50 unsigned char* mBuffer; bool AES128RIPEMD128::Save(wxMemoryBuffer& buffer) { bool res = true; try{ this->Encrypt(); buffer.SetBufSize(BUFFER_SIZE + 1); buffer.AppendData(reinterpret_cast<void*>(mB...
by hsalas
Tue Dec 06, 2011 11:28 pm
Forum: C++ Development
Topic: wxRibbonBar disable button error
Replies: 4
Views: 1155

Re: wxRibbonBar disable button error

Ok. I Think I'll wait until then. I'm developing my app yet.

Thank you very much.
by hsalas
Tue Dec 06, 2011 11:18 pm
Forum: C++ Development
Topic: wxRibbonBar disable button error
Replies: 4
Views: 1155

Re: wxRibbonBar disable button error

Thanks for your reply. Is there a fix patch in newer version? I'm using wxWidgets 2.9.1 on Win7.
by hsalas
Tue Dec 06, 2011 10:05 pm
Forum: C++ Development
Topic: wxRibbonBar disable button error
Replies: 4
Views: 1155

wxRibbonBar disable button error

Hi, friends. I think there is an error in the code of wxRibbonButtonBar::EnableButton(). I have this code: evt.GetBar()->EnableButton(evt.GetId(), false); wxLogWarning("Usted ha ejecutado el número máximo de instancias para el comando %s.", mUserPriv[idx]->GetNombre()); My App RibbonButton...
by hsalas
Tue Mar 30, 2010 10:58 pm
Forum: wxCode
Topic: Newbie wxSqlite3 question
Replies: 4
Views: 1887

Thank you very much. All is clear now.

Best regards :D
by hsalas
Tue Mar 30, 2010 6:41 pm
Forum: wxCode
Topic: Newbie wxSqlite3 question
Replies: 4
Views: 1887

Thank you very much Ulrich. I figured out that way.

On the other hand, I had to set wxUSE_DYNAMIC_SQLITE3_LOAD to 1 for a success complilation. The "readme" file does not mention, at least not what I saw.

One more question: ¿wxSqulite3 encrypting database process is on the fly?
by hsalas
Mon Mar 29, 2010 11:56 pm
Forum: wxCode
Topic: Newbie wxSqlite3 question
Replies: 4
Views: 1887

Newbie wxSqlite3 question

Hi, friends. I've downloaded wxSqlite3 and compiled with VC++ 2008 EE successfully (DLL Unicode Release Mulitlib DLL Win 32). However I need encryption features on it. I read the 'readme' file, but I'm confused with the instructions. ¿How can I compile wxSqlite3 with encryption capabilities, from VC...