MSForms.DataObject "no variable"

linxaddict

New Member
Joined
Oct 14, 2013
Messages
10
I have the Forms 2.0 Object Library loaded.
I have a value in a string variable (strNum)
I have a new form data object (doNum)

when I use:
Code:
Dim doNum As New MSForms.DataObject
Dim strNum As String
Dim strMessage, strTitle

'Input box to prompt for opers to query data
strMessage = "Enter Numbers."
strTitle = "Numbers"
strNum = InputBox(strMessage, strTitle)

If strNum <> "" Then
  doNum.SetText strNum
  doNum.PutInClipboard
Else
  MsgBox "You did not enter any numbers. Please rerun 'Get Data'"
  Application.StatusBar = False
Exit Sub
End If

Locals window tells me that doNum = <no Variables="">
so the rest of my code doesn't work.

I do nothing except re-run the same macro and then it ALL works.

Why or how is doNum not being set the first time through? Would it matter that the first time through I am pasting into the input box from the clipboard (copying from another data source into the clipboard)?

TIA,
linxaddict</no>
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop

Forum statistics

Threads
1,223,886
Messages
6,175,195
Members
452,616
Latest member
intern444

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top