Topic
create new user-defined image
Startseite ' Community ' Automation and VBA ' create new user-defined image
- Dieses Thema hat 2 Antworten sowie 2 Teilnehmer und wurde zuletzt vor vor 16 Jahren, 3 Monaten von raphael mean aktualisiert.
-
AutorBeiträge
-
12.02.2009 um 23:43 Uhr #34808raphael meanTeilnehmer
Hello,
My question is; Is it possible to create automatically a new user defined image on the “Button Appearance” dialog box for customized image so that I can have as much FaceId as required?
thanks,
12.02.2009 um 23:43 Uhr #34810raphael meanTeilnehmerHello,
My question is; Is it possible to create automatically a new user defined image on the “Button Appearance” dialog box for customized image so that I can have as much FaceId as required?
thanks,
13.02.2009 um 20:24 Uhr #34809Bernhard KantzTeilnehmerYou have the possibility to add a user-defined button using VBA.
[code]
Dim oBar As CommandBar
Set oBar = CommandBars.Add(Name:=”Test”, _
Position:=fpBarPositionTop, Temporary:=False)
oBar.Visible = TrueDim picPictureI As IPictureDisp
Dim picMaskI As IPictureDisp
Set picPictureI = stdole.StdFunctions.LoadPicture(“c:picturepic.bmp”)
Set picMaskI = stdole.StdFunctions.LoadPicture(“c:picturemask.bmp”)Dim oButton As CommandBarButton
Set oButton = sdfCmdBar.Controls.Add(Type:=fpControlTypeButton)
oButton.Picture = picPictureI
oButton.Mask = picMaskI
[/code]
When you run this macro, a new picture is saved in the file ‘userimages.bmp’.
(Vista: C:Userss.sattler.IGBAppDataLocalWeisangFlexPro8.0)
Unfortunately, you cannot access an existing user-defined picture using VBA. -
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.