VB.net中字幕的替代方法

编程入门 行业动态 更新时间:2024-10-26 19:41:30
本文介绍了VB中字幕的替代方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我希望某些文本像某些新闻内容一样在网页顶部旋转. 我正在1.1版中使用VS2003?

I want some text to be rotate at the top of the web page just like some news contents. I am using VS2003 in 1.1 version?

推荐答案

Private m_intMarqueeCounter As Integer = 1 Private m_bolMarqueeIncrementUp As Boolean = True Private Sub YourMarqueeTimer_Tick() 'You can decide what number is best for your app. If m_intMarqueeCounter = 10 Then m_bolMarqueeIncrementUp = False End If If m_intMarqueeCounter = 0 Then m_bolMarqueeIncrementUp = True End If Dim intX As Integer For intX = 0 to m_intMarqueeCounter frmYourForm.Text = " " & "Your Title" Next If m_bolMarqueeIncrementUp Then m_intMarqueeCounter += 1 Else m_intMarqueeCounter -= 1 End If End Sub

更多推荐

VB.net中字幕的替代方法

本文发布于:2023-11-15 17:24:17,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1596466.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:字幕   方法   VB   net

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!