Warning: iconv_mime_decode() [function.iconv-mime-decode]: Malformed string in /home/rockryno/public_html/lib/standard.lib.php on line 2258

Warning: iconv_mime_decode() [function.iconv-mime-decode]: Malformed string in /home/rockryno/public_html/lib/standard.lib.php on line 2258

Warning: iconv_mime_decode() [function.iconv-mime-decode]: Malformed string in /home/rockryno/public_html/lib/standard.lib.php on line 2258

Warning: iconv_mime_decode() [function.iconv-mime-decode]: Malformed string in /home/rockryno/public_html/lib/standard.lib.php on line 2258
HTML Status Bar
Home Page link  

HTML Status Bar

 

Point-Of-Sale Software - - MS Point Of Sale software discussed here

 Post an article  get this group's latest topics as an RSS feed add this group's latest topics to your My MSN content add this group's latest topics to your My Yahoo content  add this group's latest topics to your Google content  YahooMyWeb Yahoo!  Google Google  Windows Live Favorites Windows Live  del.icio.us del.icio.us  digg digg  Add to Netscape Netscape
Subject Author Date
HTML Status Bar Josh 12-01-2005
Posted by Tyrone on January 30, 2007, 8:57 pm
Please log in for more thread options
How do I add this conversation in the outlook express newsgroup

"Jeff" wrote:

> Josh,
>
> Being as will probably using this newsgroup in the future, you may as well
> get setup correctly.
>
> To see and download files, you must be using a newsgroup reader like Outlook
> Express or there are others.
>
> For Outlook Express, click on the link below. Click on "Open with
> newsreader" under the MS Retail Management System section on the right. It
> will configure Outlook Express for you and will bring you back to this
> newsgroup in Outlook Express.
>
> http://tinyurl.com/75bgz
>
>
> --
> *
> I dont see how or where there is an attachment. Can you email it to me?
> pfmabookstore@cybertrails.com
>
> Thanks
> Josh
>
> "Evan Culver" wrote:
>
> > Josh,
> >
> > Try the attached file. It just looks like some lines got wrapped.
> >
> > -
> > Evan Culver
> > New West Technologies
> >
> >
> >
> > Josh wrote:
> > > Thank you so much rob for the code. I tryed the code and I get 2 errors
> > > the
> > > first one says:
> > > line: 87
> > > char: 19
> > > error: syntax error
> > > code: 0
> > > The second one says:
> > > line: 147
> > > char: 1
> > > error: type mismatch 'dostartup'
> > > code: 0
> > >
> > > Any help would be helpfull. Not sure what the errors mean.
> > >
> > > Thanks,
> > > Joshua Wenger
> > >
> > >
> > > "Rob" wrote:
> > >
> > >
> > >>Copy and past the code below into Notepad or Frontpage and save it as an
> > >>.htm
> > >>file.
> > >>If you use Notepad be sure to change the File Type to All Files. Or just
> > >>piece the code that you need from this example into your file.
> > >>I modified this to display the image of the last item added to the
> > >>transaction or the currenlty highlighted item. If the item does not have
> > >>an
> > >>image assiged then it displays a generic 'no image available' pic.
> > >>
> > >>Rob
> > >>
> > >>
> > >><html>
> > >> <head>
> > >> <meta http-equiv="Content-Language" content="en-us">
> > >> <title>Default Status Screen</title>
> > >> <style>
> > >>
> > >>.LineHeader {
> > >> font-family: Arial;
> > >> font-size: 16;
> > >> color: white;
> > >> background-color: black;
> > >>}
> > >>
> > >>.LineDivider {
> > >> color: white;
> > >> background-color: gray;
> > >>}
> > >>
> > >>.LineData {
> > >> font-family: Arial;
> > >> font-size: 36;
> > >> color: #00FF00;
> > >> background-color: black;
> > >>}
> > >>
> > >> </style>
> > >> <!--
> > >>// ------------------------------------
> > >>// external opjects used by JScript
> > >>// ------------------------------------
> > >>-->
> > >> <!--
> > >>// QSBridge exposes internal QSC objects and allows scripting language
> > >>to
> > >>access information on the current
> > >>// transaction.
> > >>-->
> > >> <OBJECT classid="clsid:44C4C3AC-D0F1-11D2-919D-006008C88FC3"
> > >> height="0"
> > >>id="qsBridge" style="LEFT: 0px; TOP: 0px" width="0" >
> > >> <PARAM NAME="_ExtentX" VALUE="26">
> > >> <PARAM NAME="_ExtentY" VALUE="26">
> > >> </OBJECT>
> > >> <script language="VBScript">
> > >><!--
> > >>
> > >>Dim TimerID
> > >>
> > >>
> > >>' ------------------------------------
> > >>' displayVariables
> > >>' ------------------------------------
> > >>
> > >>Function displayVariables
> > >> On Error Resume Next
> > >>
> > >> Dim QSRules
> > >> Dim Entry
> > >> Dim TransasctionItem
> > >> Dim txtItemLookupCode
> > >> Dim txtDescription
> > >> Dim txtPrice
> > >> Dim txtQuantity
> > >> Dim txtExtended
> > >> Dim PictureFileName
> > >>
> > >> Dim RS
> > >> Dim SQL
> > >> Dim Conn
> > >>
> > >> Set QSRules = qsBridge.RequestQSRules()
> > >>
> > >> txtDescription = " "
> > >> txtQuantity = " "
> > >> txtPrice = " "
> > >> txtExtended = " "
> > >> txtPicture = "noimage.jpg"
> > >> PictureFileName = ""
> > >> SQL = ""
> > >>
> > >> Set RS = Nothing
> > >>
> > >> Set Entry = Nothing
> > >> Set TransactionItem = Nothing
> > >>
> > >> If Not QSRules Is Nothing Then
> > >>
> > >> ' This line is valid after version 1.07
> > >> Set Entry =
> > >>QSRules.Transaction.Entries(QSRules.Transaction.CurrentEntryKey)
> > >>
> > >>
> > >> If Entry Is Nothing then
> > >> Set Entry =
> > >>QSRules.Transaction.Entries(QSRules.Transaction.Entries.Count)
> > >> End IF
> > >>
> > >> If Not Entry Is Nothing Then
> > >> txtDescription = Entry.Description
> > >> txtQuantity = Entry.Quantity
> > >> txtPrice = FormatCurrency(Entry.Price)
> > >> txtExtended = FormatCurrency(Entry.ExtendedPrice)
> > >> SQL = "SELECT PictureName FROM Item WHERE ItemLookupCode = '" +
> > >>Entry.Item.ItemLookupcode + "'"
> > >> Set Rs = QSRules.OpenRecordSet((SQL),(-1))
> > >> If Not Rs.EOF Then
> > >> PictureFileName = Rs("PictureName")
> > >> End If
> > >> End If
> > >> End If
> > >>
> > >> If Description.innerText <> txtDescription Then
> > >> Description.innerText = txtDescription
> > >> End If
> > >>
> > >> If Quantity.innerText <> txtQuantity Then
> > >> Quantity.innerText = txtQuantity
> > >> End If
> > >>
> > >> If Price.innerText <> txtPrice Then
> > >> Price.innerText = txtPrice
> > >> End If
> > >>
> > >> If Extended.innerText <> txtExtended Then
> > >> Extended.innerText = txtExtended
> > >> End If
> > >>
> > >> If PictureFileName <> "" Then
> > >> PictureFile.src = "C:Program FilesMicrosoft Retail Management
> > >>SystemStore OperationsPictures" & PictureFileName
> > >> Else
> > >> PictureFile.src = "C:Program FilesMicrosoft Retail Management
> > >>SystemStore OperationsPictures" & txtPicture
> > >> End If
> > >>
> > >>End Function
> > >>
> > >>
> > >>Function doStartup
> > >>
> > >> ' use a timer to run displayVariables() periodically every second
> > >> TimerID = window.setInterval("displayVariables()", 500)
> > >>
> > >>End Function
> > >>
> > >>//-->
> > >> </script>
> > >> </head>
> > >> <body bgcolor="black" topmargin="0" leftmargin="0" onload="doStartup()"
> > >>scroll="yes">
> > >> <table border="0" width="100%" cellspacing="1" cellpadding="0">
> > >> <tr class="LineHeader" valign="top">
> > >> <td width="40%" align="left">
> > >> Description
> > >> </td>
> > >> <td width="10%" align="right">
> > >> Quantity
> > >> </td>
> > >> <td width="20%" align="right">
> > >> Price
> > >> </td>
> > >> <td width="20%" align="right">
> > >> Extended
> > >> </td>
> > >> <td width="10%" align="right">
> > >> Picture
> > >> </td>
> > >> </tr>
> > >> <tr class="LineDivider" width="100%" valign="top" height="1">
> > >> <td colspan="5">
> > >> </td>
> > >> </tr>
> > >> <tr class="LineData" valign="top">
> > >> <td width="10%" align="left" id="Description">
> > >>
> > >> </td>
> > >> <td width="10%" align="right" id="Quantity">
> > >>
> > >> </td>
> > >> <td width="20%" align="right" id="Price">
> > >>
> > >> </td>
> > >> <td width="20%" align="right" id="Extended">
> > >>
> > >> </td>
> > >> <td width="40%" align="right">
> > >> <img id = "PictureFile" height="100" width="110">
> > >>
> > >> </td>
> > >> </tr>
> > >> </table>
> > >> </body>
> > >></html>
> > >>
> > >>
> > >>"Josh" wrote:
> > >>
> > >>
> > >>>It there a way for me to customize the status bar to show the item
> > >>>picture
> > >>>after a item is scanned?
> >
> >
>
>
>

Posted by Jeff @ Check Point Software on February 1, 2007, 11:15 pm
Please log in for more thread options
: quoted-printable

Tyrone,

I don't understand. =20

If you wish to use Outlook Express for reading the newsgroup, follow the =
instructions below in my tagline.

If you are asking how to see all of the messages in the newsgroup using =
OE, go to Tools | Options | Read tab | uncheck Get x number headers at a =
time | Tools | Get new headers and it will download all 2679 (at this =
posting time) messages.

--=20

Jeff=20
Check Point Software

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D

You must be using Outlook Express/Windows Mail or some other type of =
newsgroup reader to
see and download the file attachment(s). If you are not using a reader, =
follow
the link below to setup Outlook Express. Click on "Open with =
newsreader"
under the MS Retail Management System on the right.

http://tinyurl.com/75bgz
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D

How do I add this conversation in the outlook express newsgroup

"Jeff" wrote:

> Josh,
>=20
> Being as will probably using this newsgroup in the future, you may =
as well=20
> get setup correctly.
>=20
> To see and download files, you must be using a newsgroup reader like =
Outlook=20
> Express or there are others.
>=20
> For Outlook Express, click on the link below. Click on "Open with=20
> newsreader" under the MS Retail Management System section on the =
right. It=20
> will configure Outlook Express for you and will bring you back to =
this=20
> newsgroup in Outlook Express.
>=20
> http://tinyurl.com/75bgz
>=20
>=20
> --=20
> *
> I dont see how or where there is an attachment. Can you email it to =
me?
> pfmabookstore@cybertrails.com
>=20
> Thanks
> Josh
>=20
> "Evan Culver" wrote:
>=20
> > Josh,
> >
> > Try the attached file. It just looks like some lines got wrapped.
> >
> > -
> > Evan Culver
> > New West Technologies
> >
> >
> >
> > Josh wrote:
> > > Thank you so much rob for the code. I tryed the code and I get =
2 errors=20
> > > the
> > > first one says:
> > > line: 87
> > > char: 19
> > > error: syntax error
> > > code: 0
> > > The second one says:
> > > line: 147
> > > char: 1
> > > error: type mismatch 'dostartup'
> > > code: 0
> > >
> > > Any help would be helpfull. Not sure what the errors mean.
> > >
> > > Thanks,
> > > Joshua Wenger
> > >
> > >
> > > "Rob" wrote:
> > >
> > >
> > >>Copy and past the code below into Notepad or Frontpage and save =
it as an=20
> > >>.htm
> > >>file.
> > >>If you use Notepad be sure to change the File Type to All Files. =
Or just
> > >>piece the code that you need from this example into your file.
> > >>I modified this to display the image of the last item added to =
the
> > >>transaction or the currenlty highlighted item. If the item does =
not have=20
> > >>an
> > >>image assiged then it displays a generic 'no image available' =
pic.
> > >>
> > >>Rob
> > >>
> > >>
> > >><html>
> > >> <head>
> > >> <meta http-equiv=3D"Content-Language" content=3D"en-us">
> > >> <title>Default Status Screen</title>
> > >> <style>
> > >>
> > >>.LineHeader {
> > >> font-family: Arial;
> > >> font-size: 16;
> > >> color: white;
> > >> background-color: black;
> > >>}
> > >>
> > >>.LineDivider {
> > >> color: white;
> > >> background-color: gray;
> > >>}
> > >>
> > >>.LineData {
> > >> font-family: Arial;
> > >> font-size: 36;
> > >> color: #00FF00;
> > >> background-color: black;
> > >>}
> > >>
> > >> </style>
> > >> <!--
> > >>// ------------------------------------
> > >>// external opjects used by JScript
> > >>// ------------------------------------
> > >>-->
> > >> <!--
> > >>// QSBridge exposes internal QSC objects and allows scripting =
language=20
> > >>to
> > >>access information on the current
> > >>// transaction.
> > >>-->
> > >> <OBJECT classid=3D"clsid:44C4C3AC-D0F1-11D2-919D-006008C88FC3" =

> > >> height=3D"0"
> > >>id=3D"qsBridge" style=3D"LEFT: 0px; TOP: 0px" width=3D"0" >
> > >> <PARAM NAME=3D"_ExtentX" VALUE=3D"26">
> > >> <PARAM NAME=3D"_ExtentY" VALUE=3D"26">
> > >> </OBJECT>
> > >> <script language=3D"VBScript">
> > >><!--
> > >>
> > >>Dim TimerID
> > >>
> > >>
> > >>' ------------------------------------
> > >>' displayVariables
> > >>' ------------------------------------
> > >>
> > >>Function displayVariables
> > >> On Error Resume Next
> > >>
> > >> Dim QSRules
> > >> Dim Entry
> > >> Dim TransasctionItem
> > >> Dim txtItemLookupCode
> > >> Dim txtDescription
> > >> Dim txtPrice
> > >> Dim txtQuantity
> > >> Dim txtExtended
> > >> Dim PictureFileName
> > >>
> > >> Dim RS
> > >> Dim SQL
> > >> Dim Conn
> > >>
> > >> Set QSRules =3D qsBridge.RequestQSRules()
> > >>
> > >> txtDescription =3D " "
> > >> txtQuantity =3D " "
> > >> txtPrice =3D " "
> > >> txtExtended =3D " "
> > >> txtPicture =3D "noimage.jpg"
> > >> PictureFileName =3D ""
> > >> SQL =3D ""
> > >>
> > >> Set RS =3D Nothing
> > >>
> > >> Set Entry =3D Nothing
> > >> Set TransactionItem =3D Nothing
> > >>
> > >> If Not QSRules Is Nothing Then
> > >>
> > >> ' This line is valid after version 1.07
> > >> Set Entry =3D
> > >>QSRules.Transaction.Entries(QSRules.Transaction.CurrentEntryKey)
> > >>
> > >>
> > >> If Entry Is Nothing then
> > >> Set Entry =3D
> > >>QSRules.Transaction.Entries(QSRules.Transaction.Entries.Count)
> > >> End IF
> > >>
> > >> If Not Entry Is Nothing Then
> > >> txtDescription =3D Entry.Description
> > >> txtQuantity =3D Entry.Quantity
> > >> txtPrice =3D FormatCurrency(Entry.Price)
> > >> txtExtended =3D =
FormatCurrency(Entry.ExtendedPrice)
> > >> SQL =3D "SELECT PictureName FROM Item WHERE =
ItemLookupCode =3D '" +
> > >>Entry.Item.ItemLookupcode + "'"
> > >> Set Rs =3D QSRules.OpenRecordSet((SQL),(-1))
> > >> If Not Rs.EOF Then
> > >> PictureFileName =3D Rs("PictureName")
> > >> End If
> > >> End If
> > >> End If
> > >>
> > >> If Description.innerText <> txtDescription Then
> > >> Description.innerText =3D txtDescription
> > >> End If
> > >>
> > >> If Quantity.innerText <> txtQuantity Then
> > >> Quantity.innerText =3D txtQuantity
> > >> End If
> > >>
> > >> If Price.innerText <> txtPrice Then
> > >> Price.innerText =3D txtPrice
> > >> End If
> > >>
> > >> If Extended.innerText <> txtExtended Then
> > >> Extended.innerText =3D txtExtended
> > >> End If
> > >>
> > >> If PictureFileName <> "" Then
> > >> PictureFile.src =3D "C:Program FilesMicrosoft Retail =
Management
> > >>SystemStore OperationsPictures" & PictureFileName
> > >> Else
> > >> PictureFile.src =3D "C:Program FilesMicrosoft Retail =
Management
> > >>SystemStore OperationsPictures" & txtPicture
> > >> End If
> > >>
> > >>End Function
> > >>
> > >>
> > >>Function doStartup
> > >>
> > >> ' use a timer to run displayVariables() periodically every =
second
> > >> TimerID =3D window.setInterval("displayVariables()", 500)
> > >>
> > >>End Function
> > >>
> > >>//-->
> > >> </script>
> > >> </head>
> > >> <body bgcolor=3D"black" topmargin=3D"0" leftmargin=3D"0" =
onload=3D"doStartup()"
> > >>scroll=3D"yes">
> > >> <table border=3D"0" width=3D"100%" cellspacing=3D"1" =
cellpadding=3D"0">
> > >> <tr class=3D"LineHeader" valign=3D"top">
> > >> <td width=3D"40%" align=3D"left">
> > >> Description
> > >> </td>
> > >> <td width=3D"10%" align=3D"right">
> > >> Quantity
> > >> </td>
> > >> <td width=3D"20%" align=3D"right">
> > >> Price
> > >> </td>
> > >> <td width=3D"20%" align=3D"right">
> > >> Extended
> > >> </td>
> > >> <td width=3D"10%" align=3D"right">
> > >> Picture
> > >> </td>
> > >> </tr>
> > >> <tr class=3D"LineDivider" width=3D"100%" valign=3D"top" =
height=3D"1">
> > >> <td colspan=3D"5">
> > >> </td>
> > >> </tr>
> > >> <tr class=3D"LineData" valign=3D"top">
> > >> <td width=3D"10%" align=3D"left" id=3D"Description">
> > >>
> > >> </td>
> > >> <td width=3D"10%" align=3D"right" id=3D"Quantity">
> > >>
> > >> </td>
> > >> <td width=3D"20%" align=3D"right" id=3D"Price">
> > >>
> > >> </td>
> > >> <td width=3D"20%" align=3D"right" id=3D"Extended">
> > >>
> > >> </td>
> > >> <td width=3D"40%" align=3D"right">
> > >> <img id =3D "PictureFile" height=3D"100" width=3D"110">
> > >>
> > >> </td>
> > >> </tr>
> > >> </table>
> > >> </body>
> > >></html>
> > >>
> > >>
> > >>"Josh" wrote:
> > >>
> > >>
> > >>>It there a way for me to customize the status bar to show the =
item=20
> > >>>picture
> > >>>after a item is scanned?
> >
> >=20
>=20
>=20
>
------=_NextPart_000_02DF_01C7463D.CA058FE0
Content-Type: text/html;
        charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

=EF=BB=BF<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dutf-8">
<META content=3D"MSHTML 6.00.5730.11" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT color=3D#008000>Tyrone,</FONT></DIV>
<DIV><FONT color=3D#008000></FONT>&nbsp;</DIV>
<DIV><FONT color=3D#008000>I don't understand.&nbsp; </FONT></DIV>
<DIV><FONT color=3D#008000></FONT>&nbsp;</DIV>
<DIV><FONT color=3D#008000>If you wish to use Outlook Express for =
reading the=20
newsgroup, follow the instructions below in my tagline.</FONT></DIV>
<DIV><FONT color=3D#008000></FONT>&nbsp;</DIV>
<DIV><FONT color=3D#008000>If you are asking how to see all of the =
messages in the=20
newsgroup using OE, go to Tools | Options | Read tab | uncheck Get x =
number=20
headers at a time | Tools | Get new headers and it will download all =
2679 (at=20
this posting time) messages.</FONT></DIV>
<DIV><BR>-- <BR><BR>Jeff <BR>Check Point Software</DIV>
<DIV>&nbsp;</DIV>
<DIV>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D</DIV>
<DIV>&nbsp;</DIV>
<DIV>You must be using Outlook Express/Windows Mail&nbsp;or some other =
type of=20
newsgroup reader to<BR>see and download the file attachment(s).&nbsp; If =
you are=20
not using a reader, follow<BR>the link below to setup Outlook =
Express.&nbsp;=20
Click on "Open with newsreader"<BR>under the MS Retail Management System =
on the=20
right.</DIV>
<DIV>&nbsp;</DIV>
<DIV><A=20
href=3D"http://tinyurl.com/75bgz">http://tinyurl.com/75bgz</A><BR>=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
<BR></DIV>
<BLOCKQUOTE=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #008000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"Tyrone" &lt;<A=20
=
soft.com</A>&gt;=20
wrote in message <A=20
=
1467D-6516-4076-8ADB-2CB6049D24D3@microsoft.com</A>...</DIV>How=20
do I add this conversation in the outlook express =
newsgroup<BR><BR>"Jeff"=20
wrote:<BR><BR>&gt; Josh,<BR>&gt; <BR>&gt; Being as will probably using =
this=20
newsgroup in the future, you may as well <BR>&gt; get setup =
correctly.<BR>&gt;=20
<BR>&gt; To see and download files, you must be using a newsgroup =
reader like=20
Outlook <BR>&gt; Express or there are others.<BR>&gt; <BR>&gt; For =
Outlook=20
Express, click on the link below.&nbsp; Click on "Open with <BR>&gt;=20
newsreader" under the MS Retail Management System section on the =
right. It=20
<BR>&gt; will configure Outlook Express for you and will bring you =
back to=20
this <BR>&gt; newsgroup in Outlook Express.<BR>&gt; <BR>&gt; <A=20
href=3D"http://tinyurl.com/75bgz">http://tinyurl.com/75bgz</A><BR>&gt; =
<BR>&gt;=20
<BR>&gt; -- <BR>&gt; *<BR>&gt; "Josh" &lt;<A=20
=
.com</A>&gt;=20
wrote in message <BR>&gt; <A=20
=
29C60-293A-42EA-AD50-E25E3B13FA82@microsoft.com</A>...<BR>&gt;=20
I dont see how or where there is an attachment.&nbsp; Can you email it =
to=20
me?<BR>&gt; <A=20
=
om</A><BR>&gt;=20
<BR>&gt; Thanks<BR>&gt; Josh<BR>&gt; <BR>&gt; "Evan Culver" =
wrote:<BR>&gt;=20
<BR>&gt; &gt; Josh,<BR>&gt; &gt;<BR>&gt; &gt; Try the attached =
file.&nbsp; It=20
just looks like some lines got wrapped.<BR>&gt; &gt;<BR>&gt; &gt; =
-<BR>&gt;=20
&gt; Evan Culver<BR>&gt; &gt; New West Technologies<BR>&gt; =
&gt;<BR>&gt;=20
&gt;<BR>&gt; &gt;<BR>&gt; &gt; Josh wrote:<BR>&gt; &gt; &gt; Thank you =
so much=20
rob for the code.&nbsp; I tryed the code and I get 2 errors <BR>&gt; =
&gt; &gt;=20
the<BR>&gt; &gt; &gt; first one says:<BR>&gt; &gt; &gt; line: =
87<BR>&gt; &gt;=20
&gt; char: 19<BR>&gt; &gt; &gt; error:&nbsp; syntax error<BR>&gt; &gt; =
&gt;=20
code: 0<BR>&gt; &gt; &gt; The second one says:<BR>&gt; &gt; &gt; line: =

147<BR>&gt; &gt; &gt; char: 1<BR>&gt; &gt; &gt; error: type mismatch=20
'dostartup'<BR>&gt; &gt; &gt; code: 0<BR>&gt; &gt; &gt;<BR>&gt; &gt; =
&gt; Any=20
help would be helpfull.&nbsp; Not sure what the errors mean.<BR>&gt; =
&gt;=20
&gt;<BR>&gt; &gt; &gt; Thanks,<BR>&gt; &gt; &gt; Joshua Wenger<BR>&gt; =
&gt;=20
&gt;<BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt; "Rob" wrote:<BR>&gt; &gt;=20
&gt;<BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt;&gt;Copy and past the code =
below into=20
Notepad or Frontpage and save it as an <BR>&gt; &gt; =
&gt;&gt;.htm<BR>&gt; &gt;=20
&gt;&gt;file.<BR>&gt; &gt; &gt;&gt;If you use Notepad be sure to =
change the=20
File Type to All Files. Or just<BR>&gt; &gt; &gt;&gt;piece the code =
that you=20
need from this example into your file.<BR>&gt; &gt; &gt;&gt;I modified =
this to=20
display the image of the last item added to the<BR>&gt; &gt;=20
&gt;&gt;transaction or the currenlty highlighted item. If the item =
does not=20
have <BR>&gt; &gt; &gt;&gt;an<BR>&gt; &gt; &gt;&gt;image assiged then =
it=20
displays a generic 'no image available' pic.<BR>&gt; &gt; =
&gt;&gt;<BR>&gt;=20
&gt; &gt;&gt;Rob<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt; &gt;&gt;<BR>&gt; =
&gt;=20
&gt;&gt;&lt;html&gt;<BR>&gt; &gt; &gt;&gt; &lt;head&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp; &lt;meta http-equiv=3D"Content-Language"=20
content=3D"en-us"&gt;<BR>&gt; &gt; &gt;&gt;&nbsp; &lt;title&gt;Default =
Status=20
Screen&lt;/title&gt;<BR>&gt; &gt; &gt;&gt;&nbsp; &lt;style&gt;<BR>&gt; =
&gt;=20
&gt;&gt;<BR>&gt; &gt; &gt;&gt;.LineHeader {<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; font-family: Arial;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; font-size: 16;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; color: white;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; background-color: black;<BR>&gt; &gt;=20
&gt;&gt;}<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt; &gt;&gt;.LineDivider =
{<BR>&gt;=20
&gt; &gt;&gt;&nbsp;&nbsp;&nbsp; color: white;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; background-color: gray;<BR>&gt; &gt;=20
&gt;&gt;}<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt; &gt;&gt;.LineData =
{<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; font-family: Arial;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; font-size: 36;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; color: #00FF00;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; background-color: black;<BR>&gt; &gt;=20
&gt;&gt;}<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
&lt;/style&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp; &lt;!--<BR>&gt; &gt; &gt;&gt;//=20
------------------------------------<BR>&gt; &gt; &gt;&gt;// external =
opjects=20
used by JScript<BR>&gt; &gt; &gt;&gt;//=20
------------------------------------<BR>&gt; &gt; =
&gt;&gt;--&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp; &lt;!--<BR>&gt; &gt; &gt;&gt;// QSBridge exposes =
internal QSC=20
objects and allows scripting language <BR>&gt; &gt; &gt;&gt;to<BR>&gt; =
&gt;=20
&gt;&gt;access information on the current<BR>&gt; &gt; &gt;&gt;//=20
transaction.<BR>&gt; &gt; &gt;&gt;--&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;=20
&lt;OBJECT classid=3D"clsid:44C4C3AC-D0F1-11D2-919D-006008C88FC3" =
<BR>&gt; &gt;=20
&gt;&gt; height=3D"0"<BR>&gt; &gt; &gt;&gt;id=3D"qsBridge" =
style=3D"LEFT: 0px; TOP:=20
0px" width=3D"0" &gt;<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; &lt;PARAM=20
NAME=3D"_ExtentX" VALUE=3D"26"&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; =
&lt;PARAM=20
NAME=3D"_ExtentY" VALUE=3D"26"&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;=20
&lt;/OBJECT&gt;<BR>&gt; &gt; &gt;&gt;&nbsp; &lt;script=20
language=3D"VBScript"&gt;<BR>&gt; &gt; &gt;&gt;&lt;!--<BR>&gt; &gt;=20
&gt;&gt;<BR>&gt; &gt; &gt;&gt;Dim TimerID<BR>&gt; &gt; =
&gt;&gt;<BR>&gt; &gt;=20
&gt;&gt;<BR>&gt; &gt; &gt;&gt;' =
------------------------------------<BR>&gt;=20
&gt; &gt;&gt;' displayVariables<BR>&gt; &gt; &gt;&gt;'=20
------------------------------------<BR>&gt; &gt; &gt;&gt;<BR>&gt; =
&gt;=20
&gt;&gt;Function displayVariables<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; On =
Error=20
Resume Next<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; =
Dim=20
QSRules<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; Dim Entry<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp; Dim TransasctionItem<BR>&gt; &gt; =
&gt;&gt;&nbsp;&nbsp;=20
Dim txtItemLookupCode<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; Dim=20
txtDescription<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; Dim txtPrice<BR>&gt; =
&gt;=20
&gt;&gt;&nbsp;&nbsp; Dim txtQuantity<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; =
Dim=20
txtExtended<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; Dim =
PictureFileName<BR>&gt; &gt;=20
&gt;&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; Dim RS<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp; Dim SQL<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; Dim=20
Conn<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; Set =
QSRules =3D=20
qsBridge.RequestQSRules()<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp; txtDescription&nbsp;&nbsp;&nbsp; =3D " "<BR>&gt; =
&gt;=20
&gt;&gt;&nbsp;&nbsp; txtQuantity&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
=3D "=20
"<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp;=20
txtPrice&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =3D " =
"<BR>&gt;=20
&gt; &gt;&gt;&nbsp;&nbsp; =
txtExtended&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =3D "=20
"<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; txtPicture&nbsp;&nbsp; =3D=20
"noimage.jpg"<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; PictureFileName =3D =
""<BR>&gt;=20
&gt; &gt;&gt;&nbsp;&nbsp; SQL =3D ""<BR>&gt; &gt; &gt;&gt;<BR>&gt; =
&gt;=20
&gt;&gt;&nbsp;&nbsp; Set RS =3D Nothing<BR>&gt; &gt; &gt;&gt;<BR>&gt; =
&gt;=20
&gt;&gt;&nbsp;&nbsp; Set Entry =3D Nothing<BR>&gt; &gt; =
&gt;&gt;&nbsp;&nbsp; Set=20
TransactionItem =3D Nothing<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp; If Not QSRules Is Nothing Then<BR>&gt; &gt;=20
&gt;&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' This =
line is=20
valid after version 1.07<BR>&gt; &gt; =
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
Set Entry =3D<BR>&gt; &gt;=20
=
&gt;&gt;QSRules.Transaction.Entries(QSRules.Transaction.CurrentEntryKey)<=
BR>&gt;=20
&gt; &gt;&gt;<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If Entry Is Nothing =
then<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Entry =
=3D<BR>&gt;=20
&gt;=20
=
&gt;&gt;QSRules.Transaction.Entries(QSRules.Transaction.Entries.Count)<BR=
>&gt;=20
&gt; &gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End IF<BR>&gt; &gt;=20
&gt;&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If Not =
Entry Is=20
Nothing Then<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
txtDescription&nbsp;&nbsp;&nbsp; =3D Entry.Description<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
txtQuantity&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =3D =
Entry.Quantity<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
txtPrice&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =3D=20
FormatCurrency(Entry.Price)<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
txtExtended&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =3D=20
FormatCurrency(Entry.ExtendedPrice)<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SQL =3D =
"SELECT=20
PictureName FROM Item WHERE ItemLookupCode =3D '" +<BR>&gt; &gt;=20
&gt;&gt;Entry.Item.ItemLookupcode + "'"<BR>&gt; &gt; =
&gt;&gt;&nbsp;&nbsp; Set=20
Rs =3D QSRules.OpenRecordSet((SQL),(-1))<BR>&gt; &gt; =
&gt;&gt;&nbsp;&nbsp; If=20
Not Rs.EOF Then<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
PictureFileName =3D Rs("PictureName")<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End =
If<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp; End If<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp; If Description.innerText &lt;&gt; txtDescription=20
Then<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
Description.innerText=20
=3D txtDescription<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; End If<BR>&gt; =
&gt;=20
&gt;&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; If Quantity.innerText =
&lt;&gt;=20
txtQuantity Then<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
Quantity.innerText =3D txtQuantity<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; =
End=20
If<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; If =
Price.innerText=20
&lt;&gt; txtPrice Then<BR>&gt; &gt; =
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
Price.innerText =3D txtPrice<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; End =
If<BR>&gt;=20
&gt; &gt;&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; If Extended.innerText =
&lt;&gt;=20
txtExtended Then<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
Extended.innerText =3D txtExtended<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; =
End=20
If<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; If =
PictureFileName=20
&lt;&gt; "" Then<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
PictureFile.src =3D "C:Program FilesMicrosoft Retail =
Management<BR>&gt; &gt;=20
&gt;&gt;SystemStore OperationsPictures" &amp; =
PictureFileName<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp; Else<BR>&gt; &gt; =
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
PictureFile.src =3D "C:Program FilesMicrosoft Retail =
Management<BR>&gt; &gt;=20
&gt;&gt;SystemStore OperationsPictures" &amp; txtPicture<BR>&gt; =
&gt;=20
&gt;&gt;&nbsp;&nbsp; End If<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt; =
&gt;&gt;End=20
Function<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt;=20
&gt;&gt;Function doStartup<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp; ' use a timer to run displayVariables() =
periodically=20
every second<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; TimerID =3D=20
window.setInterval("displayVariables()", 500)<BR>&gt; &gt; =
&gt;&gt;<BR>&gt;=20
&gt; &gt;&gt;End Function<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt;=20
&gt;&gt;//--&gt;<BR>&gt; &gt; &gt;&gt;&nbsp; &lt;/script&gt;<BR>&gt; =
&gt;=20
&gt;&gt; &lt;/head&gt;<BR>&gt; &gt; &gt;&gt; &lt;body =
bgcolor=3D"black"=20
topmargin=3D"0" leftmargin=3D"0" onload=3D"doStartup()"<BR>&gt; &gt;=20
&gt;&gt;scroll=3D"yes"&gt;<BR>&gt; &gt; &gt;&gt;&nbsp; &lt;table =
border=3D"0"=20
width=3D"100%" cellspacing=3D"1" cellpadding=3D"0"&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp; &lt;tr class=3D"LineHeader" =
valign=3D"top"&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; &lt;td width=3D"40%" =
align=3D"left"&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; Description<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; &lt;/td&gt;<BR>&gt; &gt; =
&gt;&gt;&nbsp;&nbsp;&nbsp;=20
&lt;td width=3D"10%" align=3D"right"&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; Quantity<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; &lt;/td&gt;<BR>&gt; &gt; =
&gt;&gt;&nbsp;&nbsp;&nbsp;=20
&lt;td width=3D"20%" align=3D"right"&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; Price<BR>&gt; &gt; =
&gt;&gt;&nbsp;&nbsp;&nbsp;=20
&lt;/td&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp;&nbsp; &lt;td =
width=3D"20%"=20
align=3D"right"&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;=20
Extended<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp;&nbsp; &lt;/td&gt;<BR>&gt; =
&gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; &lt;td width=3D"10%" =
align=3D"right"&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Picture<BR>&gt; =
&gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; &lt;/td&gt;<BR>&gt; &gt; =
&gt;&gt;&nbsp;&nbsp;=20
&lt;/tr&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; &lt;tr =
class=3D"LineDivider"=20
width=3D"100%" valign=3D"top" height=3D"1"&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; &lt;td colspan=3D"5"&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; &lt;/td&gt;<BR>&gt; &gt; =
&gt;&gt;&nbsp;&nbsp;=20
&lt;/tr&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp; &lt;tr =
class=3D"LineData"=20
valign=3D"top"&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp;&nbsp; &lt;td =
width=3D"10%"=20
align=3D"left" id=3D"Description"&gt;<BR>&gt; &gt; &gt;&gt;<BR>&gt; =
&gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; &lt;/td&gt;<BR>&gt; &gt; =
&gt;&gt;&nbsp;&nbsp;&nbsp;=20
&lt;td width=3D"10%" align=3D"right" id=3D"Quantity"&gt;<BR>&gt; &gt;=20
&gt;&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp;&nbsp; &lt;/td&gt;<BR>&gt; =
&gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; &lt;td width=3D"20%" align=3D"right"=20
id=3D"Price"&gt;<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt; =
&gt;&gt;&nbsp;&nbsp;&nbsp;=20
&lt;/td&gt;<BR>&gt; &gt; &gt;&gt;&nbsp;&nbsp;&nbsp; &lt;td =
width=3D"20%"=20
align=3D"right" id=3D"Extended"&gt;<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt; =

&gt;&gt;&nbsp;&nbsp;&nbsp; &lt;/td&gt;<BR>&gt; &gt; =
&gt;&gt;&nbsp;&nbsp;&nbsp;=20
&lt;td width=3D"40%" align=3D"right"&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;img id =3D =
"PictureFile"=20
height=3D"100" width=3D"110"&gt;<BR>&gt; &gt; &gt;&gt;<BR>&gt; &gt;=20
&gt;&gt;&nbsp;&nbsp;&nbsp; &lt;/td&gt;<BR>&gt; &gt; =
&gt;&gt;&nbsp;&nbsp;=20
&lt;/tr&gt;<BR>&gt; &gt; &gt;&gt;&nbsp; &lt;/table&gt;<BR>&gt; &gt; =
&gt;&gt;=20
&lt;/body&gt;<BR>&gt; &gt; &gt;&gt;&lt;/html&gt;<BR>&gt; &gt; =
&gt;&gt;<BR>&gt;=20
&gt; &gt;&gt;<BR>&gt; &gt; &gt;&gt;"Josh" wrote:<BR>&gt; &gt; =
&gt;&gt;<BR>&gt;=20
&gt; &gt;&gt;<BR>&gt; &gt; &gt;&gt;&gt;It there a way for me to =
customize the=20
status bar to show the item <BR>&gt; &gt; &gt;&gt;&gt;picture<BR>&gt; =
&gt;=20
&gt;&gt;&gt;after a item is scanned?<BR>&gt; &gt;<BR>&gt; &gt; =
<BR>&gt;=20
<BR>&gt; <BR>&gt;</BLOCKQUOTE></BODY></HTML>

------=
Posted by Tyrone on September 21, 2007, 5:58 pm
Please log in for more thread options
Please resubmit a copy of the POS html status bar which includes the
capability to view item pictures. Thank You

"Jeff @ Check Point Software" wrote:

> Tyrone,
>
> I don't understand.
>
> If you wish to use Outlook Express for reading the newsgroup, follow the
instructions below in my tagline.
>
> If you are asking how to see all of the messages in the newsgroup using OE, go
to Tools | Options | Read tab | uncheck Get x number headers at a time | Tools |
Get new headers and it will download all 2679 (at this posting time) messages.

>
> --
>
> Jeff
> Check Point Software
>
> =====================================================
>
> You must be using Outlook Express/Windows Mail or some other type of newsgroup
reader to
> see and download the file attachment(s). If you are not using a reader, follow
> the link below to setup Outlook Express. Click on "Open with newsreader"
> under the MS Retail Management System on the right.
>
> http://tinyurl.com/75bgz
> =====================================================
>
> How do I add this conversation in the outlook express newsgroup
>
> "Jeff" wrote:
>
> > Josh,
> >
> > Being as will probably using this newsgroup in the future, you may as well
> > get setup correctly.
> >
> > To see and download files, you must be using a newsgroup reader like
Outlook
> > Express or there are others.
> >
> > For Outlook Express, click on the link below. Click on "Open with
> > newsreader" under the MS Retail Management System section on the right. It
> > will configure Outlook Express for you and will bring you back to this
> > newsgroup in Outlook Express.
> >
> > http://tinyurl.com/75bgz
> >
> >
> > --
> > *
> > I dont see how or where there is an attachment. Can you email it to me?
> > pfmabookstore@cybertrails.com
> >
> > Thanks
> > Josh
> >
> > "Evan Culver" wrote:
> >
> > > Josh,
> > >
> > > Try the attached file. It just looks like some lines got wrapped.
> > >
> > > -
> > > Evan Culver
> > > New West Technologies
> > >
> > >
> > >
> > > Josh wrote:
> > > > Thank you so much rob for the code. I tryed the code and I get 2
errors
> > > > the
> > > > first one says:
> > > > line: 87
> > > > char: 19
> > > > error: syntax error
> > > > code: 0
> > > > The second one says:
> > > > line: 147
> > > > char: 1
> > > > error: type mismatch 'dostartup'
> > > > code: 0
> > > >
> > > > Any help would be helpfull. Not sure what the errors mean.
> > > >
> > > > Thanks,
> > > > Joshua Wenger
> > > >
> > > >
> > > > "Rob" wrote:
> > > >
> > > >
> > > >>Copy and past the code below into Notepad or Frontpage and save it as
an
> > > >>.htm
> > > >>file.
> > > >>If you use Notepad be sure to change the File Type to All Files. Or
just
> > > >>piece the code that you need from this example into your file.
> > > >>I modified this to display the image of the last item added to the
> > > >>transaction or the currenlty highlighted item. If the item does not
have
> > > >>an
> > > >>image assiged then it displays a generic 'no image available' pic.
> > > >>
> > > >>Rob
> > > >>
> > > >>
> > > >><html>
> > > >> <head>
> > > >> <meta http-equiv="Content-Language" content="en-us">
> > > >> <title>Default Status Screen</title>
> > > >> <style>
> > > >>
> > > >>.LineHeader {
> > > >> font-family: Arial;
> > > >> font-size: 16;
> > > >> color: white;
> > > >> background-color: black;
> > > >>}
> > > >>
> > > >>.LineDivider {
> > > >> color: white;
> > > >> background-color: gray;
> > > >>}
> > > >>
> > > >>.LineData {
> > > >> font-family: Arial;
> > > >> font-size: 36;
> > > >> color: #00FF00;
> > > >> background-color: black;
> > > >>}
> > > >>
> > > >> </style>
> > > >> <!--
> > > >>// ------------------------------------
> > > >>// external opjects used by JScript
> > > >>// ------------------------------------
> > > >>-->
> > > >> <!--
> > > >>// QSBridge exposes internal QSC objects and allows scripting language
> > > >>to
> > > >>access information on the current
> > > >>// transaction.
> > > >>-->
> > > >> <OBJECT classid="clsid:44C4C3AC-D0F1-11D2-919D-006008C88FC3"
> > > >> height="0"
> > > >>id="qsBridge" style="LEFT: 0px; TOP: 0px" width="0" >
> > > >> <PARAM NAME="_ExtentX" VALUE="26">
> > > >> <PARAM NAME="_ExtentY" VALUE="26">
> > > >> </OBJECT>
> > > >> <script language="VBScript">
> > > >><!--
> > > >>
> > > >>Dim TimerID
> > > >>
> > > >>
> > > >>' ------------------------------------
> > > >>' displayVariables
> > > >>' ------------------------------------
> > > >>
> > > >>Function displayVariables
> > > >> On Error Resume Next
> > > >>
> > > >> Dim QSRules
> > > >> Dim Entry
> > > >> Dim TransasctionItem
> > > >> Dim txtItemLookupCode
> > > >> Dim txtDescription
> > > >> Dim txtPrice
> > > >> Dim txtQuantity
> > > >> Dim txtExtended
> > > >> Dim PictureFileName
> > > >>
> > > >> Dim RS
> > > >> Dim SQL
> > > >> Dim Conn
> > > >>
> > > >> Set QSRules = qsBridge.RequestQSRules()
> > > >>
> > > >> txtDescription = " "
> > > >> txtQuantity = " "
> > > >> txtPrice = " "
> > > >> txtExtended = " "
> > > >> txtPicture = "noimage.jpg"
> > > >> PictureFileName = ""
> > > >> SQL = ""
> > > >>
> > > >> Set RS = Nothing
> > > >>
> > > >> Set Entry = Nothing
> > > >> Set TransactionItem = Nothing
> > > >>
> > > >> If Not QSRules Is Nothing Then
> > > >>
> > > >> ' This line is valid after version 1.07
> > > >> Set Entry =
> > > >>QSRules.Transaction.Entries(QSRules.Transaction.CurrentEntryKey)
> > > >>
> > > >>
> > > >> If Entry Is Nothing then
> > > >> Set Entry =
> > > >>QSRules.Transaction.Entries(QSRules.Transaction.Entries.Count)
> > > >> End IF
> > > >>
> > > >> If Not Entry Is Nothing Then
> > > >> txtDescription = Entry.Description
> > > >> txtQuantity = Entry.Quantity
> > > >> txtPrice = FormatCurrency(Entry.Price)
> > > >> txtExtended = FormatCurrency(Entry.ExtendedPrice)
> > > >> SQL = "SELECT PictureName FROM Item WHERE ItemLookupCode = '"
+
> > > >>Entry.Item.ItemLookupcode + "'"
> > > >> Set Rs = QSRules.OpenRecordSet((SQL),(-1))
> > > >> If Not Rs.EOF Then
> > > >> PictureFileName = Rs("PictureName")
> > > >> End If
> > > >> End If
> > > >> End If
> > > >>
> > > >> If Description.innerText <> txtDescription Then
> > > >> Description.innerText = txtDescription
> > > >> End If
> > > >>
> > > >> If Quantity.innerText <> txtQuantity Then
> > > >> Quantity.innerText = txtQuantity
> > > >> End If
> > > >>
> > > >> If Price.innerText <> txtPrice Then
> > > >> Price.innerText = txtPrice
> > > >> End If
> > > >>
> > > >> If Extended.innerText <> txtExtended Then
> > > >> Extended.innerText = txtExtended
> > > >> End If
> > > >>
> > > >> If PictureFileName <> "" Then
> > > >> PictureFile.src = "C:Program FilesMicrosoft Retail Management
> > > >>SystemStore OperationsPictures" & PictureFileName
> > > >> Else
> > > >> PictureFile.src = "C:Program FilesMicrosoft Retail Management
> > > >>SystemStore OperationsPictures" & txtPicture
> > > >> End If
> > > >>
> > > >>End Function
> > > >>
> > > >>
> > > >>Function doStartup
> > > >>
> > > >> ' use a timer to run displayVariables() periodically every second
> > > >> TimerID = window.setInterval("displayVariables()", 500)
> > > >>
> > > >>End Function
> > > >>
> > > >>//-->
> > > >> </script>
> > > >> </head>
> > > >> <body bgcolor="black" topmargin="0" leftmargin="0"
onload="doStartup()"
> > > >>scroll="yes">
> > > >> <table border="0" width="100%" cellspacing="1" cellpadding="0">
> > > >> <tr class="LineHeader" valign="top">
> > > >> <td width="40%" align="left">
> > > >> Description
> > > >> </td>
> > > >> <td width="10%" align="right">
> > > >> Quantity
> > > >> </td>
> > > >> <td width="20%" align="right">
> > > >> Price
> > > >> </td>
> > > >> <td width="20%" align="right">
> > > >> Extended
> > > >> </td>
> > > >> <td width="10%" align="right">
> > > >> Picture
> > > >> </td>
> > > >> </tr>
> > > >> <tr class="LineDivider" width="100%" valign="top" height="1">
> > > >> <td colspan="5">
> > > >> </td>
> > > >> </tr>
> > > >> <tr class="LineData" valign="top">
> > > >> <td width="10%" align="left" id="Description">
> > > >>
> > > >> </td>
> > > >> <td width="10%" align="right" id="Quantity">
> > > >>
> > > >> </td>
> > > >> <td width="20%" align="right" id="Price">
> > > >>
> > > >> </td>
> > > >> <td width="20%" align="right" id="Extended">
> > > >>
> > > >> </td>
> > > >> <td width="40%" align="right">
> > > >> <img id = "PictureFile" height="100" width="110">
> > > >>
> > > >> </td>
> > > >> </tr>
> > > >> </table>
> > > >> </body>
> > > >></html>
> > > >>
> > > >>
> > > >>"Josh" wrote:
> > > >>
> > > >>

Posted by Brian_McCarthy on October 29, 2007, 4:45 pm
Please log in for more thread options


"Josh" wrote:

> It there a way for me to customize the status bar to show the item picture
> after a item is scanned?

Similar ThreadsPosted
HTML Status Bar on RMS POS December 9, 2005, 5:28 pm
HTML STATUS BAR September 25, 2006, 9:50 am
HTML Status Bar February 10, 2007, 4:20 pm
html status screen