Chocolatesunrise
Member
- Joined
- Jun 7, 2011
- Messages
- 5
- Programming Experience
- 5-10
I keep getting this error, The requested resource is in use. (Exception from HRESULT: 0x800700AA)
how do i fix this
I'm using this script to copy the form
Public Sub CopyFORM(ByVal sTARTLOOP As Integer, ByVal ENDLOOP As Integer, ByVal textinputbox As String)
Dim f As Translate
For count As Integer = sTARTLOOP To ENDLOOP
f = New Megahit
f.Name = "English to French - Version" & count
f.Text = f.Name
f.TextBox1.Text = textinputbox
Call f.Start_Click_1()
f.Hide()
Next
End Sub
The resource shouldn't be in use as a copy is being used....
how do i fix this
I'm using this script to copy the form
Public Sub CopyFORM(ByVal sTARTLOOP As Integer, ByVal ENDLOOP As Integer, ByVal textinputbox As String)
Dim f As Translate
For count As Integer = sTARTLOOP To ENDLOOP
f = New Megahit
f.Name = "English to French - Version" & count
f.Text = f.Name
f.TextBox1.Text = textinputbox
Call f.Start_Click_1()
f.Hide()
Next
End Sub
The resource shouldn't be in use as a copy is being used....