Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hii guys... 🙂
my senerio is...
when i select any field value, appears a confirmation dialog, when i select yes it goes to next sheet, and when i select no , it remain on same sheet.
thanx to all
Regards
Naeem
Hi
Use the following macro:
sub MoveToNextSheet
Msgbox ("Move to next sheet?",VBYesNo,"Confirm with Yes")
if Ret = 6 then
ActiveDocument.NextTab
end if
end sub
Go to Document properties, Triggers and add a trigger that runs the macro "onSelect" for the given field.
/Fredrik
Hi
Use the following macro:
sub MoveToNextSheet
Msgbox ("Move to next sheet?",VBYesNo,"Confirm with Yes")
if Ret = 6 then
ActiveDocument.NextTab
end if
end sub
Go to Document properties, Triggers and add a trigger that runs the macro "onSelect" for the given field.
/Fredrik
thanx
my friend fredrik .. for helping me ...:)
regards