Search found 58 matches

by manteez
Wed Feb 25, 2009 5:03 am
Forum: C++ Development
Topic: Acquiring image no UI in wxIA
Replies: 0
Views: 562

Acquiring image no UI in wxIA

hello all wx-users, I've tried wxIA and have succesfully run the iatest application. In this application, there is a menu "Acquiring image (no ui)" but when I choose it, there is still a scanner properties window appears. I can't scan directly without UI from my scanner (I use avision). Th...
by manteez
Wed Feb 18, 2009 3:39 am
Forum: Announcements and Discoveries
Topic: CodeLite IDE v1.0RC02
Replies: 13
Views: 9974

looks great...keep working on it.

Can't wait to try it. :D
by manteez
Wed Feb 18, 2009 3:23 am
Forum: Announcements and Discoveries
Topic: ANN: FacePresence - A face recognition software
Replies: 0
Views: 1180

ANN: FacePresence - A face recognition software

Hello everybody, I would like to tell you that we develop our face recognition software using WxWidget. It is called FacePresence. what is a FacePresence? FacePresence is a software to check the presence of employee using face recognition technology. Please check our youtube http://www.youtube.com/w...
by manteez
Wed Feb 04, 2009 4:40 am
Forum: C++ Development
Topic: draw transparent image over another image
Replies: 12
Views: 3609

draw transparent image over another image

Hello everybody, I want to have a transparent image over another image in my application. I've painted my frame with an image. I have a panel inside it and I paint it with my transparency image (a rectangle with opacity value 54, I created it with inkscape) But this is what I got http://i16.photobuc...
by manteez
Mon Feb 02, 2009 7:02 am
Forum: C++ Development
Topic: databaselayer ODBC "invalid precision value" error
Replies: 21
Views: 8471

wow...great. I can't wait to try the latest version. :)
by manteez
Mon Feb 02, 2009 6:55 am
Forum: C++ Development
Topic: wxPropertyGrid
Replies: 3
Views: 1254

yup, I used wxPropertyGrid and seemed no problem with it..it worked great.
by manteez
Wed Jan 28, 2009 5:14 am
Forum: C++ Development
Topic: databaselayer ODBC "invalid precision value" error
Replies: 21
Views: 8471

Yeah, it worked. Thanks vtatarin

if anybody have same problem with me, here is file attachments after I changed it...

Just put these files in src directory and overwrite the old files.

And rebuild your odbc databaselayer library.


Thanks
by manteez
Mon Jan 26, 2009 11:07 pm
Forum: C++ Development
Topic: databaselayer ODBC "invalid precision value" error
Replies: 21
Views: 8471

vtararin wrote:You should put these codes in ODBCParameter.cpp of cause
I'll try it vtararin...

and I'll give the report of the result :o
by manteez
Thu Jan 22, 2009 3:48 pm
Forum: C++ Development
Topic: databaselayer ODBC "invalid precision value" error
Replies: 21
Views: 8471

vtararin wrote:

Code: Select all

SQLSMALLINT OdbcParameter::GetParameterType()
{
  switch (m_nParameterType)
  {

 ...... skiped .... 

    case OdbcParameter::PARAM_BLOB:
      nReturn = SQL_LONGVARBINARY; // was SQL_BINARY
      break;
Thanks for your answer.
but where should I put these codes?
by manteez
Thu Jan 22, 2009 9:50 am
Forum: wxCode
Topic: how to save image in database
Replies: 1
Views: 1463

hello hilda, I've never tried with Firebird but MySQL First you need databaselayer, you can get it here http://wxcode.sourceforge.net/components/databaselayer/ build the firebird library and integrate it with your application. Here is the snippet of code when I want to store blob into mysql....I use...
by manteez
Thu Jan 22, 2009 5:29 am
Forum: wxCode
Topic: Invalid Precision error ODBC databaselayer when Storing BLOB
Replies: 0
Views: 839

Invalid Precision error ODBC databaselayer when Storing BLOB

Hello, I think it is better to start new thread about this problem in the correct wxCode category. Based on previous thread in here http://forums.wxwidgets.org/viewtopic.php?t=19174 I still got same error even after I replaced the code. It happens when I want to store image in SQL Server/Microsoft A...
by manteez
Thu Jan 22, 2009 4:26 am
Forum: C++ Development
Topic: databaselayer ODBC "invalid precision value" error
Replies: 21
Views: 8471

I still got same problem after replacing this code. :( I used static ansi monolithic build. here is the code of odbcPreparedStatement after I've replaced it #include "../include/OdbcPreparedStatement.h" #include "../include/OdbcResultSet.h" #include "../include/OdbcDatabaseL...
by manteez
Thu Jan 22, 2009 4:03 am
Forum: wxCode
Topic: Hang after Delete Statement ODBC database layer
Replies: 3
Views: 2072

I got the problem solved...

It is caused of replacing original OdbcPreparedStatement with this source in this thread http://forums.wxwidgets.org/viewtopic.php?t=19174

After replacing back to original file, the problem went away.

Thanks
by manteez
Wed Jan 21, 2009 4:06 am
Forum: wxCode
Topic: Hang after Delete Statement ODBC database layer
Replies: 3
Views: 2072

how to unlock the database? I used SQL SERVER EXPRESS 2005. actually, I've almost figured out the problem. It was because of the compiler. When running on GCC, the query works well but not with Microsoft Compiler. With Microsoft Compiler, the data was deleted but my application wasn't able to exit. ...
by manteez
Thu Jan 15, 2009 7:47 am
Forum: wxCode
Topic: Hang after Delete Statement ODBC database layer
Replies: 3
Views: 2072

Hang after Delete Statement ODBC database layer

hello everybody, I have a problem with databaselayer ODBC connecting to SQL Server. After a SQL DELETE statement execution, the application is hang. (the INSERT statement is okay) Here is the snippet of codes (very simple SQL statement) wxString query = _("DELETE FROM employee WHERE name = ?&qu...