Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 01-13-2016, 08:21 PM
zcu zcu is offline object variable set or not??? Challenging \ Perplexing Windows 8 object variable set or not??? Challenging \ Perplexing Office 2010 64bit
Novice
object variable set or not??? Challenging \ Perplexing
 
Join Date: Jan 2016
Posts: 2
zcu is on a distinguished road
Default object variable set or not??? Challenging \ Perplexing


Hi

I'm a newbie please be nice

I'm trying to write an if then else and I'm referring to the same variable. Yet when the if is true the variable is an error "not set".

But if it is false the code works perfectly.

Code:
For i = 1 To 10
'get student name from worksheet
x = ox.Worksheets("data").Cells(21, 2 + i).Text

With ActivePresentation.Slides(2).Shapes("name" & i)
.TextFrame.TextRange.Text = x
End With
'check if student pic in file

On Error Resume Next
xipath = Dir("C:\ProgramData\Learning Excellence\Behavior\Pictures\" & x & ".jpg")
On Error GoTo 0

' if not = forecolor white
If xipath = "" Then
With ActivePresentation.Slides(2).Shapes("pic" & i)
.Fill.ForeColor.RGB = RGB(255, 255, 255)
End With

' if yes = forecolor picture
Else
With ActivePresentation.Slides(2).Shapes("pic" & i)
.Fill.UserPicture ("C:\ProgramData\Learning Excellence\Behavior\Pictures\" & x & ".jpg")
End With
End If
   Next i
Reply With Quote
  #2  
Old 01-16-2016, 10:36 AM
JohnWilson JohnWilson is offline object variable set or not??? Challenging \ Perplexing Windows 7 64bit object variable set or not??? Challenging \ Perplexing Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,912
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

Try:
If xlPath Is Nothing Then


Else

End If
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote
  #3  
Old 01-16-2016, 05:28 PM
zcu zcu is offline object variable set or not??? Challenging \ Perplexing Windows 8 object variable set or not??? Challenging \ Perplexing Office 2010 64bit
Novice
object variable set or not??? Challenging \ Perplexing
 
Join Date: Jan 2016
Posts: 2
zcu is on a distinguished road
Default

Thanks for thinking about it.

After i posted i did troubleshooting for an hour and figured it out.

For some reason (perhaps a bug) after fill is set to user picture vba can't change the fill to rgb. So i just used a white picture instead and it worked.
Reply With Quote
  #4  
Old 01-17-2016, 12:30 AM
JohnWilson JohnWilson is offline object variable set or not??? Challenging \ Perplexing Windows 7 64bit object variable set or not??? Challenging \ Perplexing Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,912
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

"For some reason (perhaps a bug) after fill is set to user picture vba can't change the fill to rgb."

It's not a bug and vba can change it to RGB you just need to understand how it works

Your code has changed the fill type to userpicture you need to reset it to "Solid" by adding something like

ActivePresentation.Slides(2).Shapes("pic" & i).Fill.Solid
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Object Variable or With block variable not set Raza Excel Programming 8 01-15-2015 12:19 AM
Run Time Error '91': Object variable or With block variable not set using Catalogue Mailmerge Berryblue Mail Merge 1 11-13-2014 05:36 PM
object variable set or not??? Challenging \ Perplexing Run-time error 91 object variable or with block variable not set JUST ME Word VBA 4 03-25-2014 06:56 AM
object variable set or not??? Challenging \ Perplexing object variable or with block variable not set MJP143 Excel 1 02-11-2013 05:07 AM
object variable set or not??? Challenging \ Perplexing Run-time error '91': Object variable or With block variable not set tinfanide Excel Programming 2 06-10-2012 10:17 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 08:54 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft