招漳州地区Delphi程序员。(0分)

  • 主题发起人 LinLinLin
  • 开始时间
L

LinLinLin

Unregistered / Unconfirmed
GUEST, unregistred user!
程序员(delphi)
招聘人数:若干名
要求性别:不限 年 龄:20--35岁 要求专业: 不限 全职
学历要求: 外语语种:不限 无 闽南语水平:不限
工作经验: 有工作经验优先  工作待遇:2000元/月
工作时间:8:00-12:00 14:00-18:00
工作地区: 福建漳州市
要 求:
1.具备两年程序员工作经验
2.熟悉使用delphi,sql server2000进行数据库编程。
望有志之士加入我们的团队。
有意者请用发个人简历至(tang-cogi@163.net)
电话:0596-2238105
 
麻烦楼主,
改一下好不。
要不这样的话,我们毕业生就没得饭吃了。
再说如果别人工作了二年,你去那么一点工资会来不
 
TO:Jerrey
如果你有能力可以破例的。
你认为自己符合这点吗
熟悉使用delphi,sql server2000进行数据库编程
请发个人简历至(tang-cogi@163.net)
 
呵呵!!
漳州消费不低呀
楼主,行行好,多加几两银子吧!!呵呵
 
请大家先看看上面的要求,说明自己的工作能力,再来说工作待遇问题好吗。
谢谢合作!
请发个人简历至(tang-cogi@163.net)
 
请楼主介绍一下贵公司吧.
 
江南软件中心简介​
  江南软件中心正式成立于2002年,江南软件中心是一家知识密集、技术密集,专业致力于企业信息软件开发的高科技公司。
  江南软件中心主要致力于中小型企业经营管理软件产品的设计开发,以及相关理论的探索。自成立以来,一直致力于适合于各个行业实情的管理软件系统的研制和开发,及系统的建设和集成。我们不断采用先进的技术和管理,经过数年的努力,开发而成了符合企业实情又具有全新管理思路的企业信息管理软件。江南软件誓与客户结成忠实的伙伴关系,为客户提供最实在、最先进的信息管理系统。
  我们的宗旨是让更多的人用上适用、易上手、价廉的软件产品。
 
终于有漳洲出来招聘了。楼主怎么样我是漳洲角美的。工作经验1.5年。现在厦门软件公司。代码给你一段怎么样。毕业至今一直从事软件开发行业。下面是我自已设计的一个框架。下面是一个类。所有的操作都继承这个类。
procedure tpublic.MOVE(adodataset:TCUSTOMADOdataset;spfirst,spprior,spnext,splast:tspeedbutton);
begin
if adodataset.State=dsinactive then
//断开连接时
begin
spfirst.Enabled:=false;//
spprior.Enabled:=false;//
spnext.Enabled:=false;//
splast.Enabled:=false;//
end
else
if adodataset.bof then
begin
spfirst.Enabled:=false;//最前
spprior.Enabled:=false;//向前
spnext.Enabled:=true;//向后
splast.Enabled:=true;//最后
end
else
if adodataset.eof then
begin
spfirst.Enabled:=true;//
spprior.Enabled:=true;//
spnext.Enabled:=false;//
splast.Enabled:=false;//
end
else
begin
spfirst.Enabled:=true;//
spprior.Enabled:=true;//
spnext.Enabled:=true;
splast.Enabled:=true;
end;
end;
procedure tpublic.OPERATIONstate(adodataset:TCUSTOMADOdataset;spedit,spcopy,spinsert,spdelete,spsave,spcancel,spprint,spexcell,spquery:tspeedbutton);
begin
if adodataset.State=dsinactive then
//断开连接时
begin
spedit.Enabled:=false;
spcopy.Enabled:=false;
spinsert.Enabled:=false;
spdelete.Enabled :=false;
spsave.Enabled :=false;
spcancel.Enabled :=false;
spprint.Enabled :=false;
SPEXCELL.Enabled :=FALSE;
spquery.Enabled :=false;
end
else
if adodataset.State=dsedit then
//编辑状态时
begin
spedit.Enabled:=false;
SPPRINT.Enabled :=false;
//打印的状态跟编辑状态一致
SPEXCELL.Enabled :=FALSE;
spquery.Enabled :=false;
spsave.Enabled :=true;
spcancel.Enabled:=true;
end
else
if adodataset.State=dsinsert then
//插入状态时
begin
spedit.Enabled:=false;
//插入状态时不允许编辑
spprint.Enabled:=false;
SPEXCELL.Enabled:=FALSE;
spquery.Enabled :=false;
spsave.Enabled :=true;
spcancel.Enabled :=true;
end
else
if adodataset.RecordCount=0 then
//必须放在浏览状态前,因为初始化时
begin
//默认都要进”STATE”这过程中,
spedit.Enabled :=true;
// 如果不使用该选择的话,当记录RECORDCOUNT=0时
spprint.Enabled :=false;
spexcell.Enabled:=false;
//SPDELETE按钮的ENABLED:=TRUE;删除便出错。
spquery.Enabled:=false;
spdelete.Enabled:=false;
SPCOPY.Enabled :=FALSE;
spsave.Enabled :=false;
spcancel.Enabled :=false;
end
else
if adodataset.State=dsbrowse then
//浏览状态时
begin
spedit.Enabled:=true;
spcopy.Enabled :=true;
spinsert.Enabled :=true;
spdelete.Enabled :=true;
spsave.Enabled :=false;
spcancel.Enabled:=false;
spprint.Enabled :=true;
spexcell.Enabled:=true;
spquery.Enabled :=true;
end;
end;

procedure tpublic.saveAsExcel(DBGRID:TDBGRID;adodataset:TCUSTOMADOdataset);
var
fieldNum: integer;
i,j : integer;
exls,sheet: variant;
begin
try
exls:=createoleobject('Excel.application');
sheet:=createoleobject('excel.sheet');
except
application.MessageBox('请先安装MICROSOFT EXCEL!','提示',mb_ok+mb_iconinformation);
exit;
end;
sheet:=exls.workBooks.add;
with ADODATASETdo
begin
DisableControls;
fieldNum := dbgrid.fieldCount;
for i:=1 to fieldNumdo
begin
exls.Cells[1,i].value:=dbgrid.Columns[i-1].Title.Caption;
//exls.Cells[1,i].value:=Fields[i-1].FieldName;
end;
first;
i:=2;
while not eofdo
begin
for j:=1 to fieldNumdo
begin
exls.Cells[i,j]:=fields[j-1].AsString;
end;
next;
i:=i+1;
end;
EnableControls;
exls.visible:=true;
end;
end;

 
可能这要出差半个月或一个。我的MAIL是:hzjone@eyou.com
 
上面是DELPHI。下面是SQL SERVER 2000。是用双层游标实现。
drop table #table
select 客户ID,cast(联系号码 as varchar(1000)) as 联系号码
into #table from 客户联系方式 where 1<>1
declare @aa int,@bb varchar(1000),@cc int
declare @@c varchar(1000)
declare aacc cursor for select distinct 客户ID from 客户联系方式
open aacc
fetch next from aacc into @cc
while @@fetch_status=0
begin

declare aabb cursor for select 联系号码
from 客户联系方式 as b
where b.联系方式='电话' and b.客户ID=@cc
open aabb
set @@c=''
fetch next from aabb into @bb
while @@fetch_status=0
begin
set @@c=@@c+';'+@bb
fetch next from aabb into @bb
end
set @@c=replace(@@c,' ','')
if @@c <> ''
set @@c=right(@@c,len(@@c)-1)
close aabb
deallocate aabb
insert into #table(客户ID,联系号码) values(@cc,@@c)
fetch next from aacc into @cc
end
close aacc
deallocate aacc
if object_id('tempdb..#table1') is not null
drop table #table1
select 客户ID,cast(联系号码 as varchar(1000)) as 联系号码
into #table1 from 客户联系方式 where 1<>1
declare aacc cursor for select distinct 客户ID from 客户联系方式
open aacc
fetch next from aacc into @cc
while @@fetch_status=0
begin

declare aabb cursor for select 联系号码
from 客户联系方式 as b
where b.联系方式='传真' and b.客户ID=@cc
open aabb
set @@c=''
fetch next from aabb into @bb
while @@fetch_status=0
begin
set @@c=@@c+';'+@bb
fetch next from aabb into @bb
end
set @@c=replace(@@c,' ','')
if @@c <> ''
set @@c=right(@@c,len(@@c)-1)
close aabb
deallocate aabb
insert into #table1(客户ID,联系号码) values(@cc,@@c)
fetch next from aacc into @cc
end
close aacc
deallocate aacc
select ta.客户ID,tb.联系号码 as 电话,tc.联系号码 as 传真
from (select distinct 客户ID from 客户联系方式) as ta
left join #table as tb on ta.客户ID=tb.客户ID
left join #table1 as tc on ta.客户ID=tc.客户ID
 
TO:hzjone
如你对我们也有意的话,请发个人简历至tang-cogi@163.net,
如有其他问题也可一起提出,谢谢关注。
 
出来不久,刚三个月~现在在泉州一间软件公司,目前就是用Delphi开发企业管理软件,不知道对我这种刚出来不久的可有兴趣?
 
TO:eek:hyeah
请你先看看最上面的用人要求,
请发个人简历至tang-cogi@163.net
说明一下自己的能力。
 
三十五岁以上要不要.
 
TO:ximyma
请先说明自己的工作能力,什么时候从事软件开发的,你是漳州本地的吗?
请发个人简历至tang-cogi@163.net
 
简历已发,请查收。
 
我要4000给不给呀
 
TO:goddy
像阁下这样的高级人才,应该找间规模较大的公司才是。
祝你工作顺利!
 
望有志之士加入我们的团队,共同成就辉煌。
 
只是我六月份还要回学校。。。唉,如果现在走的话,我想贵公司应该不会要我这样的吧,所以可能还是先呆在这边,不知道你们公司六月份以后还招不招人呢
 

Similar threads

D
回复
0
查看
1K
DelphiTeacher的专栏
D
D
回复
0
查看
750
DelphiTeacher的专栏
D
D
回复
0
查看
1K
DelphiTeacher的专栏
D
S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
顶部