WUGNET, the Windows User Group Network
Your Complete Resource Center for "The Best" in Shareware, Computing Tips and Support, Windows Industry News... and much more!
Home Forums Shareware Windows Tips Hot Offers FREE Newsletters Arcade Contact Us About Partners
Search WUGNET: RSS Feeds RSS Feeds Advertise with WUGNET    |    Shareware eBooks
HomeHome FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Newbie: Problem with re-using a combo-box in userform

 
   Home -> Office -> User Forms RSS
Next:  Row height  
Author Message
jbarrington

External


Since: Oct 05, 2008
Posts: 2



(Msg. 1) Posted: Sun Oct 05, 2008 12:23 pm
Post subject: Newbie: Problem with re-using a combo-box in userform
Archived from groups: microsoft>public>word>vba>userforms (more info?)

I'm new to userforms and can't find a solution.

I'm wanting to use this rough-draft macro and userform to let get me
choose a worksheet of a workbook from a combo box, and then reuse it
again to let me choose a worksheet from another workbook in the combo box.

It seems to work ok the first time around, but the second time the combo
box wants to display the same worksheets from the first time around, and
then goes to an error.

Can someone tell me what's wrong?
Thanks.

==================
Here's the macro:
==================

Sub test()

Dim MainWB As String
Dim wbDestination As String
Dim wbReference As String
Dim CellValue As String
Dim tester As String

MainWB = ActiveWorkbook.Name
wbDestination = Sheets("Sheet1").Range("B4").Value
wbReference = Sheets("Sheet1").Range("B4").Value

Windows(MainWB).Activate
CellValue = Sheets("Sheet1").Range("B4").Value
CellLocation = "B4"

If CellValue = "" Then
Windows("1stWorkbook.xls").Activate
frmDropIt.Show
tester = frmDropIt.ComboBox1.Value
Windows(MainWB).Activate
Range(CellLocation).Value = tester
Else
'Proceed to make sure the worksheet is the primary choice
End If

Windows(MainWB).Activate
CellValue = Sheets("Sheet1").Range("B7").Value
CellLocation = "B7"

If CellValue = "" Then
Windows("2ndWorkbook.xls").Activate
frmDropIt.Show
tester = frmDropIt.ComboBox1.Value
Windows(MainWB).Activate
Range(CellLocation).Value = tester
Else
'Proceed to make sure the worksheet is the primary choice
End If
End Sub

==================
Here's the Form:
==================

Private Sub cmdOK_Click()
'Dim ReturnThis As String

If Me.ComboBox1.Value = "" Then
Unload Me
Else
Worksheets(Me.ComboBox1.Value).Activate
'MsgBox "You chose: " & Me.ComboBox1.Value
Unload Me
End If
End Sub

Private Sub ComboBox1_Change()
'No code here
End Sub

Private Sub cmdCancel_Click()
Unload Me
End Sub

Private Sub UserForm_Initialize()
Dim i As Long

For i = 1 To Worksheets.Count
Me.ComboBox1.AddItem Worksheets(i).Name
Next
ComboBox1.Value = Worksheets(1).Name
End Sub
Back to top
Login to vote
Doug Robbins - Word MVP

External


Since: Jul 14, 2006
Posts: 4293



(Msg. 2) Posted: Mon Oct 06, 2008 3:04 am
Post subject: Re: Newbie: Problem with re-using a combo-box in userform [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

This newsgroup is for issues with UserForms in Word. I would suggest that
you post your question to the Microsoft.public.excel.programming newsgroup
as it is probably more of an Excel issue rather than something to do with
the UserForm itself.

You should indicate what line of code is causing the error when that
happens.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"jbarrington" <"jbarrington -at- comcast period net"> wrote in message
news:H7CdnaeUMKdTdHXVnZ2dnUVZ_gSdnZ2d@comcast.com...
> I'm new to userforms and can't find a solution.
>
> I'm wanting to use this rough-draft macro and userform to let get me
> choose a worksheet of a workbook from a combo box, and then reuse it again
> to let me choose a worksheet from another workbook in the combo box.
>
> It seems to work ok the first time around, but the second time the combo
> box wants to display the same worksheets from the first time around, and
> then goes to an error.
>
> Can someone tell me what's wrong?
> Thanks.
>
> ==================
> Here's the macro:
> ==================
>
> Sub test()
>
> Dim MainWB As String
> Dim wbDestination As String
> Dim wbReference As String
> Dim CellValue As String
> Dim tester As String
>
> MainWB = ActiveWorkbook.Name
> wbDestination = Sheets("Sheet1").Range("B4").Value
> wbReference = Sheets("Sheet1").Range("B4").Value
>
> Windows(MainWB).Activate
> CellValue = Sheets("Sheet1").Range("B4").Value
> CellLocation = "B4"
>
> If CellValue = "" Then
> Windows("1stWorkbook.xls").Activate
> frmDropIt.Show
> tester = frmDropIt.ComboBox1.Value
> Windows(MainWB).Activate
> Range(CellLocation).Value = tester
> Else
> 'Proceed to make sure the worksheet is the primary choice
> End If
>
> Windows(MainWB).Activate
> CellValue = Sheets("Sheet1").Range("B7").Value
> CellLocation = "B7"
>
> If CellValue = "" Then
> Windows("2ndWorkbook.xls").Activate
> frmDropIt.Show
> tester = frmDropIt.ComboBox1.Value
> Windows(MainWB).Activate
> Range(CellLocation).Value = tester
> Else
> 'Proceed to make sure the worksheet is the primary choice
> End If
> End Sub
>
> ==================
> Here's the Form:
> ==================
>
> Private Sub cmdOK_Click()
> 'Dim ReturnThis As String
>
> If Me.ComboBox1.Value = "" Then
> Unload Me
> Else
> Worksheets(Me.ComboBox1.Value).Activate
> 'MsgBox "You chose: " & Me.ComboBox1.Value
> Unload Me
> End If
> End Sub
>
> Private Sub ComboBox1_Change()
> 'No code here
> End Sub
>
> Private Sub cmdCancel_Click()
> Unload Me
> End Sub
>
> Private Sub UserForm_Initialize()
> Dim i As Long
>
> For i = 1 To Worksheets.Count
> Me.ComboBox1.AddItem Worksheets(i).Name
> Next
> ComboBox1.Value = Worksheets(1).Name
> End Sub
Back to top
Login to vote
jbarrington

External


Since: Oct 05, 2008
Posts: 2



(Msg. 3) Posted: Mon Oct 06, 2008 3:04 am
Post subject: Re: Newbie: Problem with re-using a combo-box in userform [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Doug Robbins - Word MVP wrote:
> This newsgroup is for issues with UserForms in Word. I would suggest that
> you post your question to the Microsoft.public.excel.programming newsgroup
> as it is probably more of an Excel issue rather than something to do with
> the UserForm itself.
>
> You should indicate what line of code is causing the error when that
> happens.
>


OOPS!!!

Apologies.
Back to top
Login to vote
Display posts from previous:   
       Home -> Office -> User Forms All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows XP
 Windows Vista
 Windows Other
  Office
 Office Other
 Security
  • Home |
  • Shareware |
  • Windows Tips |
  • Hot Offers |
  • FREE Newsletters |
  • Arcade |
  • Forums |
  • eBooks |
  • About WUGNET |
  • Partners |
  • Contact

  • WUGNET Privacy Policy |
  • Link to WUGNET |
  • IT Support