Results 1 to 40 of 52

Thread: [RESOLVED] About a single instance of a For Next loop

Threaded View

  1. #7

    Thread Starter
    PowerPoster ThEiMp's Avatar
    Join Date
    Dec 2007
    Location
    Take The PCI Bus Across To The CPU!!
    Posts
    3,948

    Re: About a single instance of a For Next loop

    I'm working on something that looks like this:
    Code:
    Option Explicit
    '
    Dim PauseTime, Start, Finish, TotalTime
    Dim strBuff As String
    Dim m_Marker As Byte
    Static OneTime As Boolean
    Dim a As Integer
    '
    
    Public Property Get Marker() As String
    On Error Resume Next
    
        m_Marker = m_Marker
    End Property
    Public Property Let Marker(ByVal New_Marker As String)
    On Error Resume Next
    
        m_Marker = New_Marker
        PropertyChanged "Marker"
    End Property
    Private Sub UserControl_Initialize()
    On Error Resume Next
    
    1   If OneTime = False Then
            For a = 1 To 1
                If a = 0 Then
                    a = 0
                    a = a + 1
        
                    PauseTime = 6
                    Start = Timer
                    Do While Timer < Start + PauseTime
                    DoEvents
                    Loop
                    Finish = Timer
                    TotalTime = Finish - Start
                    If TotalTime = 0 Then GoTo 2
        
    2               strBuff = StrConv(LoadResData("EP" & a, "VIDEO"), vbUnicode)
                        Open "C:\Temp\zVideo-1234567890.mkv" For Output As #1
                            Print #1, strBuff
                        Close #1
        
                    PauseTime = 6
                    Start = Timer
                    Do While Timer < Start + PauseTime
                    DoEvents
                    Loop
                    Finish = Timer
                    TotalTime = Finish - Start
                    If TotalTime = 0 Then GoTo 3
            
    3               If a = 11 then m_Marker = "B"
            
                    strBuff = ""
                    OneTime = True
                Else
                    Exit Sub
                End If
            Next a
        Else
            Exit Sub
        End If
    End Sub
    Private Sub UserControl_Resize()
    On Error Resume Next
    
        With UserControl
            .Height = 330
            .Width = 435
        End With
    End Sub
    Private Sub UserControl_ReadProperties(PropBag As PropertyBag)
    On Error Resume Next
    
        With PropBag
            m_Marker = .ReadProperty("Marker", "")
        End With
    End Sub
    Private Sub UserControl_WriteProperties(PropBag As PropertyBag)
    On Error Resume Next
    
        With PropBag
            Call .WriteProperty("Marker", m_Marker, "")
        End With
    End Sub
    Last edited by ThEiMp; Jun 5th, 2022 at 02:22 AM.
    I have a huge free products range, of computer software in which you can download using any kind of 64-Bit Web Browser. Also there is coming a Social Networking section that I am making on my Website...

    |Ambra Productions Inc. | The Black Sun Society | The Black Shield | Ambra College | Church of the Black Sun | Ambra Productions Inc's Homepage | Boomtick Venues: Ambar Nightclub, Jack Rabbit Slim's, Villa Nightclub and Lucy's Love Shack | Pasta Ambra | Fish Feast Company | Wallet Wizard | Ambrose Liquor | Ambar Tavern | Ambra University | Ambra Cheese |

    Do you wish to do unpaid work for me??? If so, the PM me on this Forum, and then we can get to work, programming for the future of computers go by the name of ThEiMp. This is my ghost writers name. Also my nickname, means that I am: The Imperial of the Technology Industry, so then to make it really short, I just then wrote: The Imp, which is where I get the nickname from...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width