Hello,
Thank you for the reply.
I was thinking there was
a simple way to set it up
in Tools --> Setup or
Tools --> Utilities.
I am using Microsoft GP
Dynamics 9.0. I would prefer to
use VBA to set the set the values.
VBA=Visual Basic...?Right?
Thank you
M
Hello,
Is there a way to set the default values on the
Customer Account Maintenance windows? In the window it defaults to checkbook but I need it to default to customer so that the user does not have to remember to go to the second page and change the radio button.
Thanks
A
It's not pretty, but it works.
Dim varRowCount As Integer
Dim ii As Integer
varRowCount = Cwayflex.Rows - 1
ii = 0
While ii <= varRowCount
If varRowCount <= 1 Then Exit Sub
If Cwayflex.TextMatrix(ii, COL_DELETEEXTRACWAY) = "1" Then
Cwayflex.RowSel = ii
Cwayflex.RemoveItem...
Hello,
I am having a problem with deleting multiple records in a flexgrid. Here is the code snippet:
Dim varRowCount As Integer
Dim ii As Integer
delinvno = TextInvno.Text
varRowCount = Cwayflex.Rows - 1
For ii = 0 To varRowCount
If Cwayflex.TextMatrix(ii + 1...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.