Search found 212 matches
- Thu Sep 08, 2022 10:35 pm
- Forum: IDE
- Topic: Help for github most recent update version compile failed
- Replies: 6
- Views: 122677
Re: Help for github most recent update version compile failed
TDM5.1 & 10.6 both produced the error regarding HTTPFile.c,all the others are warnings ,not errors. Last night I tried libera.chat but failed to found the entry to register,will try again later. May I ask do you have a portable ecere sdk binary zip package for Windows(10)?If TDM5.1(together with...
- Thu Sep 08, 2022 9:17 pm
- Forum: IDE
- Topic: Help for github most recent update version compile failed
- Replies: 6
- Views: 122677
Re: Help for github most recent update version compile failed
Installing openssl in c:\program files\ won't work,it seems my gcc does not accept path string with blank,so I uninstalled and reinstalled in c:\ and now it passed this part. With TDM5.1 I got this: <code> E:\Learning\ecereJuly282022>mingw32-make clean Error: bindings/c/eC_c.Makefile not found! Erro...
- Thu Sep 08, 2022 4:39 am
- Forum: IDE
- Topic: Help for github most recent update version compile failed
- Replies: 6
- Views: 122677
Re: Help for github most recent update version compile failed
Thanks for the prompt reply,Jerome! I think the only git application is in msys2,but I did not set path in the system environment.As I mentioned below,I tried to build in IDE with TDM5.1,but failed with below : ... StringsBox.c DynamicString.ec ..\extras\types\DynamicString.ec:32:4: warning: incompa...
- Thu Sep 08, 2022 3:57 am
- Forum: IDE
- Topic: Help for github most recent update version compile failed
- Replies: 6
- Views: 122677
Help for github most recent update version compile failed
How are you,Jerome!!! Recently I tried to update my ecere sdk to the most recent update verion on github(Last updated in this July) to see whether there is some newly added documents/samples/features,esp. document I need very much because I am not a professional IT ,nor major in computer science.I j...
- Sat Aug 02, 2014 12:05 am
- Forum: General Help
- Topic: How to fix the issue after DirectX's taken out?
- Replies: 2
- Views: 45671
How to fix the issue after DirectX's taken out?
When I built from the latest source from github as usual,make clean then make,the compiler complained the driectx d8x8.h missed.How to fix this issue ?
Thanks.
Thanks.
- Thu Jul 17, 2014 9:27 pm
- Forum: General Help
- Topic: EDA (Sqlite3) in console app
- Replies: 8
- Views: 74484
Re: EDA (Sqlite3) in console app
Thanks Jerome. Here I tried to create eda_table,and made a copy of world.db3 and changed its extension to *.sqite(world.sqlite).it runs ,but no record printed in the consoole.It seems that just ran "system("pause") . Please help to figure me out where the problem is(I think there is s...
- Tue Jul 15, 2014 3:11 am
- Forum: System Library
- Topic: Utilities to manipulate Compressed Files
- Replies: 1
- Views: 122895
Utilities to manipulate Compressed Files
Greetings,
Would like to know whether any utils over there to read/write zip/7z/rar format files?
Thanks for the help in advance.
Would like to know whether any utils over there to read/write zip/7z/rar format files?
Thanks for the help in advance.
- Sun Jul 13, 2014 9:34 pm
- Forum: General Help
- Topic: EDA (Sqlite3) in console app
- Replies: 8
- Views: 74484
Re: EDA (Sqlite3) in console app
Sorry I should have provided the db file to you for your closer look at.
Here attached world.db3.
Thanks again.
Here attached world.db3.
Thanks again.
- Sun Jul 13, 2014 8:51 pm
- Forum: General Help
- Topic: EDA (Sqlite3) in console app
- Replies: 8
- Views: 74484
Re: EDA (Sqlite3) in console app
Below compiled but just crashed when running,sqlite3.dll and world.db3 are ready: import "EDA" import "ecere" class App:Application { void Main() { DataSource ds{driver="SQLite"}; Database db=ds.OpenDatabase("world.db3",no); Table tbl=db.OpenTable(&quo...
- Mon Jul 07, 2014 11:25 pm
- Forum: General Help
- Topic: EDA (Sqlite3) in console app
- Replies: 8
- Views: 74484
EDA (Sqlite3) in console app
Greetings! I tried to make use of EDA and make a simple program in console mode under windows,but I can't continue to the next step after this below.Simply put,I want to read and modify and write back some record from a sqlite3 database.How to make it under consoles?In the slider file under samples/...