Vantage ACH Blank Title 51618

I am not using it, but can I get a copy? I must have missed this when it
was offered. Is it in the uploaded files for the groups? If so, what is
the file name?



Thanks,

Karen Brodniak

Accounting Manager

karen.brodniak@...

425-742-7011 X44

Fax 425-353-8945



-----Original Message-----
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of Paul Lipham
Sent: Thursday, August 31, 2006 12:13 PM
To: vantage@yahoogroups.com
Subject: [Vantage] Vantage ACH



Is anyone using the Vantage ACH program that was developed by Scott
Hemmerlein at Sommer Metalcraft Corporation and distributed free to
Vantage
users. We have been using it for a while to get our NACHA file format
for
Vantage payroll to the bank. I'm having problems getting my version
working
on Windows XP. We have been using it on Windows 2000 for about three
years.

Any information would be helpful

Paul Lipham
I.S. Manager
Alabama Specialty Products, Inc.
256-358-5230

[Non-text portions of this message have been removed]





[Non-text portions of this message have been removed]
I have written some customization code in the Part Maintenance form
that generates a new part by duplicating a 'template' part and giving
it a unique part number. The new part is in the db and I add a
timestamp and creator's name etc to the part master using the
PartAdapter.
I now would like to populate the Part Maintenance form with this new
part and can not seem to do this. One way I have been able to load
the part into the form is if the Part Maintenance form is cleared I
can programmatically write the part number to the PartNum text box
then set and lose the focus to the PartNum text box. I should be able
to do something with Notify though but can'nt seem to get it right.

So the Question is
1.How do I load a part into the Part Maintenance form programmatically?
2.How do I clear a part out of the Part Maintenance form
programmatically? ( ie like clicking the Clear button on the Toolbar )

Any Ideas?

Wenham
Is anyone using the Vantage ACH program that was developed by Scott
Hemmerlein at Sommer Metalcraft Corporation and distributed free to Vantage
users. We have been using it for a while to get our NACHA file format for
Vantage payroll to the bank. I'm having problems getting my version working
on Windows XP. We have been using it on Windows 2000 for about three years.

Any information would be helpful

Paul Lipham
I.S. Manager
Alabama Specialty Products, Inc.
256-358-5230


[Non-text portions of this message have been removed]
I am going to answer most of my own question after doing a bit of
research.

The following snippet will clear the Part Maintenance form then load
in another part

otrans.ClearDataSets()
otrans.NotifyAll()

'get a reference to the partnum text box
Dim textBox As EpiTextBox = CType(csm.getNativeControlReference
("38e1671b-0c3f-4ab3-b8ab-95f26285f1d2"), EpiTextBox)
textBox.Focus()
textBox.Text = "value of a partnumber"

'get a reference to the description text box
textBox = CType(csm.getNativeControlReference("b96c3530-3a3b-41dd-
a3a4-4a2f933702f8"), EpiTextBox)
textBox.Focus()

Does anybody have a better way of doing these then using a lost focus
event?

Wenham

--- In vantage@yahoogroups.com, "Wenham Burnett" <burn0051@...> wrote:
>
> I have written some customization code in the Part Maintenance form
> that generates a new part by duplicating a 'template' part and
giving
> it a unique part number. The new part is in the db and I add a
> timestamp and creator's name etc to the part master using the
> PartAdapter.
> I now would like to populate the Part Maintenance form with this
new
> part and can not seem to do this. One way I have been able to load
> the part into the form is if the Part Maintenance form is cleared I
> can programmatically write the part number to the PartNum text box
> then set and lose the focus to the PartNum text box. I should be
able
> to do something with Notify though but can'nt seem to get it right.
>
> So the Question is
> 1.How do I load a part into the Part Maintenance form
programmatically?
> 2.How do I clear a part out of the Part Maintenance form
> programmatically? ( ie like clicking the Clear button on the
Toolbar )
>
> Any Ideas?
>
> Wenham
>
My guess is the form responds to either the lost focus event on the part
number or the key down event if the key is the tab key?



________________________________

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of Wenham Burnett
Sent: Thursday, August 31, 2006 3:24 PM
To: vantage@yahoogroups.com
Subject: [Vantage] Re: Customization - Clear and Load Part Form with new
part # programmatically



I am going to answer most of my own question after doing a bit of
research.

The following snippet will clear the Part Maintenance form then load
in another part

otrans.ClearDataSets()
otrans.NotifyAll()

'get a reference to the partnum text box
Dim textBox As EpiTextBox = CType(csm.getNativeControlReference
("38e1671b-0c3f-4ab3-b8ab-95f26285f1d2"), EpiTextBox)
textBox.Focus()
textBox.Text = "value of a partnumber"

'get a reference to the description text box
textBox = CType(csm.getNativeControlReference("b96c3530-3a3b-41dd-
a3a4-4a2f933702f8"), EpiTextBox)
textBox.Focus()

Does anybody have a better way of doing these then using a lost focus
event?

Wenham

--- In vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ,
"Wenham Burnett" <burn0051@...> wrote:
>
> I have written some customization code in the Part Maintenance form
> that generates a new part by duplicating a 'template' part and
giving
> it a unique part number. The new part is in the db and I add a
> timestamp and creator's name etc to the part master using the
> PartAdapter.
> I now would like to populate the Part Maintenance form with this
new
> part and can not seem to do this. One way I have been able to load
> the part into the form is if the Part Maintenance form is cleared I
> can programmatically write the part number to the PartNum text box
> then set and lose the focus to the PartNum text box. I should be
able
> to do something with Notify though but can'nt seem to get it right.
>
> So the Question is
> 1.How do I load a part into the Part Maintenance form
programmatically?
> 2.How do I clear a part out of the Part Maintenance form
> programmatically? ( ie like clicking the Clear button on the
Toolbar )
>
> Any Ideas?
>
> Wenham
>






[Non-text portions of this message have been removed]
Paul,



I wrote an ACH script that is similar to Scott's and is running on an XP
workstation. Feel free to contact me offline.



Is anyone using the Vantage ACH program that was developed by Scott
Hemmerlein at Sommer Metalcraft Corporation and distributed free to Vantage
users. We have been using it for a while to get our NACHA file format for
Vantage payroll to the bank. I'm having problems getting my version working
on Windows XP. We have been using it on Windows 2000 for about three years.

Any information would be helpful

Paul Lipham
I.S. Manager
Alabama Specialty Products, Inc.
256-358-5230



Thanks,

Andrew Berg

260-478-2363 ext 211

<mailto:andy.berg@...> andy.berg@...





[Non-text portions of this message have been removed]
I would love to know more about this ACH script, we are currently
uploading our weekly payroll amount manual by data entry. I
would love to automate this process to speed it up and avoid
errors.



Norman Hutchins Jr.

Network Administrator



Howell Laboratories, Inc.



_____

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On
Behalf Of Andy Berg
Sent: Friday, September 01, 2006 8:23 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Re: Vantage ACH



Paul,

I wrote an ACH script that is similar to Scott's and is running
on an XP
workstation. Feel free to contact me offline.

Is anyone using the Vantage ACH program that was developed by
Scott
Hemmerlein at Sommer Metalcraft Corporation and distributed free
to Vantage
users. We have been using it for a while to get our NACHA file
format for
Vantage payroll to the bank. I'm having problems getting my
version working
on Windows XP. We have been using it on Windows 2000 for about
three years.

Any information would be helpful

Paul Lipham
I.S. Manager
Alabama Specialty Products, Inc.
256-358-5230

Thanks,

Andrew Berg

260-478-2363 ext 211

<mailto:andy.berg@nationalt
<mailto:andy.berg%40nationaltubeform.com> ubeform.com>
andy.berg@nationalt <mailto:andy.berg%40nationaltubeform.com>
ubeform.com

[Non-text portions of this message have been removed]





_____

Message transport security by <http://www.gatewaydefender.com>
GatewayDefender
8:27:17 AM ET - 9/1/2006



[Non-text portions of this message have been removed]