473,385 Members | 1,400 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

epos

we have, over the years developed an epos system for our business running in
A97.

the system records payments amongst other things

what we wanted to do next was accept card payments through our system so
we dont have to go to the swipe machine and type in the amounts

we have played around with a magnetic card reader. so we know how to get
info off the card

does anyone know how we would emulate a swipe card machine, so when i press
my card
payment button and swipe the card

my system will dial the company, and send my mechant number the card number
and the amount
and in return receive an authorisation number so i can print a receipt for
the customer to sign.

thanks
Dave
Nov 12 '05 #1
3 1890
"Dave" <e@mail.co.uk> wrote:
we have played around with a magnetic card reader. so we know how to get
info off the card
Just curious. How does the mag card reader interface with a PC and what do you have
to do to read the data?
does anyone know how we would emulate a swipe card machine, so when i press
my card
payment button and swipe the card
You need some payment processing software.
my system will dial the company, and send my mechant number the card number
and the amount
and in return receive an authorisation number so i can print a receipt for
the customer to sign.


You may also need to use some dialing software, sometimes known as RAS dialer.
Possibly

I've saved the following from someone's posting a while back. No idea how relevant or
useful these are but here you go.

http://www.processing.net can be used in conjunction with our processing network to
clear credit cards.

xAuthorize http://www.xauthorize.com/software/xauthorize/

http://www.analysisandsolutions.com/code/ccvs-vb.htm validates the card number and
type, doesn't guarantee the card is still current.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Nov 12 '05 #2

Its a keyboad wedge, so just plug it in and swipe :)
then all the data on the strip ends up in what ever textbox that has the
focus.

we have scanned quite a few cads from different banks
and found there to be more data on the cards than we thought there would be,
we thought just the card number

here is a card swipe fyi (i have changed my name account details etc so dont
get too excited :) )

%B123123123123^SUNAME
/AB.MR^0123456000000000000000123000000?;12341234123 41234=0987654321000000000
0?
the %B is how they all start and all end in a ?
the 1234123412341234 is the card number
then surname , initials and title as appears on the card (although not
always in this order, sometimes its like Mr AB Surname)
then i duuno, then card number again, then i dunno
the dunnos are obviously checks but i dont know how they are calculated
(probably a big secret !!)

"Tony Toews" <tt****@telusplanet.net> wrote in message
news:ij********************************@4ax.com...
"Dave" <e@mail.co.uk> wrote:
we have played around with a magnetic card reader. so we know how to get
info off the card
Just curious. How does the mag card reader interface with a PC and what

do you have to do to read the data?
does anyone know how we would emulate a swipe card machine, so when i pressmy card
payment button and swipe the card
You need some payment processing software.
my system will dial the company, and send my mechant number the card numberand the amount
and in return receive an authorisation number so i can print a receipt forthe customer to sign.


You may also need to use some dialing software, sometimes known as RAS

dialer. Possibly

I've saved the following from someone's posting a while back. No idea how relevant or useful these are but here you go.

http://www.processing.net can be used in conjunction with our processing network to clear credit cards.

xAuthorize http://www.xauthorize.com/software/xauthorize/

http://www.analysisandsolutions.com/code/ccvs-vb.htm validates the card number and type, doesn't guarantee the card is still current.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm

Nov 12 '05 #3
"Dave" <e@mail.co.uk> wrote:
Its a keyboad wedge, so just plug it in and swipe :)
Ah, real easy then.
we have scanned quite a few cads from different banks
and found there to be more data on the cards than we thought there would be,
we thought just the card number
As did I. Except at one place they just happened to show all the data going by on
the screen. I was surprised to see my name there as well.
here is a card swipe fyi
Thanks, very interesting. Your posting has been saved.
(i have changed my name account details etc so dont
get too excited :) )
<chuckle>
the dunnos are obviously checks but i dont know how they are calculated
(probably a big secret !!)


I doubt the check sums are all that secret. You could likely do some searching and
find the details.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Nov 12 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Stu Cazzo | last post by:
I have the following: String myStringArray; String myString = "98 99 100"; I want to split up myString and put it into myStringArray. If I use this: myStringArray = myString.split(" "); it...
5
by: Doslil | last post by:
I am trying to validate a text field where the user has to input the first name I am writing the following function Private Function EFN() On Error GoTo EFNErr If IsNull(Me.FirstName) Or...
5
by: Theresa Hancock via AccessMonster.com | last post by:
I have an Excel table I need to import into Access. The name is entered into one field "Name". I'd like to have two fields in Access, FirstName and LastName. How do I do this. -- Message posted...
3
by: jackiepatti | last post by:
QUESTION: I have a web page containing a form that contains an image instead of a submit button, e.g. <form name='myform' action='get' method='otherpage.asp'> <input type='image'...
2
by: maya | last post by:
http://news.yahoo.com/news?tmpl=index2&cid=703 down the page, under "More Stories", there's a section with two interchangeable divs which slide back and forth into view.. how is this done? I...
6
by: joawhzr | last post by:
Hello, my friends, I hope this is not an already asked (and resolved) question: Is it possible to find out which word or words in a text field (an address for example) are in another table? and...
3
by: GeorgeE | last post by:
Hey guys I have chosen to create an Epos system for my final yr project which doesnt seem to be one of the wisest decisions ive made. I am using Access to store all my data in the database and...
38
by: ssecorp | last post by:
char* reverse(char* str) { int length = strlen(str); char* acc; int i; for (i=0; i<=length-1; i++){ acc = str; } return acc; }
3
by: uday1302 | last post by:
Hi, Can anyone trace out where is the error lstListView.DoubleClick += new EventHandler(this.lstEditDoubleClick); txtSubItem.KeyPress += new KeyPressEventHandler(this.txtEditOver);...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.