分享
分销 收藏 举报 申诉 / 51
播放页_导航下方通栏广告

类型List Boxes and Combo BoxesLoop Structures.ppt

  • 上传人:pc****0
  • 文档编号:13355152
  • 上传时间:2026-03-06
  • 格式:PPT
  • 页数:51
  • 大小:286.50KB
  • 下载积分:10 金币
  • 播放页_非在线预览资源立即下载上方广告
    配套讲稿:

    如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。

    特殊限制:

    部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。

    关 键  词:
    List Boxes and Combo BoxesLoop Structures
    资源描述:
    ,*,Click to edit Master title style,Click to edit Master text styles,Second level,Third level,Fourth level,Fifth level,List Boxes and Combo Boxes,Loop StructuresPrinting,chapter,SEVEN,List Boxes&Combo Boxes,Display list of items,List pre-defined or built dynamically,List of items may be read from files or databases,List Boxes,vs,.Combo Boxes,Both have,automatic scroll bars,.,ListIndex,property-an index to each item,.,ListCount,property-a number for the length of list,.List property-the list item itself,Combo has,Style property-type of combo box,.Text property-can be an editable field,List box and associated properties,l l l l l l l l,Washington,Oregon,California,Alaska,Hawaii,lstStates,List PropertySelected Property,List(0)=WashingtonSelected(0)=False,List(1)=OregonSelected(1)=False,List(2)=CaliforniaSelected(2)=False,List(3)=AlaskaSelected(3)=False,List(4)=HawaiiSelected(4)=False,ListCount,Property=5,Washington,Oregon,California,Alaska,Hawaii,List box with two items selected,l l l l l l l l,lstStates,List PropertySelected Property,List(0)=WashingtonSelected(0)=True,List(1)=OregonSelected(1)=False,List(2)=CaliforniaSelected(2)=False,List(3)=AlaskaSelected(3)=False,List(4)=HawaiiSelected(4)=True,ListCount,Property=5,List Box:Multi-Select,0-None,One item only may be selected,1-Simple,Multiple items,Click toggles,Select,property,2-Extended,Multiple contiguous or non-contiguous selections,List Box:Properties,ListCount,ListIndex,MultiSelect,Text,Sorted,List(),Selected(),List Box:Methods,AddItem,lstBox,.,AddItem,text,Always add a string to list box since it contains text,RemoveItem,lstBox,.,RemoveItem,index,lstMembers,.,RemoveItem lstMembers,.,ListIndex,Clear,lstBox,.Clear,Combo Box,List box with associated text box,Text box for entering new values(Styles 0&1),List box for pre-defined values,Same properties as list box(Except no,MultiSelect,capability),Same general methods,prefix convention=,cbo,To remove a selected item,use the,ListIndex,property,cboMembers,.,RemoveItem cboMembers,.,ListIndex,Examples of the dropdown Style properties,l l l l l l l l,The dropdown list style has almost the same appearance as the dropdown,combo style.However,the user cannot type in the text box portion of a dropdown list.,Dropdown Combo style,Simple Combo style,Dropdown List style,Combo Box:Style property,0-,DropDown,Combo,Text box with down arrow,Click on down arrow to show list,1-Simple Combo,List box always displayed,2-,DropDown,List,User can not type into text box,Combo Box,cboFood,.text=?,cboFood,.,listCount,=?,cboFood,.,listIndex,(3)=?,cboFood,.,listIndex,=?,What happens with the code,cboFood,.,Additem cboFood,.Text,How many items are in the list?,What event is triggered as the user types in the word“fig”?,Text property,Apple,Banana,Carrot,Donut,Eggplant,0,1,2,3,4,ListIndex,List,ListCount,=5,Fig,cboFood,Events,Change,triggers when the text changes,GotFocus,triggers when the list/combo/text box receives focus,LostFocus,triggers when list/combo/text box loses focus,PROGRAM CONSTRUCTS,Sequence,Decision(Selection),Iteration,Pre-Test(While Loop),Post-Test(Until Loop),Sequence Structure,Decision Structure,Iteration,Purpose:to have the computer repeat a certain set of steps over and over until some condition is true.,There are conditional loops and counted loops,but all are really conditional.,Steps,Condition,T,F,Iteration:Basic Rules,The termination condition,must,be modified in the body of the loop,Otherwise,you have an infinite loop,Loops may be nested,Indent appropriately,Never change the value of the counter in a FOR loop,Determinate Loops:“For-Next”Loops,FOR,counter,=,start,TO,end,STEP,increment,statements that compose the body of the loop,NEXT,counter,Early exit from a loop:,EXIT DO,EXIT FOR,Example of For-Next Loop,Action of For.Next structure,l l l l l l l l,for,counter=start,To,end,statement1,statement2,.,Next,counter,Counterending value,Iterations of a For.Next loop,l l l l l,Private Sub,cmdForNextTest,_Click(),Dim,X,As Integer,For,X=1,To,3,MsgBox,X,Next,X,End Sub,MsgBox,Contents,1,X,0,1,4,4,4,Iterations of a For.Next loop,l l l l l,Private Sub,cmdForNextTest,_Click(),Dim,X,As Integer,For,X=1,To,3,MsgBox,X,Next,X,End Sub,Private Sub,cmdForNextTest,_Click(),Dim,X,As Integer,For,X=1,To,3,MsgBox,X,Next,X,End Sub,MsgBox,Contents,1,MsgBox,Contents,2,X,0,1,X,0,1,2,4,4,4,4,44,44,4,Iterations of a For.Next loop,l l l l l,Private Sub,cmdForNextTest,_Click(),Dim,X,As Integer,For,X=1,To,3,MsgBox,X,Next,X,End Sub,Private Sub,cmdForNextTest,_Click(),Dim,X,As Integer,For,X=1,To,3,MsgBox,X,Next,X,End Sub,Private Sub,cmdForNextTest,_Click(),Dim,X,As Integer,For,X=1,To,3,MsgBox,X,Next,X,End Sub,MsgBox,Contents,1,MsgBox,Contents,3,MsgBox,Contents,2,X,0,1,X,0,1,2,3,X,0,1,2,4,4,4,4,44,44,4,4,444,444,44,Iterations of a For.Next loop,l l l l l,Private Sub,cmdForNextTest,_Click(),Dim,X,As Integer,For,X=1,To,3,MsgBox,X,Next,X,End Sub,Private Sub,cmdForNextTest,_Click(),Dim,X,As Integer,For,X=1,To,3,MsgBox,X,Next,X,End Sub,Private Sub,cmdForNextTest,_Click(),Dim,X,As Integer,For,X=1,To,3,MsgBox,X,Next,X,End Sub,Private Sub,cmdForNextTest,_Click(),Dim,X,As Integer,For,X=1,To,3,MsgBox,X,Next,X,End Sub,MsgBox,Contents,1,MsgBox,Contents,3,MsgBox,Contents,2,X,0,1,X,0,1,2,3,X,0,1,2,X,0,1,2,3,4,4,4,4,4,44,44,4,4,444,444,44,4,4444,444,444,4,Indeterminate:“Do-Loops”,Indeterminate loops run for an unknown number of repetitions,until a condition is true,or,while a condition is true,Four types of indeterminate loops,Until loop with termination condition,before,body of loop,While loop with termination condition,before,body of loop,Until loop with termination condition,after,body of loop,While loop with termination condition,after,body of loop,Pre-Test,loops have termination condition before loop body,Post-test,loops have termination condition after loop body,Pre-Test Loops,Iteration:Pre-test Loops,Pretest:,DO WHILE,condition,statements,LOOP,DO UNTIL,condition,statements,LOOP,Iteration:Post-Test Loops,Post-test:,DO,statements,LOOP WHILE,condition,DO,statements,LOOP UNTIL,condition,Iteration:While Loops,WHILE loop(Pre-Test),WHILE,condition,statements,WEND,Will operate while,condition,is true(or until,condition,is false),Form of Pre-and Post-Test Loops,The form of the pre-test loops is:,Do Until(or While),condition,body of loop,Loop,The form of the post-test loops is,:,Do,body of loop,Loop Until(or While),condition,Action of DoLoop,l l l l l l l l,Do,Loop,statement1,statement2,.,Action of Do WhileLoop,l l l l l l l l,Do While,condition,statement1,statement2,.,Loop,statement,Condition False,Do While,condition,statement1,statement2,.,Loop,Condition True,Iterations of the loop,l l l l l,Private Sub,cmdDoWhileTest,_Click(),Dim,X,As Integer,Do While,X 3,X=X+1,MsgBox,X,Loop,End Sub,4,4,4,4,MsgBox,Contents,1,X,0,1,Iterations of the loop,l l l l l,Private Sub,cmdDoWhileTest,_Click(),Dim,X,As Integer,Do While,X 3,X=X+1,MsgBox,X,Loop,End Sub,Private Sub,cmdDoWhileTest,_Click(),Dim,X,As Integer,Do While,X 3,X=X+1,MsgBox,X,Loop,End Sub,4,4,4,4,4,44,44,44,4,MsgBox,Contents,1,MsgBox,Contents,2,X,0,1,X,0,1,2,Iterations of the loop,l l l l l,Private Sub,cmdDoWhileTest,_Click(),Dim,X,As Integer,Do While,X 3,X=X+1,MsgBox,X,Loop,End Sub,Private Sub,cmdDoWhileTest,_Click(),Dim,X,As Integer,Do While,X 3,X=X+1,MsgBox,X,Loop,End Sub,Private Sub,cmdDoWhileTest,_Click(),Dim,X,As Integer,Do While,X 3,X=X+1,MsgBox,X,Loop,End Sub,4,4,4,4,4,44,44,44,4,4,444,444,444,44,MsgBox,Contents,1,MsgBox,Contents,3,MsgBox,Contents,2,X,0,1,X,0,1,2,3,X,0,1,2,Iterations of the loop,l l l l l,Private Sub,cmdDoWhileTest,_Click(),Dim,X,As Integer,Do While,X 3,X=X+1,MsgBox,X,Loop,End Sub,Private Sub,cmdDoWhileTest,_Click(),Dim,X,As Integer,Do While,X 3,X=X+1,MsgBox,X,Loop,End Sub,Private Sub,cmdDoWhileTest,_Click(),Dim,X,As Integer,Do While,X 3,X=X+1,MsgBox,X,Loop,End Sub,Private Sub,cmdDoWhileTest,_Click(),Dim,X,As Integer,Do While,X 3,X=X+1,MsgBox,X,Loop,End Sub,4,4,4,4,4,44,44,44,4,4,444,444,444,44,4,4444,444,444,444,4,MsgBox,Contents,1,MsgBox,Contents,3,MsgBox,Contents,2,X,0,1,X,0,1,2,3,X,0,1,2,X,0,1,2,3,Action of Do.Loop While structure,l l l l l l l l,Do,statement1,statement2,.,Loop While,condition,statement,Condition False,Do,statement1,statement2,.,Loop While,condition,Condition True,Action of Do Until.Loop structure,l l l l l l l l,Do Until,condition,statement1,statement2,.,Loop,Condition False,Do,Until,c ondition,statement1,statement2,.,Loop,statement,Condition True,Equivalent Do While and Do Until loops,l l l l l l l l,Private Sub,cmdDoWhileTest,_Click(),Dim,X,As Integer,Do While,X =3,X=X+1,MsgBox,X,Loop,End Sub,Action of Do.Loop Until structure,l l l l l l l l,Do,statement1,statement2,.,Loop Until,condition,Condition False,Do,statement1,statement2,.,Loop Until,condition,statement,Condition True,Debugging Loops,Debug a loop by inserting a debug.print command in the loop to print to the Immediate Window.,Add a Quick Watch by locating the pointer on a variable and clicking the eyeglass icon on the Debug Toolbar.The values for this variable will be shown in the Watch Window.,Use the Locals window to display the values of variables local to a procedure.,Use the Toggle Breakpoint icon to pause execution at a designated line in the code and then use the various windows to view the values for variables.,Print Method-,Printer.Print,(sends output to printer object),NewPage,Method,Printer.,NewPage,(send page to printer-starts another),EndDoc,Method,Printer.,EndDoc,(send final page and terminate printerjob),For Debugging-To save paper,Debug.Print (displays in Immediate Window),The Printer Object,Printer.Print,Printer.,EndDoc,Printer.,NewPage,Formatting,Commas advance 1 zone(14 average characters),Printer.Print Name,Phone,Semicolons does not move to next zone,Printer.Print Name:;,txtMyName,Ending Commas/Semicolons continue on print line,Printer.Print Name:,Printer.Print,txtMyName,Printer.Print by itself gives a blank line of output,Printline,Zone 1 Zone 2,Zone 3,12345678901234 12345678901234 12345678901234,Tab/,Spc,Functions,Tab and,Spc,(Space)functions allow programmer to override the defaults,Tab is absolute&,Spc,is relative,Example,Printer.Print Tab(20)Name:,Spc,(5),txtMyName,Places the word“Name:”in the 20th column-an absolute placement-and the value of,txtMyName,in the 30th-5 more relative to the end of“Name:”,Printing a List,To print the contents of list box,use the,ListCount,and List()properties of the list box,ListCount,is the number of items in list box but list()property runs from 0 to,ListCount,-1,List(Counter)is equal to the contents of the corresponding list box,Code to print contents of list box to Immediate Window:,For Counter=0 to,lstEntries,.,ListCount,-1 Debug.Print,lstEntries,.List(Counter),Next,Functions(Again?),Intrinsic Functions are*Very*useful,Take a look at Appendix B for Date,Financial,Numeric and String Functions.,Payments-,PMT Function requires arguments-,interest rate,number of periods,amount of loan,Note that he PMT function will return a negative value,to display the values of variables local to a procedure.,Another Interesting Statement,Rset,Statement(Which stands for Right Set),Format,Rset,string_variable=string,where string_variable is the name of a fixed length string variable.These are dimensioned as follows:,Dim,strToFormat,as String*10,*10 means that it will always be 10 characters long,where string is the expression you want right aligned.Example,Rset strToFormat,=Format(Payment,“fixed”),discuss what this would do,
    展开阅读全文
    提示  咨信网温馨提示:
    1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
    2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
    3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
    4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前可先查看【教您几个在下载文档中可以更好的避免被坑】。
    5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
    6、文档遇到问题,请及时联系平台进行协调解决,联系【微信客服】、【QQ客服】,若有其他问题请点击或扫码反馈【服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【版权申诉】”,意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:0574-28810668;投诉电话:18658249818。

    开通VIP折扣优惠下载文档

    自信AI创作助手
    关于本文
    本文标题:List Boxes and Combo BoxesLoop Structures.ppt
    链接地址:https://www.zixin.com.cn/doc/13355152.html
    页脚通栏广告

    Copyright ©2010-2026   All Rights Reserved  宁波自信网络信息技术有限公司 版权所有   |  客服电话:0574-28810668    微信客服:咨信网客服    投诉电话:18658249818   

    违法和不良信息举报邮箱:help@zixin.com.cn    文档合作和网站合作邮箱:fuwu@zixin.com.cn    意见反馈和侵权处理邮箱:1219186828@qq.com   | 证照中心

    12321jubao.png12321网络举报中心 电话:010-12321  jubao.png中国互联网举报中心 电话:12377   gongan.png浙公网安备33021202000488号  icp.png浙ICP备2021020529号-1 浙B2-20240490   


    关注我们 :微信公众号  抖音  微博  LOFTER               

    自信网络  |  ZixinNetwork