《PowerBuilder9.0进阶开发篇》(实例与技巧篇)配书光盘使用说明本光盘内容为本书所有实例的源代码。
如下:第1章窗口、控件与界面1.1类Outlook工具栏界面实现--Outlook1.2制作Splash窗口--Splash1.3制作美观的状态条--StatusBar1.4创建图标栏应用--Systray1.5MDI窗口显示背景图片--MDIBmp1.6窗口中控件显示ToolTips--ToolTips1.7打造不一样的命令按钮--PictureButton1.8透明文本的实现--TransparentST1.9导航图界面的制作--FlowChat1.10制作图文并茂的菜单--BmpMenu1.11窗口内控件大小与窗口大小同步--Autosize1.12动态创建控件--DynamicControl1.13控件融合技术--SplitBar第2章数据窗口2.1数据窗口PDF格式文档输出--PDF2.2数据窗口组合条件查询--Query2.3数据窗口通用排序--UniversalSort2.4数据窗口通用显示列定制窗口的实现--ColumnVisible2.5数据窗口中实现增量查询--zlcx2.6数据窗口的多表更新--UpdateMultable2.7单击标题栏对数据窗口排序--TitleSort2.8动态数据窗口--DynamicDataWindow2.9复合数据窗口--AddTitle2.10数据窗口打印处理--PrintPreview/PrintPreview3(PrintPreview和PrintPreview3内容是相同的,但在实现上有些区别)2.11数据窗口统计图类型的动态改变--GraphType2.12数据窗口统计图数值动态显示的实现--GraphValue2.13数据窗口中按钮的封装--DwButton第3章PowerScript3.2实现客户端程序的自动升级--CSUPgrade3.3进制转换--NumberConvert3.4注册表函数应用--Regedit3.5人民币大写转换函数--AmountUppder3.6在应用程序中关闭外部程序--CloseApp3.7在应用程序中启动控制面板项目--RunControl3.8非Tab分隔符文本文件导入数据窗口--ImportFile3.9编译后的程序带参数运行--CommandParm3.10取当月的最后一天函数--GetLastDay3.11限制同一程序多次运行--OnlyOnce本章所使用的资源文件--pic第4章数据库与SQL4.2PowerBuilder+ASA8的C/S编程--Client-Server4.4动态SQL及其应用--DynamicSQL4.5存取二进制大对象--Blob4.6PowerBuilder应用取服务器时间--GetServerTime4.7PowerBuilder扩展属性系统表及其应用--SystemTable4.8连接任意ODBC数据源--ODBCList4.9可定制参数的数据库连接--ServerSet第5章打印专题通用打印例子--Print第6章用户对象6.1.1创建定制的用户对象(创建弹压式按钮)--ToggleButton6.1.2创建标准的可视用户对象(扩展的数据窗口)--Datawindow6.1.3创建可视外部用户对象(状态条)--StatusBar6.2.2创建通用不可视用户对象(FTP应用)--Ftp第7章API7.2.1改变窗口的显示风格--ChangeWindow7.2.2使窗口的图片透明化--TransW
2023/9/8 15:20:35 10.12MB PB代码 进阶
1
spring中文帮助文档,CHM版,中文离线版,该版本为spring2.5,有点低,但是很全很全,适合新手,我上传的资源中有spring3.0的中文版,英文版,大家可以下载对照着看。
免费!目录:2.1.简介2.2.控制反转(IoC)容器2.2.1.新的bean作用域2.2.2.更简单的XML配置2.2.3.可扩展的XML编写2.2.4.Annotation(注解)驱动配置2.2.5.在classpath中自动搜索组件2.3.面向切面编程(AOP)2.3.1.更加简单的AOPXML配置2.3.2.对@AspectJ切面的支持2.3.3.对bean命名pointcut(beannamepointcutelement)的支持2.3.4.对AspectJ装载时织入(AspectJload-timeweaving)的支持2.4.中间层2.4.1.在XML里更为简单的声明性事务配置2.4.2.对Websphere事务管理的完整支持2.4.3.JPA2.4.4.异步的JMS2.4.5.JDBC2.5.Web层2.5.1.SpringMVC合理的默认值2.5.2.Portlet框架2.5.3.基于Annotation的控制器2.5.4.SpringMVC的表单标签库2.5.5.对Tiles2支持2.5.6.对JSF1.2支持2.5.7.JAX-WS支持2.6.其他2.6.1.动态语言支持2.6.2.增强的测试支持2.6.3.JMX支持2.6.4.将Spring应用程序上下文部署为JCAadapter2.6.5.计划任务2.6.6.对Java5(Tiger)支持2.7.移植到Spring2.52.7.1.改变2.8.更新的样例应用2.9.改进的文档I.核心技术3.IoC(控制反转)容器3.1.简介3.2.基本原理-容器和bean3.2.1.容器3.2.2.实例化容器3.2.3.多种bean3.2.4.使用容器3.3.依赖3.3.1.注入依赖3.3.2.依赖配置详解3.3.3.使用depends-on3.3.4.延迟初始化bean3.3.5.自动装配(autowire)协作者3.3.6.依赖检查3.3.7.方法注入3.4.Bean的作用域3.4.1.Singleton作用域3.4.2.Prototype作用域3.4.3.Singletonbeans和prototype-bean的依赖3.4.4.其他作用域3.4.5.自定义作用域3.5.定制bean特性3.5.1.生命周期回调3.5.2.了解自己3.6.bean定义的继承3.7.容器扩展点3.7.1.用BeanPostProcessor定制bean3.7.2.用BeanFactoryPostProcessor定制配置元数据3.7.3.使用FactoryBean定制实例化逻辑3.8.TheApplicationContext3.8.1.BeanFactory还是ApplicationContext?3.8.2.利用MessageSource实现国际化3.8.3.事件3.8.4.底层资源的访问3.8.5.ApplicationContext在WEB应用中的实例化3.9.粘合代码和可怕的singleton3.10.以J2EERAR文件的形式部署SpringApplicationContext3.11.基于注解(Annotation-based)的配置3.11.1.@Autowired3.11.2.基于注解的自动连接微调3.11.3.CustomAutowireConfigurer3.11.4.@Resource3.11.5.@PostConstruct与@PreDestroy3.12.对受管组件的Classpath扫描3.12.1.@Component和更多典型化注解3.12.2.自动检测组件3.12.3.使用过滤器自定义扫描3.12.4.自动检测组件的命名3.12.5.为自动检测的组件提供一个作用域3.12.6.用注解提供限定符元数据3.13.注册一个LoadTimeWeaver4.资源4.1.简介
1
序号成员变量意义或操作方法1进程名称ID进程的标识2优先数PRIORITY越大优先权越高,在运行期间可以被动态改变。
3到达时间ENTERTIME进程输入的时间4进程余下运行时间ALLTIME进程开始为全部时间,运行完毕ALLTIME=05已使用CPU时间USEDTIME每在CPU上运行1个时间片就加16连续运行时间RUNTIME进程就绪前已经连续运行RUNTIME个时间片7连续就绪时间READYTIME进程运行前已连续就绪READYTIME个时间片8进程状态STATE三个状态:READY、RUNNING、FINISHED9队列指针NEXT用来将PCB排成队列
2023/9/4 2:56:28 36KB 操作系统
1
DigitalSignalProcessingAComputerBasedApproach4thedtion作者Mitra。
全英文pdf版,留学生上课福音!
2023/8/15 21:11:45 32.82MB Digital Signal Processing 教材
1
TheFirstPractical,Hands-OnGuidetoEmbeddedSystemProgrammingforAndroidToday,embeddedsystemsprogrammingisamorevaluabledisciplinethanever,drivenbyfast-growing,newfieldssuchaswearabletechnologyandtheInternetofThings.Inthisconciseguide,RogerYeteachesalltheskillsyou’llneedtowritetheefficientembeddedcodenecessarytomaketomorrow’sAndroiddeviceswork.ThefirsttitleinAddison-Wesley’snewAndroid™DeepDiveseriesforintermediateandexpertAndroiddevelopers,EmbeddedProgrammingwithAndroid™drawsonRogerYe’sextensiveexperiencewithadvancedprojectsintelecommunicationsandmobiledevices.Stepbystep,heguidesyouthroughbuildingasystemwithallthekeycomponentsAndroidhardwaredevelopersmustdelivertomanufacturing.Bythetimeyou’redone,you’llhavethekeyprogramming,compiler,anddebuggingskillsyou’llneedforreal-worldprojects.First,Yeintroducestheessentialsofbare-metalprogramming:creatingassemblylanguagecodethatrunsdirectlyonhardware.Then,buildingonthisknowledge,heshowshowtouseCtocreatehardwareinterfacesforbootingaLinuxkernelwiththepopularU-Bootbootloader.Finally,hewalksyouthroughusingfilesystemimagestobootAndroidandlearningtobuildcustomizedROMstosupportanynewAndroiddevice.Throughout,Yeprovidesextensivedownloadablecodeyoucanrun,explore,andadapt.YouwillBuildacompletevirtualizedenvironmentforembeddeddevelopmentUnderstandtheworkflowofamodernembeddedsystemsprojectDevelopassemblyprograms,createbinaryimages,andloadandrunthemintheAndroidemulatorLearnwhatittakestobringupabootloaderandoperatingsystemMovefromassemblertoC,andexploreAndroid’sgoldfishhardwareinterfacesProgramserialports,interruptcontrollers,realtimeclocks,andNANDflashcontrollersIntegrateCruntimelibrariesSupportexceptionhandlingandtimingUseU-Boottobootthe
2023/8/4 3:34:10 31.5MB Embedded Android System
1
ThiscollectionofarticlesrecordsomeoftheexistingwisdomandpracticeonhowtoprogramwellinLua.Inwell-writtenarticlesthatgomuchbeyondthebriefinformalexchangeoftipsinthemailinglistorthewiki,theauthorssharetheirmasteryofallaspectsofLuaprogramming,elementaryandadvanced.Thearticlescoverawidespectrumofareasandapproaches,withauthorsfromboththeindustryandacademiaandtitlesaboutgameprogramming,programmingtechniques,embeddingandextending,algorithmsanddatastructures,anddesigntechniques.
2023/7/29 3:39:24 1.84MB Lua Programming Gems
1
TheNexusFrameworkforScalingScrum:ContinuouslyDeliveringanIntegratedProductwithMultipleScrumTeamsImproveandAccelerateSoftwareDeliveryforLarge,Distributed,ComplexProjectsTheNexusFrameworkisthesimplest,mosteffectiveapproachtoapplyingScrumatscaleacrossmultipleteams,sites,andtimezones.CreatedbyScrum.org—thepioneeringScrumtrainingandcertificationorganizationfoundedbyScrumco-creatorKenSchwaber—Nexusdrawsondecadesofexperiencetoaddresstheuniquechallengesteamsfaceincomingtogether,sharingwork,andmanagingandminimizingdependencies.TheNexus™FrameworkforScalingScrumisaconcisebookthatshowshowNexushelpsteamstodeliveracomplex,multi-platform,software-basedproductinshort,frequentcycles,withoutsacrificingconsistencyorquality,andwithoutaddingunnecessarycomplexityorstrayingfromScrum’scoreprinciples.Usinganextendedcasestudy,theauthorsillustratehowNexushelpsteamssolvecommonscalingchallengeslikereducingcross-teamdependencies,preservingteamself-organizationandtransparency,andensuringaccountability.Understandthechallengesofdeliveringworking,integratedproductincrementswithmultipleteams,andhowNexusaddressesthemFormaNexusaroundaneworexistingproductandlearnhowthatNexussetsgoalsandplansitsworkRunSprintswithinaNexus,providetransparencyintoprogress,conducteffectiveNexusSprintreviews,anduseNexusSprintRetrospectivestocontinuouslyimproveOvercomethedistributedteamcollaborationchallengesTableofContentsChapter1IntroductiontoScalingAgileChapter2IntroducingNexusChapter3FormingaNexusChapter4PlanninginNexusChapter5RunningaSprintinNexusChapter6EvolvingtheNexusChapter7TheNexusinEmergencyModeChapter8RetrospectiveontheNexusJourney
2023/7/21 22:27:04 4.06MB Nexus Framework Scaling Scrum
1
部分源程序如下://=================测速计数处理===================================voidtimer1()interrupt3{time1++;}//+++++++++++++++++测速转换处理+++++++++++++++++++++++voidint1()interrupt2{longkA=0;uchartemp;TR1=0;if(SP_bit==0){TR1=1;SP_bit=1;}else{kA=time1*65536+TH1*256+TL1;temp=2500000/kA;SP_out=temp;TH1=0x00;TL1=0x00;time1=0x00;TR1=0;SP_bit=0;}}//================PWM处理与数据采集处理函数===================voidPWM_generator()interrupt1using0{if(flag==1){a--;if(a==0){flag=0;if(K_B_bit==1)a=UK;elsea=SP_in;}else{OUT_PWM=0;}}if(flag==0){b--;if(b==0){flag=1;if(K_B_bit==1)b=0xff-UK;elseb=0xff-SP_in;}else{OUT_PWM=1;}}m++;if(m==20){m=0;n++;if(n==40){n=0;EK0=SP_in-SP_out;PI_bit=1;}}}
1
考试系统论文摘要随着计算机技术的普及和提高,计算机等级考试成为热门,等级考试的目的在于适应社会主义市场经济建设的需要,一方面是为了促进计算机知识的普及和计算机应用技术的推广,另一方面是为劳动力市场服务,即为劳动人员提供其计算机应用知识与能力的证实,为用人部门录用和考核工作人员提供一个统一、客观、公正的评价标准.该系统用于用户登录、参加等级考试以及治理员进行试题录入、修改、删除、成绩查询、治理用户的ASP应用程序。
它应该具有开放性、方便性和灵活性。
治理员不仅可以轻松地向题库添加、修改和查询试题,而且还可以自动新增考试等级并建立相应的数据;
它还答应用户根据自己的需求,选取考试等级。
考生进行有效的身份验证登录后,选择考试等级,并要求在规定的时间内进行答题,当达到规定的时间后,系统将自动予以提示。
一旦考生做完交卷后便能立即看到自己的考试成绩,并且其分数将被记入库中以供审核和查阅;
另外,还可完全由计算机自动灵活、随机的抽取试题库中的各类试题组成各种形式的试卷,其内容会随着库中试题的改变而改变,而且,不同的考生生成的试题是不同的。
系统选用的开发软件是ASP,后台数据库为ACCESS2000系统的开发用结构化设计思想。
本文介绍了考试系统的开发初衷和背景,系统的开发工具,结构化开发的具体步骤,其中包括实体-联系模型,数据流图,功能结构图等关键字:考试试卷自动系统ASPvbscriptaccessresponserequest,SummaryAlongwiththefastdevelopmentincomputertechnology,wehavegottenbigprogressinschoolscienceandinformationmanagement.Soitneedsequaldevelopmentineverypart.Theschoolwillbebuildinganinformationmanagementandeducationalplatfromhardwareandsoftwaretwosides.Idevelopedthissystemisinordertoreducetheteacherstesting,enhancethestudentssecrecy.Itcansavemorepeoplemoneyandtimethantraditionmethods.Thesystemisdedicatedtousersdownload,onlineexaminationandmanagersparticipateintheexaminationincluded,modify,delete,performanceenquiries,managementuserASPapplications.Itshouldbeopen,convenienceandflexibility.Managersnotonlytothedatabankcaneasilyadd,modifyandinquiryquestions,butalsocanautomaticallycreatenewexaminationgradingandthecorrespondingdata;Italsoallowsusersonthebasisoftheirownneeds,selectingexaminationgrades.Candidatesforeffectiveidentificationandrecorded,theselectionexaminationgrading,andrequestsinthetimeallowed,whenaprescribedtime,thesystemwillautomaticallybemade.Oncecandidateswillbeabletocompletehomeworkimmediatelyafterseeingtheirexaminationresultsandtheirscoreswillberecordedandputinstorage,forauditandinspection;Inaddition,thecomputercouldbecompletelyautomatedflexible,randomsamplesofthevarioustypesoftestquestionsfortheformationofvariousformsofpaper,itscontentwillchangewiththechangeintheexamination,but,differentcandidatesgeneratedquestionsaredifferent.Thes
2023/7/6 2:36:37 14KB asp在线考试系统
1
Terraform提供商外壳该插件用于包装外壳脚本,以使其成为成熟的地形资源。
请注意,这是Terraform运行时的后门。
您可以用它来做一些非常危险的事情,并且要确保自己不会遇到麻烦。
由于此提供程序与大多数其他提供程序完全不同,因此建议您至少在尝试使用此提供程序之前对Terraform的内部知识有所了解。
注意:许多人使用此提供程序来包装现有提供程序不支持的资源的API。
有关使用此提供程序管理Github回购资源的examples/github-repo,请参见examples/github-repo要求>=0.12.x>=1.12建立提供者克隆存储库输入存储库目录使用Goinstall命令构建提供程序:$goinstall添加依赖项该提供程序使用。
请参阅Go文档以获取有关使用Go模块的最新信息。
要将新的依赖项github.com/author/dependency添加到Terraform提供程序:gogetgithub.com/author/dependencygomodtidy然后将更改提交到go.mod
2023/6/30 23:45:05 51KB python shell json terraform
1
共 73 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡