The UK Home Automation Archive

Archive Home
Group Home
Search Archive


Advanced Search

The UKHA-ARCHIVE IS CEASING OPERATIONS 31 DEC 2024


[Message Prev][Message Next][Thread Prev][Thread Next][Message Index][Thread Index]

RE: RE: example VB.net xAP apps and docs?



--_000_564D52CC2069D44EB996CDEAD94D911E206945366Bhomeserver2ho_
Content-Type: text/plain; charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable

Many thanks Edward =96 I=92ll try those out :)

Paul.

From: xap_automation@xxxxxxx [mailto:xap_automation@xxxxxxx=
] On Behalf Of Edward Pearson
Sent: 16 February 2009 18:35
To: xap_automation@xxxxxxx
Subject: RE: [xap_automation] RE: example VB.net xAP apps and docs?

Going a little further, this enhanced reader application shows how to
start=
picking apart messages:

Imports KCS.xAP.Framework.Transport
Imports KCS.xAP.Framework.Message

Module xAPReader

Dim WithEvents listener As New xAPHubClientListener

Sub Main()
Console.WriteLine("xAP message reader (VB.Net) - hit return to exit=
")
Console.WriteLine(String.Format("My address=3D{0}, UID=3D{1}",
list=
ener.Heartbeat.Source, listener.Heartbeat.UID))
listener.Start()
Console.ReadLine()
End Sub

Sub Listener_EventHandler(ByVal sender As Object, ByVal msgEvent As xAP=
MessageEventArgs) Handles listener.eventMessageReceived

Dim msg As xAPMessage =3D msgEvent.Message
Dim hdr As xAPHeaderBase =3D msg.Header
Dim body As xAPMessageBody =3D msg.Body

Console.WriteLine(String.Format("Received {0} from {1}, UID {2}",
h=
dr.Class, hdr.Source, hdr.UID))

For Each block As xAPMessageBlock In body

Console.WriteLine(String.Format("    Block: {0}", block.Name))

For Each parameter As String In block.Keys
Dim v As xAPPairValue =3D block(parameter)
Console.WriteLine(String.Format("        {0} =3D {1}", para=
meter, v.Value))
Next
Next
End Sub
End Module



From: xap_automation@xxxxxxx [mailto:xap_automation@xxxxxxx=
] On Behalf Of Edward Pearson
Sent: 16 February 2009 18:16
To: xap_automation@xxxxxxx
Subject: RE: [xap_automation] RE: example VB.net xAP apps and docs?

Not quite =93Hello World!=94 but this is a very simple vb.net app that
uses=
xFx to print xAP messages to the console=85

Module Module1
Private WithEvents myListener As KCS.xAP.Framework.Transport.xAPHubClie=
ntListener

Sub Main()
myListener =3D New KCS.xAP.Framework.Transport.xAPHubClientListener=
()
myListener.Start()
Console.ReadLine()
End Sub

Sub rcvMsg(ByVal sender As Object, ByVal eventArgs As KCS.xAP.Framework=
.Transport.xAPMessageEventArgs) Handles myListener.eventMessageReceived
Console.WriteLine(eventArgs.Message.ToString())
End Sub
End Module


From: xap_automation@xxxxxxx [mailto:xap_automation@xxxxxxx=
] On Behalf Of Kevin Hawkins
Sent: 16 February 2009 16:46
To: xap_automation@xxxxxxx
Subject: Re: [xap_automation] RE: example VB.net xAP apps and docs?


I have a xAP BSC Framework - which is basically all the code you need to
implement a BSC device model in VB6. It originally used Patricks OCX
but due to the memory leak in that I swapped it to the Intranet OCX and
updated it to xAP v1.3 It is effectively documented within the source
code but it still needs a bit of attention before being 'prime time' .
Works though... but is in in VB6. If that's any use to you then shout
- but it won't just convert to a VB.Net application and I don't want to
get involved in doing that either as xFX is far more suitable.

There are other VB6 applications around with source code availability -
and IIRC James has some Intranet OCX examples - the xAP bit is
effectively all done for you by the OCX :-)

Kevin

Paul Gale wrote:
>
> Ah OK - that sounds promising - I'll take a look at it.
>
> Are there any code samples for xAP VB6 apps?
>
> Paul.
>
> -----Original Message-----
> From: xap_automation@xxxxxxx<mailto:xap_automation%40yahoogroups.=
com>
> <mailto:xap_automation%40yahoogroups.com>
> [mailto:xap_automation@xxxxxxx<mailto:xap_automation%40yahoogroup=
s.com>
> <mailto:xap_automation%40yahoogroups.com>]
On Behalf Of Kevin Hawkins
> Sent: 16 February 2009 16:15
> To: xap_automation@xxxxxxx<mailto:xap_automation%40yahoogroups.co=
m>
> <mailto:xap_automation%40yahoogroups.com>
> Subject: Re: [xap_automation] RE: example VB.net xAP apps and docs?
>
> For VB6 my recommendation would be to use James' xAP Intranet OCX
which
> is fairly well documented on the mi4 site - Plus I have used it so I
> will be able to help a little there too. You could use it from VB.Net
> too I believe....
>
> K
>
> Paul Gale wrote:
> >
> >
> >
> > Are there any docs for the VB6 based xAP framework - that may at
least
> > give me an idea of how much code is needed and the complexity,
even if
> > xFx is reasonably different???
> >
> > Cheers,
> >
> > Paul.
> >
> >
>
> ------------------------------------
>
> Yahoo! Groups Links
>
> __________ Information from ESET NOD32 Antivirus, version of virus
> signature database 3856 (20090216) __________
>
> The message was checked by ESET NOD32 Antivirus.
>
> http://www.eset.com
<http://www.eset.com>
>
>







__________ Information from ESET NOD32 Antivirus, version of virus
signatur=
e database 3857 (20090216) __________

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com

--_000_564D52CC2069D44EB996CDEAD94D911E206945366Bhomeserver2ho_
Content-Type: text/html; charset=Windows-1252
Content-Transfer-Encoding: quoted-printable





<head>

<style type=3D"text/css">
<!--

/* start of attachment style */
.ygrp-photo-title{
clear: both;
font-size: smaller;
height: 15px;
overflow: hidden;
text-align: center;
width: 75px;
}
div.ygrp-photo{
background-position: center;
background-repeat: no-repeat;
background-color: white;
border: 1px solid black;
height: 62px;
width: 62px;
}

div.photo-title=20
a,
div.photo-title a:active,
div.photo-title a:hover,
div.photo-title a:visited {
text-decoration: none;=20
}

div.attach-table div.attach-row {
clear: both;
}

div.attach-table div.attach-row div {
float: left;
/* margin: 2px;*/
}

p {
clear: both;
padding: 15px 0 3px 0;
overflow: hidden;
}

p span {
color: #628C2A;
}

div.ygrp-file {
width: 30px;
valign: middle;
}
div.attach-table div.attach-row div div a {
text-decoration: none;
}

div.attach-table div.attach-row div div span {
font-weight: normal;
}

div.ygrp-file-title {
font-weight: bold;
}
/* end of attachment style */
-->
</style>
</head>
<html xmlns:v=3D"urn:schemas-microsoft-com:vml"
xmlns:o=3D"urn:schemas-micr=
osoft-com:office:office"
xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
xmlns:m=3D"http://schemas.microsoft.com/office/2004/12/omml";
xmlns=3D"http:=
//www.w3.org/TR/REC-html40">

<head>
<meta http-equiv=3DContent-Type content=3D"text/html;
charset=3Dwindows-125=
2">
<meta name=3DGenerator content=3D"Microsoft Word 12 (filtered
medium)">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]-->
<style>
<!--
/* Font Definitions */
@font-face
{font-family:Wingdings;
panose-1:5 0 0 0 0 0 0 0 0 0;}
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
{font-family:Tahoma;
panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
{font-family:Verdana;
panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
{font-family:Consolas;
panose-1:2 11 6 9 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0cm;
margin-bottom:.0001pt;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
a:link, span.MsoHyperlink
{mso-style-priority:99;
color:blue;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{mso-style-priority:99;
color:purple;
text-decoration:underline;}
p
{mso-style-priority:99;
mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
code
{mso-style-priority:99;
font-family:"Courier New";}
pre
{mso-style-priority:99;
mso-style-link:"HTML Preformatted Char";
margin:0cm;
margin-bottom:.0001pt;
font-size:10.0pt;
font-family:"Courier New";}
tt
{mso-style-priority:99;
font-family:"Courier New";}
span.HTMLPreformattedChar
{mso-style-name:"HTML Preformatted Char";
mso-style-priority:99;
mso-style-link:"HTML Preformatted";
font-family:Consolas;}
p.ad, li.ad, div.ad
{mso-style-name:ad;
mso-style-priority:99;
mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
p.ad1, li.ad1, div.ad1
{mso-style-name:ad1;
mso-style-priority:99;
mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
p.ad2, li.ad2, div.ad2
{mso-style-name:ad2;
mso-style-priority:99;
mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
p.ad3, li.ad3, div.ad3
{mso-style-name:ad3;
mso-style-priority:99;
mso-margin-top-alt:auto;
margin-right:0cm;
margin-bottom:7.5pt;
margin-left:0cm;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
p.replbq, li.replbq, div.replbq
{mso-style-name:replbq;
mso-style-priority:99;
margin:3.0pt;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
p.ad4, li.ad4, div.ad4
{mso-style-name:ad4;
mso-style-priority:99;
mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
p.ad5, li.ad5, div.ad5
{mso-style-name:ad5;
mso-style-priority:99;
mso-margin-top-alt:auto;
margin-right:0cm;
margin-bottom:7.5pt;
margin-left:0cm;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
p.ad6, li.ad6, div.ad6
{mso-style-name:ad6;
mso-style-priority:99;
mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
p.ygrp-photo-title, li.ygrp-photo-title, div.ygrp-photo-title
{mso-style-name:ygrp-photo-title;
mso-style-priority:99;
mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
text-align:center;
font-size:10.0pt;
font-family:"Times New Roman","serif";}
span.left
{mso-style-name:left;}
span.bld
{mso-style-name:bld;}
span.yshortcuts
{mso-style-name:yshortcuts;}
span.yshortcuts1
{mso-style-name:yshortcuts1;
font-family:"Verdana","sans-serif";
font-weight:bold;}
span.yshortcuts2
{mso-style-name:yshortcuts2;
font-family:"Verdana","sans-serif";
color:#1E66AE;
font-weight:normal;}
span.EmailStyle36
{mso-style-type:personal;
font-family:"Calibri","sans-serif";
color:#1F497D;}
span.EmailStyle37
{mso-style-type:personal-reply;
font-family:"Calibri","sans-serif";
color:#1F497D;}
.MsoChpDefault
{mso-style-type:export-only;
font-size:10.0pt;}
@page Section1
{size:612.0pt 792.0pt;
margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.Section1
{page:Section1;}
-->
</style>
<!--[if gte mso 9]><xml>
<o:shapedefaults v:ext=3D"edit" spidmax=3D"1026"
/>
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext=3D"edit">
<o:idmap v:ext=3D"edit" data=3D"1" />
</o:shapelayout></xml><![endif]-->
</head>

<body bgcolor=3Dwhite lang=3DEN-GB link=3Dblue vlink=3Dpurple>



<div class=3DSection1>

<p class=3DMsoNormal><span
style=3D'font-size:11.0pt;font-family:"Calibri",=
"sans-serif";
color:#1F497D'>Many thanks Edward =96 I=92ll try those out
</span><span
style=3D'font-size:11.0pt;font-family:Wingdings;color:#1F497D'>J</span><spa=
n
style=3D'font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'=
><o:p></o:p></span></p>

<p class=3DMsoNormal><span
style=3D'font-size:11.0pt;font-family:"Calibri",=
"sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<div>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><span
lang=3DEN-US
style=3D'font-size:10.0pt;font-family:"Arial","sans-serif";col=
or:#1F497D'>Paul.</span><span
lang=3DEN-US style=3D'color:#1F497D'> </span><span
style=3D'color:#1F497D'>=
<o:p></o:p></span></p>

</div>

<p class=3DMsoNormal><span
style=3D'font-size:11.0pt;font-family:"Calibri",=
"sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<div style=3D'border:none;border-left:solid blue 1.5pt;padding:0cm 0cm
0cm =
4.0pt'>

<div>

<div style=3D'border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt
0cm =
0cm 0cm'>

<p class=3DMsoNormal><b><span lang=3DEN-US
style=3D'font-size:10.0pt;font-f=
amily:
"Tahoma","sans-serif"'>From:</span></b><span
lang=3DEN-US style=3D'font-siz=
e:10.0pt;
font-family:"Tahoma","sans-serif"'>
xap_automation@xxxxxxx
[mailto:xap_automation@xxxxxxx]
<b>On Behalf Of </b>Edward Pearson<=
br>
<b>Sent:</b> 16 February 2009 18:35<br>
<b>To:</b> xap_automation@xxxxxxx<br>
<b>Subject:</b> RE: [xap_automation] RE: example VB.net xAP
apps and docs?<=
o:p></o:p></span></p>

</div>

</div>

<p class=3DMsoNormal><o:p>&nbsp;</o:p></p>

<p class=3DMsoNormal><span
style=3D'font-size:11.0pt;font-family:"Calibri",=
"sans-serif";
color:#1F497D'>Going a little further, this enhanced reader application
sho=
ws
how to start picking apart
messages:<o:p></o:p></span></p>

<p class=3DMsoNormal><span
style=3D'font-size:11.0pt;font-family:"Calibri",=
"sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:blue'>Imports</span><span style=3D'font-siz=
e:
10.0pt;font-family:"Courier New";color:#628C2A'>
KCS.xAP.Framework.Transpor=
t<o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:blue'>Imports</span><span style=3D'font-siz=
e:
10.0pt;font-family:"Courier New";color:#628C2A'>
KCS.xAP.Framework.Message<=
o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'><o:p>&nbsp;</o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:blue'>Module</span><span style=3D'font-size=
:10.0pt;
font-family:"Courier New";color:#628C2A'>
xAPReader<o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'><o:p>&nbsp;</o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;
</span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>Dim</span><=
span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> </span>=
<span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>WithEvents<=
/span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> listene=
r </span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>As</span><s=
pan
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> </span>=
<span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>New</span><=
span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'>
xAPHubClientListener<o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'><o:p>&nbsp;</o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;
</span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>Sub</span><=
span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> Main()<=
o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;
Console.WriteLine(</span><span
style=3D'font-size:10.0pt;font-family:"Couri=
er New";
color:#A31515'>&quot;xAP message reader (VB.Net) - hit return to
exit&quot;=
</span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'>)<o:p></=
o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;
Console.WriteLine(</span><span
style=3D'font-size:10.0pt;font-family:"Couri=
er New";
color:blue'>String</span><span
style=3D'font-size:10.0pt;font-family:"Couri=
er New";
color:#628C2A'>.Format(</span><span
style=3D'font-size:10.0pt;font-family:"=
Courier New";
color:#A31515'>&quot;My address=3D{0},
UID=3D{1}&quot;</span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'>,
listener.Heartbeat.Source,
listener.Heartbeat.UID))<o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;
listener.Start()<o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;
Console.ReadLine()<o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;
</span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>End</span><=
span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> </span>=
<span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>Sub<o:p></o=
:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:blue'><o:p>&nbsp;</o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;
</span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>Sub</span><=
span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'>
Listener_EventHandler(</span><span
style=3D'font-size:10.0pt;font-family:"C=
ourier New";
color:blue'>ByVal</span><span
style=3D'font-size:10.0pt;font-family:"Courie=
r New";
color:#628C2A'> sender </span><span
style=3D'font-size:10.0pt;font-family:"=
Courier New";
color:blue'>As</span><span
style=3D'font-size:10.0pt;font-family:"Courier N=
ew";
color:#628C2A'> </span><span
style=3D'font-size:10.0pt;font-family:"Courier=
New";
color:blue'>Object</span><span
style=3D'font-size:10.0pt;font-family:"Couri=
er New";
color:#628C2A'>, </span><span
style=3D'font-size:10.0pt;font-family:"Courie=
r New";
color:blue'>ByVal</span><span
style=3D'font-size:10.0pt;font-family:"Courie=
r New";
color:#628C2A'> msgEvent </span><span
style=3D'font-size:10.0pt;font-family=
:"Courier New";
color:blue'>As</span><span
style=3D'font-size:10.0pt;font-family:"Courier N=
ew";
color:#628C2A'> xAPMessageEventArgs) </span><span
style=3D'font-size:10.0pt=
;
font-family:"Courier
New";color:blue'>Handles</span><span style=3D'font-siz=
e:
10.0pt;font-family:"Courier New";color:#628C2A'>
listener.eventMessageRecei=
ved<o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'><o:p>&nbsp;</o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;
</span><span style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue=
'>Dim</span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> msg </s=
pan><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>As</span><s=
pan
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> xAPMess=
age =3D
msgEvent.Message<o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;
</span><span style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue=
'>Dim</span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> hdr </s=
pan><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>As</span><s=
pan
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> xAPHead=
erBase
=3D msg.Header<o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;
</span><span style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue=
'>Dim</span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> body </=
span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>As</span><s=
pan
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'>
xAPMessageBody =3D msg.Body<o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'><o:p>&nbsp;</o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;
Console.WriteLine(</span><span
style=3D'font-size:10.0pt;font-family:"Couri=
er New";
color:blue'>String</span><span
style=3D'font-size:10.0pt;font-family:"Couri=
er New";
color:#628C2A'>.Format(</span><span
style=3D'font-size:10.0pt;font-family:"=
Courier New";
color:#A31515'>&quot;Received {0} from {1}, UID
{2}&quot;</span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'>, hdr.Cl=
ass,
hdr.Source, hdr.UID))<o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'><o:p>&nbsp;</o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;
</span><span style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue=
'>For</span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> </span>=
<span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>Each</span>=
<span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> block <=
/span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>As</span><s=
pan
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'>
xAPMessageBlock </span><span
style=3D'font-size:10.0pt;font-family:"Courier=
New";
color:blue'>In</span><span
style=3D'font-size:10.0pt;font-family:"Courier N=
ew";
color:#628C2A'> body<o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'><o:p>&nbsp;</o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Console.WriteLine(</span><span
style=3D'font-size:10.0pt;font-family:"Couri=
er New";
color:blue'>String</span><span
style=3D'font-size:10.0pt;font-family:"Couri=
er New";
color:#628C2A'>.Format(</span><span
style=3D'font-size:10.0pt;font-family:"=
Courier New";
color:#A31515'>&quot;&nbsp;&nbsp;&nbsp; Block:
{0}&quot;</span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'>, block.=
Name))<o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'><o:p>&nbsp;</o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span><span style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue=
'>For</span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> </span>=
<span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>Each</span>=
<span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> paramet=
er </span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>As</span><s=
pan
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> </span>=
<span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>String</spa=
n><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> </span>=
<span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>In</span><s=
pan
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> block.K=
eys<o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span><span style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue=
'>Dim</span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> v </spa=
n><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>As</span><s=
pan
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> xAPPair=
Value
=3D block(parameter)<o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Console.WriteLine(</span><span
style=3D'font-size:10.0pt;font-family:"Couri=
er New";
color:blue'>String</span><span
style=3D'font-size:10.0pt;font-family:"Couri=
er New";
color:#628C2A'>.Format(</span><span
style=3D'font-size:10.0pt;font-family:"=
Courier New";
color:#A31515'>&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
{0} =3D {1}=
&quot;</span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'>, parame=
ter,
v.Value))<o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span><span style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue=
'>Next<o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;
</span><span style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue=
'>Next<o:p></o:p></span></p>

<p class=3DMsoNormal style=3D'text-autospace:none'><span
style=3D'font-size=
:10.0pt;
font-family:"Courier
New";color:#628C2A'>&nbsp;&nbsp;&nbsp;
</span><span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>End</span><=
span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:#628C2A'> </span>=
<span
style=3D'font-size:10.0pt;font-family:"Courier
New";color:blue'>Sub<o:p></o=
:p></span></p>

<p class=3DMsoNormal><span
style=3D'font-size:10.0pt;font-family:"Courier N=
ew";
color:blue'>End</span><span
style=3D'font-size:10.0pt;font-family:"Courier =
New";
color:#628C2A'> </span><span
style=3D'font-size:10.0pt;font-family:"Courier=
New";
color:blue'>Module<o:p></o:p></span></p>

<p class=3DMsoNormal><span
style=3D'font-size:10.0pt;font-family:"Courier N=
ew";
color:blue'><o:p>&nbsp;</o:p></span></p>

<p class=3DMsoNormal><span
style=3D'font-size:11.0pt;font-family:"Calibri",=
"sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<p class=3DMsoNormal><span
style=3D'font-size:11.0pt;font-family:"Calibri",=
"sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<div style=3D'border:none;border-left:solid blue 1.5pt;padding:0cm 0cm
0cm =
4.0pt'>

<div>

<div style=3D'border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt
0cm =
0cm 0cm'>

<p class=3DMsoNormal><b><span lang=3DEN-US
style=3D'font-size:10.0pt;font-f=
amily:
"Tahoma","sans-serif";color:#628C2A'>From:</span></b><span
lang=3DEN-US
style=3D'font-size:10.0pt;font-family:"Tahoma","sans-serif";color:#628C2A'>
xap_automation@xxxxxxx [mailto:xap_automation@xxxxxxx]
<b>O=
n
Behalf Of </b>Edward Pearson<br>
<b>Sent:</b> 16 February 2009 18:16<br>
<b>To:</b> xap_automation@xxxxxxx<br>
<b>Subject:</b> RE: [xap_automation] RE: example VB.net xAP
apps and docs?<=
o:p></o:p></span></p>

</div>

</div>

<p class=3DMsoNormal><o:p>&nbsp;</o:p></p>

<div id=3Dygrp-mlmsg>

<div id=3Dygrp-msg>

<div id=3Dygrp-text>

<div>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><span
style=3D'font-size:11.0pt;color:#1F497D'>Not quite =93Hello World!=94
but t=
his is a
very simple vb.net app that uses xFx to print xAP messages to the console=
=85</span><o:p></o:p></p>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><span
style=3D'font-size:11.0pt;color:#1F497D'>&nbsp;</span><o:p></o:p></p>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><span
style=3D'font-size:10.0pt;font-family:Consolas;color:blue'>Module</span><sp=
an
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>
Module1</spa=
n><o:p></o:p></p>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>&nbsp;&nbsp;&=
nbsp; </span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:blue'>Private</span><s=
pan
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>
</span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:blue'>WithEvents</span=
><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>
myListener <=
/span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:blue'>As</span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>
KCS.xAP.Framework.Transport.xAPHubClientListener</span><o:p></o:p></p>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>&nbsp;</span>=
<o:p></o:p></p>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>&nbsp;&nbsp;&=
nbsp; </span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:blue'>Sub</span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>
Main()</span=
><o:p></o:p></p>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
myListener =3D </span><span
style=3D'font-size:10.0pt;font-family:Consolas;
color:blue'>New</span><span
style=3D'font-size:10.0pt;font-family:Consolas;
color:#628C2A'>
KCS.xAP.Framework.Transport.xAPHubClientListener()</span><o=
:p></o:p></p>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;myListener.Start()</span><o:p></o:p></p>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Console.ReadLine()</span><o:p></o:p></p>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>&nbsp;&nbsp;&=
nbsp; </span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:blue'>End</span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>
</span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:blue'>Sub</span><o:p><=
/o:p></p>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><span
style=3D'font-size:10.0pt;font-family:Consolas;color:blue'>&nbsp;</span><o:=
p></o:p></p>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>&nbsp;&nbsp;&=
nbsp; </span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:blue'>Sub</span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>
rcvMsg(</spa=
n><span
style=3D'font-size:10.0pt;font-family:Consolas;color:blue'>ByVal</span><spa=
n
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'> sender
</spa=
n><span
style=3D'font-size:10.0pt;font-family:Consolas;color:blue'>As</span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>
</span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:blue'>Object</span><sp=
an
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>,
</span><spa=
n
style=3D'font-size:10.0pt;font-family:Consolas;color:blue'>ByVal</span><spa=
n
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'> eventArgs
</=
span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:blue'>As</span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>
KCS.xAP.Framework.Transport.xAPMessageEventArgs) </span><span
style=3D'font=
-size:
10.0pt;font-family:Consolas;color:blue'>Handles</span><span
style=3D'font-s=
ize:
10.0pt;font-family:Consolas;color:#628C2A'>
myListener.eventMessageReceived=
</span><o:p></o:p></p>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Console.WriteLine(eventArgs.Message.ToString())</span><o:p></o:p></p>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>&nbsp;&nbsp;&=
nbsp; </span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:blue'>End</span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>
</span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:blue'>Sub</span><o:p><=
/o:p></p>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><span
style=3D'font-size:10.0pt;font-family:Consolas;color:blue'>End</span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:#628C2A'>
</span><span
style=3D'font-size:10.0pt;font-family:Consolas;color:blue'>Module</span><o:=
p></o:p></p>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><span
style=3D'font-size:11.0pt;color:#1F497D'>&nbsp;</span><o:p></o:p></p>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><span
style=3D'font-size:11.0pt;color:#1F497D'>&nbsp;</span><o:p></o:p></p>

<div style=3D'border:none;border-left:solid blue 1.5pt;padding:0cm 0cm
0cm =
0cm'>

<div>

<div style=3D'border:none;border-top:solid #B5C4DF 1.0pt;padding:0cm 0cm
0c=
m 0cm'>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'><b><span
lang=3DEN-US
style=3D'font-size:10.0pt;color:#628C2A'>From:</span></b><span
lang=3DEN-US style=3D'font-size:10.0pt;color:#628C2A'>
xap_automation@xxxxxxx [mailto:xap_automation@xxxxxxx]
<b>O=
n
Behalf Of </b>Kevin Hawkins<br>
<b>Sent:</b> 16 February 2009 16:46<br>
<b>To:</b> xap_automation@xxxxxxx<br>
<b>Subject:</b> Re: [xap_automation] RE: example VB.net xAP
apps and docs?<=
/span><o:p></o:p></p>

</div>

</div>

<p class=3DMsoNormal
style=3D'mso-margin-top-alt:auto;mso-margin-bottom-alt=
:auto'>&nbsp;<o:p></o:p></p>

<div id=3Dygrp-mlmsg>

<div id=3Dygrp-msg>

<div id=3Dygrp-text>

<p>I have a xAP BSC Framework - which is basically all the code you
need to=
<br>
implement a BSC device model in VB6. It originally used Patricks OCX
<br>
but due to the memory leak in that I swapped it to the Intranet OCX and
<br=
>
updated it to xAP v1.3 It is effectively documented within the source
<br>
code but it still needs a bit of attention before being 'prime time' .
<br>
Works though... but is in in VB6. If that's any use to you then shout
<br>
- but it won't just convert to a VB.Net application and I don't want to
<br=
>
get involved in doing that either as xFX is far more suitable.<br>
<br>
There are other VB6 applications around with source code availability -
<br=
>
and IIRC James has some Intranet OCX examples - the xAP bit is <br>
effectively all done for you by the OCX :-)<br>
<br>
Kevin<br>
<br>
Paul Gale wrote:<br>
&gt;<br>
&gt; Ah OK - that sounds promising - I'll take a look at it.<br>
&gt;<br>
&gt; Are there any code samples for xAP VB6 apps?<br>
&gt;<br>
&gt; Paul.<br>
&gt;<br>
&gt; -----Original Message-----<br>
&gt; From: <a href=3D"mailto:xap_automation%40yahoogroups.com";>xap_automati=
on@xxxxxxx</a>
<br>
&gt; &lt;mailto:xap_automation%40yahoogroups.com&gt;
<br>
&gt; [mailto:<a href=3D"mailto:xap_automation%40yahoogroups.com";>xap_automa=
tion@xxxxxxx</a>
<br>
&gt; &lt;mailto:xap_automation%40yahoogroups.com&gt;]
On Behalf Of Kevin
Hawkins<br>
&gt; Sent: 16 February 2009 16:15<br>
&gt; To: <a href=3D"mailto:xap_automation%40yahoogroups.com";>xap_automation=
@yahoogroups.com</a>
<br>
&gt; &lt;mailto:xap_automation%40yahoogroups.com&gt;<br>
&gt; Subject: Re: [xap_automation] RE: example VB.net xAP apps and
docs?<br=
>
&gt;<br>
&gt; For VB6 my recommendation would be to use James' xAP Intranet OCX
whic=
h<br>
&gt; is fairly well documented on the mi4 site - Plus I have used it so
I<b=
r>
&gt; will be able to help a little there too. You could use it from
VB.Net<=
br>
&gt; too I believe....<br>
&gt;<br>
&gt; K<br>
&gt;<br>
&gt; Paul Gale wrote:<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; Are there any docs for the VB6 based xAP framework - that
may at
least<br>
&gt; &gt; give me an idea of how much code is needed and the
complexity, ev=
en
if<br>
&gt; &gt; xFx is reasonably different???<br>
&gt; &gt;<br>
&gt; &gt; Cheers,<br>
&gt; &gt;<br>
&gt; &gt; Paul.<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt;<br>
&gt; ------------------------------------<br>
&gt;<br>
&gt; Yahoo! Groups Links<br>
&gt;<br>
&gt; __________ Information from ESET NOD32 Antivirus, version of virus
<br=
>
&gt; signature database 3856 (20090216) __________<br>
&gt;<br>
&gt; The message was checked by ESET NOD32 Antivirus.<br>
&gt;<br>
&gt; <a href=3D"http://www.eset.com";>http://www.eset.com</a>
&lt;<a
href=3D"http://www.eset.com";>http://www.eset.com</a>&gt;<br>
&gt;<br>
&gt; <o:p></o:p></p>

</div>

</div>

</div>

</div>

</div>

</div>

<div>

<p class=3DMsoNormal><span
style=3D'color:white'><o:p>&nbsp;</o:p></span></=
p>

</div>

</div>

</div>

<p class=3DMsoNormal><br>
<br>
<br>
<o:p></o:p></p>

<div>

<p class=3DMsoNormal><span
style=3D'color:white'><o:p></o:p></span></p>

</div>

<p class=3DMsoNormal><br>
<br>
__________ Information from ESET NOD32 Antivirus, version of virus
signatur=
e
database 3857 (20090216) __________<br>
<br>
The message was checked by ESET NOD32 Antivirus.<br>
<br>
<a href=3D"http://www.eset.com";>http://www.eset.com</a><o:p></o:p></p>

</div>

</div>

</div>





<!-- **begin egp html banner** -->

<br>

=20=20=20=20
<br>

<!-- **end egp html banner** -->


<div width=3D"1" style=3D"color: white; clear:
both;"/>__._,_.___</div>

<!-- Start Recommendations -->
<!-- End Recommendations -->



<!-- **begin egp html banner** -->

<img src=3D"http://geo.yahoo.com/serv?s=3D97476590/grpId=3D9674343/grpspI=
d=3D1705007709/msgId=3D4256/stime=3D1234860879" width=3D"1"
height=3D"1"> <=
br>

<!-- **end egp html banner** -->

=20=20=20=20
<!-- **begin egp html banner** -->

<br>
<div style=3D"font-family: verdana; font-size: 77%; border-top: 1px
s=
olid #666; padding: 5px 0;" >
Your email settings: Individual EmailTraditional <br>
<a href=3D"http://groups.yahoo.com/group/xap_automation/join;_ylc=3DX=
3oDMTJmZGpqMWw5BF9TAzk3NDc2NTkwBGdycElkAzk2NzQzNDMEZ3Jwc3BJZAMxNzA1MDA3NzA5=
BHNlYwNmdHIEc2xrA3N0bmdzBHN0aW1lAzEyMzQ4NjA4Nzk-">Change settings
via the W=
eb</a> (Yahoo! ID required) <br>
Change settings via email: <a href=3D"mailto:xap_automation-digest@ya=
hoogroups.com?subject=3DEmail Delivery: Digest">Switch delivery to
Daily Di=
gest</a>  <a href =3D "mailto:xap_automation-fullfeatured@xxxxxxx?=
subject=3DChange Delivery Format: Fully Featured">Switch to Fully
Featured<=
/a> <br>
<a href=3D"http://groups.yahoo.com/group/xap_automation;_ylc=3DX=
3oDMTJkNXFqcWg1BF9TAzk3NDc2NTkwBGdycElkAzk2NzQzNDMEZ3Jwc3BJZAMxNzA1MDA3NzA5=
BHNlYwNmdHIEc2xrA2hwZgRzdGltZQMxMjM0ODYwODc5">
Visit Your Group=20
</a>
<a href=3D"http://docs.yahoo.com/info/terms/";>
Yahoo! Groups Terms of Use
</a>
<a href=3D"mailto:xap_automation-unsubscribe@xxxxxxx?subject=
=3DUnsubscribe">
Unsubscribe=20
</a>=20
<br>
</div>
<br>

<!-- **end egp html banner** -->


<div style=3D"color: white; clear:
both;"/>__,_._,___</div>
</body>

</html>

--_000_564D52CC2069D44EB996CDEAD94D911E206945366Bhomeserver2ho_--


xAP_Automation Main Index | xAP_Automation Thread Index | xAP_Automation Home | Archives Home

Comments to the Webmaster are always welcomed, please use this contact form . Note that as this site is a mailing list archive, the Webmaster has no control over the contents of the messages. Comments about message content should be directed to the relevant mailing list.