Search found 53 matches

by liqi98136
Mon Aug 15, 2011 10:15 am
Forum: 欢迎使用中文讨论
Topic: 中文测试版出来了,请大家提意见和测试.
Replies: 7
Views: 35851

中文测试版出来了,请大家提意见和测试.

中文测试版出来了,请大家提意见和测试. 使用git.ecere.com网站上ecere_sdk,日期为2011.8.12下载的版本. 翻译后的文件在translatechinese.rar, 只有改动过的文件,没改动的文件没包括在内. 解压后替换你从网站上下载的源文件,然后编译,就可以得到简体中文版了. dowload this translatechinese.rar, unrar and replace the git.ecere.com ecere_sdk date 2011.8.12 source code then make. then you get the chinese ece...
by liqi98136
Sat Aug 13, 2011 9:20 pm
Forum: 欢迎使用中文讨论
Topic: 翻译ide.ec没有成功,ecere source translated but failed
Replies: 2
Views: 14455

翻译ide.ec没有成功,ecere source translated but failed

我原本已经翻译为中文的了,可是编译后,程序打不开
ecere 只剩下ide.ec,没有成功
源文件在https://github.com/ecere/sdk
原本已经翻译为中文的了,可是编译后,程序打不开,其他的文件都已经翻译完成了,在原来的ECERE 0.44pre10-09版翻译,参考:麦克饼
by liqi98136
Mon Jul 25, 2011 10:36 pm
Forum: 欢迎使用中文讨论
Topic: 官方的MinGW与Ecere提供的有什么差别?
Replies: 1
Views: 12573

官方的MinGW与Ecere提供的有什么差别?

官方的MinGW与Ecere提供的有什么差别?What is the difference between official MinGW with Ecere's
我所知道的是GL库,i18n库和UPX.exe,因为我正在试着用官方的MinGW编译ecere_sdk源码。
I do know is that GL library, i18n and UPX.exe, because I was trying to use the official MinGW compiler ecere_sdk source.
by liqi98136
Thu Mar 11, 2010 1:36 am
Forum: 欢迎使用中文讨论
Topic: 三角锥和圆柱Triangular cone and cylinder
Replies: 0
Views: 10137

三角锥和圆柱Triangular cone and cylinder

//Cone圆锥 import "ecere" class cone : Object { private int numLon; numLon=50; public: bool Create(DisplaySystem displaySystem) { bool result = false; if(this) { InitializeMesh(displaySystem); if(mesh) { if(mesh.Allocate({ vertices = true, normals = true }, numLon*2, displaySystem)) { Vecto...
by liqi98136
Wed Mar 10, 2010 9:35 am
Forum: 欢迎使用中文讨论
Topic: 统计字符StatisticsCharacter
Replies: 1
Views: 11462

统计字符StatisticsCharacter

import "ecere" class Form1 : Window { text = "Form1"; background = activeBorder; borderStyle = fixed; hasMinimize = true; hasClose = true; size = { 576, 432 }; anchor = { horz = -3, vert = -12 }; Button button1 { label1, this, "统计", position = { 24, 336 }; bool NotifyC...
by liqi98136
Wed Mar 10, 2010 9:28 am
Forum: 欢迎使用中文讨论
Topic: 声音播放soundplay
Replies: 1
Views: 12111

声音播放soundplay

import "ecere"

#include "ec_for_win32.h"
#include "mmsystem.h"

class Test :Application
{
void Main()
{
PlaySound("DOG.wav", null, null/*SND_FILENAME | SND_ASYNC*/);
system("pause");
}
}
by liqi98136
Wed Mar 10, 2010 9:24 am
Forum: 欢迎使用中文讨论
Topic: filecopy文件拷贝
Replies: 1
Views: 11360

filecopy文件拷贝

import "ecere" class FiletoFile : Application { void Main() { File f1 = FileOpen(argv[1],read); File f2 = FileOpen(argv[2],write); char ch; if(f1) { f1.Get(ch); while(ch) { f2.Putc(ch); f1.Get(ch); } }else { printf("open file failed\n"); } delete f2; delete f1; } }
by liqi98136
Wed Mar 10, 2010 9:22 am
Forum: 欢迎使用中文讨论
Topic: fileReadandWrite文件读写
Replies: 0
Views: 9753

fileReadandWrite文件读写

import "ecere" extern scanf(); struct Stu { char name[10]; int num; int age; char addr[15]; }; class TestFileApp : Application { void Main() { int i; Stu boya[2]; Stu boyb[2]; Stu * pp=boya; Stu * qq=boyb; File f=FileOpen("stu_list", writeRead); if(f) { printf("\ninput data...
by liqi98136
Wed Mar 10, 2010 9:19 am
Forum: 欢迎使用中文讨论
Topic: 选举先进selectTop
Replies: 0
Views: 9844

选举先进selectTop

import "ecere" class MyDlg : Window { text = "选举先进"; background = activeBorder; borderStyle = fixed; hasClose = true; size = { 360, 280 }; autoCreate = false; int s1,s2,s3,s4; Button button2 { this, text = "确认投票", position = { 248, 168 }; bool NotifyClicked(Button butt...
by liqi98136
Wed Mar 10, 2010 9:04 am
Forum: 欢迎使用中文讨论
Topic: changebackcolor改变背景颜色
Replies: 0
Views: 9798

changebackcolor改变背景颜色

import "ecere" class Form1 : Window { text = "改变背景颜色"; background = activeBorder; borderStyle = sizable; hasMaximize = true; hasMinimize = true; hasClose = true; size = { 400, 288 }; anchor = { horz = -83, vert = -39 }; Button button8 { this, text = "还原", position = { ...