Name Price Description Standard Edition with Single License $75 for single developer use, without source code . Professional Edition with Single License $149 for single developer use, with source code Professional Edition with 4 Licenses $299 for 4 developers use, with source code Professional Edition with 8 Licenses $499 for 8 developers use, with source code Professional Edition with Site Licenses $899 for company use, with source code.
我准备买一套Professional Edition with Single License,有谁一起来集资? 联系我:FireRoseSoft@Msn.com
procedure TForm1.btn1Click(Sender: TObject); //破解后的2.6版不能够动态改变窗体的caption,下面是补充解决办法 var P: Pchar; begin P := Pointer(TMySkinManage(SkinManager).FindSkinForm(Handle)); if P = nil then exit; P := P+104; //D5的话请将104改为88,未经测试 Pstring(P)^ := '好'; Caption := '好'; ////////////////////////////////////////////// end;
我装[控件包] VclSkin v2.60 For D567 含105个皮肤 (破解修正版) 后使用时出现: [Fatal Error] File not found: 'f:\窗体皮肤\vclskin2.6版本\d5\WinSkinStore.pas' [Pascal Error] Unit1.pas(1): Unable to invoke Code Completion due to errors in source code 有哪位高手帮帮我
function changlecaption(text:string;Handle:THandle):string; var P: Pchar; begin P := Pointer(TMySkinManage(SkinManager).FindSkinForm(Handle)); if P = nil then exit; P := P+104; //D5的话请将104改为88,未经测试 Pstring(P)^ := text; Result := text; end;