7 messages in org.openoffice.fr.progRe: [prog] Worksheet_Activesheet
FromSent OnAttachments
stpi...@infonie.frApr 3, 2008 4:37 am 
Francois GattoApr 3, 2008 6:42 am 
stpi...@infonie.frApr 3, 2008 7:18 am 
Laurent GodardApr 3, 2008 7:52 am 
stpi...@infonie.frApr 7, 2008 1:59 am 
oo...@volcar.orgApr 8, 2008 1:54 am 
stpi...@infonie.frApr 8, 2008 6:24 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] Worksheet_ActivesheetActions...
From:Francois Gatto (oo@volcar.org)
Date:Apr 3, 2008 6:42:01 am
List:org.openoffice.fr.prog

Bonjour,

stpi@infonie.fr a écrit :

bonjour,

je recherche des informations sur

Worksheet_ activate.

Un calcul se fait uniquement quand la feuille (calc) est sélectionné.

cela est-il possible avec OOoBasic ?

Merci...

Oui c'est possible.

sub WorksheetActivate dim oSheet as object dim sSheetName as string sSheetName = "Feuille3" oSheet = thisComponent.getSheets().getByName( sSheetName ) thisComponent.CurrentController.setActiveSheet( oSheet ) end sub

Francois