10 messages in org.openoffice.fr.progRe: [prog] [Base] Probléme assignatio...
FromSent OnAttachments
Arnaud POUSSIERDec 14, 2006 9:22 am 
Christine BrouDec 14, 2006 11:23 am 
Arnaud POUSSIERDec 15, 2006 12:20 am 
Alain NowakDec 15, 2006 3:37 am 
Arnaud POUSSIERDec 15, 2006 4:57 am 
Laurent GodardDec 15, 2006 5:11 am 
Arnaud POUSSIERDec 15, 2006 7:17 am 
Christine BrouDec 15, 2006 9:40 am 
Arnaud POUSSIERDec 15, 2006 9:58 am 
Arnaud POUSSIERDec 15, 2006 10:39 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: [prog] [Base] Probléme assignation de macroActions...
From:Laurent Godard (lgod@indesko.com)
Date:Dec 15, 2006 5:11:25 am
List:org.openoffice.fr.prog

Bonjour

changement mineurs à faire

sub FullOn

sub FullOn (leDoc)

rem ---------------------------------------------------------------------- rem define variables dim document as object dim dispatcher as object rem ---------------------------------------------------------------------- rem get access to the document document = ThisComponent.CurrentController.Frame

document = leDoc.CurrentController.Frame

dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") rem ---------------------------------------------------------------------- dim args1(0) as new com.sun.star.beans.PropertyValue args1(0).Name = "FullScreen" args1(0).Value = true

dispatcher.executeDispatch(document, ".uno:FullScreen", "", 0, args1())

end sub

il te rest ensuite a changer l'appel de FullOn avec call FullOn(monDoc)

Laurent