首页 \ 问答 \ 在Visual Basic中将Loop语句制作成Loop语句(Making a Next statement into a Loop statement in Visual Basic)

在Visual Basic中将Loop语句制作成Loop语句(Making a Next statement into a Loop statement in Visual Basic)

嘿大家。 我和我的朋友正在重新学习Visual Basic,并且我们难以接受这些代码。

For intAsterisks As Integer = 0 To intLine - 1
  lblAsterisks.Text = lblAsterisks.Text + "*"
Next

我们需要能够将For Next代码转换为Do Loop代码。 有人能帮助我们吗?


Hey everyone. My friend and I are re-learning Visual Basic, and we are stumped on this bit of code.

For intAsterisks As Integer = 0 To intLine - 1
  lblAsterisks.Text = lblAsterisks.Text + "*"
Next

We need to be able to make that from a For Next code into a Do Loop code. Could anyone assist us?


原文:https://stackoverflow.com/questions/960987
更新时间:2022-01-07 16:01

最满意答案

下面是我最终使用的脚本。 将所需的变量放在via scriptlet中是有用的。 即“<%= fqdn%>”

resWidth = (screen.AvailWidth - 45)
resHeight = (screen.AvailHeight - 150)        

MsRdpClient.DesktopWidth = resWidth
MsRdpClient.DesktopHeight = resHeight

MsRdpClient.Width = resWidth
MsRdpClient.Height = resHeight
MsRdpClient.server = "<%=fqdn%>"

MsRdpClient.AdvancedSettings2.RDPPort = "3389"
MsRdpClient.Connect

sub MsRdpClient_OnDisconnected(disconnectCode)

history.go(-1)

end sub

Below is the script I ended up using. putting the required variables in via scriptlets is what did the trick. i.e. the "<%=fqdn%>"

resWidth = (screen.AvailWidth - 45)
resHeight = (screen.AvailHeight - 150)        

MsRdpClient.DesktopWidth = resWidth
MsRdpClient.DesktopHeight = resHeight

MsRdpClient.Width = resWidth
MsRdpClient.Height = resHeight
MsRdpClient.server = "<%=fqdn%>"

MsRdpClient.AdvancedSettings2.RDPPort = "3389"
MsRdpClient.Connect

sub MsRdpClient_OnDisconnected(disconnectCode)

history.go(-1)

end sub

相关问答

更多
  • QUERY_STRING (以下是维基百科条目链接部分的文字。) 结构体 包含查询字符串的典型URL如下: http://server/path/program?query_string 当服务器收到这样一个页面的请求时,它运行一个程序(如果配置为这样做),将query_string不变地传递给程序。 问号用作分隔符,不是查询字符串的一部分。 网页中的链接可能包含一个包含查询字符串的URL,但HTML定义了Web浏览器可以生成查询字符串的三种方式: 通过...元素的Web表单 一个服务器端映像映射通过ism ...
  • 如果要缓存一个动作,根据所有查询参数(或几乎所有的参数),您可以执行以下操作: caches_action :my_action, :cache_path => Proc.new { |c| c.params } 或者,也许你想要除了您只用于Google Analytics(分析)的一些参数(但与您正在提取的记录无关): caches_action :my_action, :cache_path => Proc.new { |c| c.params.delete_if { |k,v| k.starts_w ...
  • 理论上没有限制。 对于HTTP URL, HTTP 1.1规范规定: HTTP协议不会对URI的长度产生任何先验限制。 服务器必须能够处理它们所服务的任何资源的URI,并且如果它们提供可以生成这样的URI的基于GET的表单,则应该能够处理无限长度的URI。 如果URI长于服务器可以处理的服务器应该返回414(Request-URI Too Long)状态(参见10.4.15节)。 但实际上,许多客户端和服务器只支持一定长度的URL。 经验法则是不要使用超过2000个字符的URL (已经考虑到百分比的编码)。 ...
  • 是。 querystring也使用SSL加密。 然而,如本文所示,将敏感信息放在URL中并不是个好主意。 例如: URL存储在Web服务器日志中 - 通常每个请求的整个URL都存储在服务器日志中。 这意味着URL中的任何敏感数据(例如密码)都以服务器上的明文保存 Yes. The querystring is also encrypted with SSL. Nevertheless, as this article shows, it isn't a good idea to put sensitive ...
  • 但是查询应该返回什么 这是你的决定,你需要什么? 有几个不同复杂度的查询字符串评估函数。 其中一些可以处理重复的,嵌套的括号语法值,而另一些则不能。 可以在如何在JavaScript中获取查询字符串值中找到着名的名称? 及其重复的问题。 但是,您要求约定: http://server/site?lastname=Daniels 结果应该是表示缺少firstName 。 您可以选择null或undefined 。 http://server/site?firstname&lastname=Daniels 这通 ...
  • 下面是我最终使用的脚本。 将所需的变量放在via scriptlet中是有用的。 即“<%= fqdn%>” resWidth = (screen.AvailWidth - 45) resHeight = (screen.AvailHeight - 150) MsRdpClient.DesktopWidth = resWidth MsRdpClient.DesktopHeight = resHeight MsRdpClient.Width = resWidth MsRdpClient.H ...
  • 如果您担心安全性,可以加密查询字符串参数。 或者您可以使用其他持有者,例如上面提到的p.cambell(会话和cookie)。 您还可以将其存储在数据库中,并将页面用于检索它上载。 仅取决于您的应用要求。 我做的另一件事是使用 ,基本上使用单个页面就好像它是多个页面一样。 通过这种方式,我还可以访问viewstate来保存我的变量。 (每当用户点击“下一个”,或者他们点击任何内容转到下一页时,我只是隐藏他们所在的面板,并显示他们想要转到[visible = true / false]属 ...
  • 我想你会得到错误,因为你的Web Api的Post方法不期望复杂的类型( System.Net.Http.FormUrlEncodedContent )。 它期待一个字符串 。 我猜你的Web Api方法目前看起来像这样: public void Post([FromBody]string value) { } 你应该改变它是类似的 public void Post([FromBody]System.Net.Http.FormUrlEncodedContent value) ...
  • 您所要做的就是获得以下值: Page.Request.Url.Query 看到: Uri baseUri = new Uri("http://www.contoso.com/catalog/shownew.htm?date=today&=
  • POST不应该向地址栏中的URL附加任何内容。 如何生成查询字符串。 是来自表格提交吗? POST should not append anything to the URL in the address bar. How is the query string being generated. Is it from a form submission?

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)