cancel
Showing results for 
Search instead for 
Did you mean: 

Previous,next buttons

Former Member
0 Kudos

HI,

I create a Screen in screen Painter and integrate it with VB.NET.inserted data .but i had a one problem here i cannot finfout the next previous buttons in Menubar(Task bar).it vissible nut disable ? Wat is the problem?

Regards,

MTR

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi, check this,

  • U need to have and UDO atached to your form, so he can move between records (if u have created with the UDO already),

  • Set the AutoManaged property of the form to True, and work with all the events that the UDO can accept, Add,Delete,Update,View,etc...

Tell us if this worked for you...

Gabriel Mendes

Former Member
0 Kudos

HI,

It's not working.Some of my friends says that add 101 field.What is this?

former_member209699
Contributor
0 Kudos

HI

Add below lines in ur screens xml file

<Menus>

<action type="enable">

<Menu uid="1288"/>

<Menu uid="1289"/>

<Menu uid="1290"/>

<Menu uid="1291"/>

</action>

</Menus>

regards:

SANDY

Sandeep Saini | Roorkee | India on Dec 11, 2008 12:12 PM

Former Member
0 Kudos

Hi,

After loading ur form just execute the following code to enable the required menu items..

objForm.EnableMenu("1290", True) 'First Data Record
objForm.EnableMenu("1291", True) 'Last Data Record
objForm.EnableMenu("1288", True) 'Next Record
objForm.EnableMenu("1289", True) 'Previous Record

Use ur own form object instead of objForm. This will solve ur problem.

Vasu Natari.

Answers (0)