北京招DELPHI程序员2名,税后 5000,3年经验(200分)

  • 主题发起人 主题发起人 woodstock
  • 开始时间 开始时间
W

woodstock

Unregistered / Unconfirmed
GUEST, unregistred user!
我们的要求:
1、在北京工作,全职
2、delphi 开发 3 年以上
3、熟悉网络编程,对IdTCPClient等组件有一定的使用经验
4、熟悉数据库编程,有中型数据库开发项目经历
5、人品好,易沟通
我们能提供的:
1、优秀的团队、良好的人文工作氛围
2、三险(公积金暂无,因为公司刚刚成立),无提供住房
3、月薪税后5k左右,看实际能力定
4、工作环境:北三环四通桥友谊宾馆的写字楼(周围环境很好)
本招聘有效期:至2006年12月10日。
有意者请将简历发送到woodstock@263.net,并且在
1、主题写明:应聘delphi程序员
2、附件中附带您最近写的一些代码,大概2k-3k行即可。
或者加我qq:697336
 
正在写一个XML编辑器,用的是Delphi7的RichEdit和TreeView控件,有好多问题难以解决,比如说:
·语法高亮
·自动格式化
·结点定位
哪位高手能回答我下面的几个问题:
1、回车换行的时候,自动缩进和上一行对齐。怎样实现?
2、当点击结点树(TreeView)的时候,RichEdit光标自动定位到相应的结点。怎样实现?
3、在编辑文本的时候,怎么实时的保持语法着色?
或者谁有RichEdit的文档,希望给我一份。delphi的帮助实在是太少了!RichEdit单元定义的那些消息都不知道是干什么的!
http://www.delphibbs.com/delphibbs/dispq.asp?lid=3633759
解决了就来面试吧!
 
我现在北京
 
我用 DELPHI + indy + 自定义数据包 开发中小型应用已经3年,服务端使用 ACCESS 或 SQL Server 2000 皆可。
想去北京工作,但在北京不能找到住房。
 
.......晕,我倒是能够解决.不过我目前税后不止5000.
需要外包,可以找我,我保证不泄露代码,呵呵
 
library adodll;
{ Important note about DLL memory management: ShareMem must be the
first unit in your library's USES clause AND your project's (select
Project-View Source) USES clause if your DLL exports any procedures or
functions that pass strings as parameters or function results. This
applies to all strings passed to and from your DLL--even those that
are nested in records and classes. ShareMem is the interface unit to
the BORLNDMM.DLL shared memory manager, which must be deployed along
with your DLL. To avoid using BORLNDMM.DLL, pass string information
using PChar or ShortString parameters. }
uses
Windows,
Messages,
SysUtils,
Variants,
Classes,
Graphics,
Controls,
Forms,
Dialogs,
IniFiles,
StdCtrls,
ComCtrls,
DB,
ADODB,
ExtCtrls;
type
TADOC = class(TAdoconnection)
private
{ Private declarations }
public
{ Public declarations }
end;
var
ADOC:TADOC;
{$R *.res}
procedure FADOCFREE()stdcall;
begin
adoc.Free;
end;
procedure FADOC(CCMESSAGE,CFMESSAGE,sServer, sDBLogin, sLoginPass, sDBName: String;LoginPrompt,KeepConnection:boolean;ConnectionTimeout:integer) stdcall;
var
ConnPerfix, ConnAftFix: String;
begin
begin
if sDBName='' then
SDBName:='Master';
if sDBLogin<>'' then
begin
//如果使用SQL SERVER验证
ConnPerfix := 'Provider=SQLOLEDB.1;Password='+sLoginPass+';Persist Security Info=false;User ID='+sDBLogin+';Initial Catalog=';
ConnAftFix := ';Data Source='+sServer;//这一段为True则保存密码
end else
begin
//如果使用NT验证
ConnPerfix := 'Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=';
ConnAftFix := ';Data Source='+sServer;//
end;

end;
ADOC:=TADOC.Create(application);
ADOC.LoginPrompt:=LoginPrompt;
ADOC.KeepConnection := KeepConnection;
ADOC.ConnectionTimeout := ConnectionTimeout;
ADOC.ConnectionString:=ConnPerfix+sDbName+ConnAftfix;
try
ADOC.Connected:=True;
showmessage('CCMESSAGE')
except
showmessage('CFMESSAGE')
end;

end;

exports
FADOC, FADOCFREE;
begin
end.
 
帮忙顶!!!!!!
 
IdTCPClient
我对它只是一点点了解,用它写了一个程序,想让它入内网TCP进行p2p,没有解决。后来写了服务器中转的方案,后来也没有用起来。因为发现IDUdpClient在检验方面可以满足视频流的要求,就没有再用了。
 
曾,你自己开公司吗?
 
5K?在北京的待遇算怎么样的?
 
看来我还能这个能力,呵呵
 
简历已发,请查收!
japhe@126.com,谢谢!
 
没有经验
qq121820506
 

Similar threads

D
回复
0
查看
1K
DelphiTeacher的专栏
D
D
回复
0
查看
2K
DelphiTeacher的专栏
D
D
回复
0
查看
2K
DelphiTeacher的专栏
D
后退
顶部