[prev in list] [next in list] [prev in thread] [next in thread] 

List:       nsbasic-palm
Subject:    Re: Re(2): [nsbasic-palm] Literal Table Overflow
From:       "algehe" <alanheverly () hotmail ! com>
Date:       2007-12-24 17:53:19
Message-ID: fkormf+rocc () eGroups ! com
[Download RAW message or body]

I don't know if this is the most efficient way to do what you need to
do, but this has worked for me.


Dim voldeepf as String

Voldeepf="This is the method to load the string into a database."
voldeepf=voldeepf+"This is the way you would do it if the size of the
string is too big."+chr(10)+Chr(10)
'The chr(10) create new lines in the textbox. 



`Sample of code to actually load database
`remember you have to create the database first


Dim dbvoldeepft as String
dbvoldeepft=voldeepf


if dbKey="voldeepft" then 
    'msgbox "Can't write without key..."
    'exit sub ' no sense continuing if no key
'else
    result=dbOpen(probdb,"probdb.pdb",0) ' open database
    if result not= 0 then 
        msgbox "Database not found"
        exit sub               ' can't continue without database!    
             
    end if
    result=dbFind(probdb,dbKey)             ' see if record exists
with the key
    if result=0 then
        result=alert("Record exists", "Found record with key:
"+dbKey,2,"Replace","Skip") ' yep, something's there 
        if result=0 then
            result=dbUpdate(probdb,dbKey,dbvoldeepft) ' allow update
with current data
            msgbox "Record updated"
        end if
    else
        result=dbInsert(probdb,dbKey,dbvoldeepft)   ' record available
for key, so put the new data there
   end if 
    result=dbClose(probdb)                     ' close the database to
release the pointers
End If


'This is the code that calls the database and loads the string into
the textbox


Dim probdb as Database
Dim dbkey as String
Dim result as Integer

dbKey="voldeepft"

Dim dbvoldeepft as String

If dbKey="voldeepft" Then 
    result=dbOpen(probdb,"probdb.pdb",0)    ' open database
    If result Not= 0 Then 
        MsgBox "Program not found"
        Exit Sub               ' can't continue without database!    
             
    End If
    result=dbFind(probdb,dbKey)                ' otherwise, see if
record exists with the key
    If result=0 Then
        result=dbRead(probdb,dbKey,dbvoldeepft)
            Fld1.text=dbvoldeepft
          Else
        MsgBox "No program found!" '+dbKey  
    End If

    result=dbClose(probdb)                     ' close the database to
release the pointers
End If





--- In nsbasic-palm@yahoogroups.com, "George Henne" <gh@...> wrote:
>
> Did you see this?
> 
> Tutorial 06: Reading and Writing data:
> <http://www.nsbasic.com/palm/info/technotes/TT06.htm>
> 
> 
> 
> >Is there a tutorial on how to use a database?  I saw one on NSBasic but
> >I did not see it actually using the database program.  This stuff
is not
> >natural to me so I have to see a full example before I can actually
do it.
> > 
> >Mike
> >
> >On Dec 24, 2007 2:31 AM, Dwight Norris <norrisd@...> wrote:
> >Mike just off the top real quick
> >I would think you would want to use a database concept to guide the end
> >user to text box information
> >this is a real rough draft
> > 
> >If vINR = 6 or vINR > 6 and vINR < 8 then
> >show listbox with this data
> >else
> >If vINR < 6 or vINR > 4 then
> >show different listbox with this data
> >end if
> > 
> >data entered would be the keyed field in the database
> >the list box data just comes along for the ride or is connected to the
> >INR value
> > 
> >you could get fancy and ask two questions before you show the
database info
> > 
> >like if the INR is 5 and the patient is bleeding
> >you have a database record 5B
> >if the INR is 5 and the patient is NOT bleeding
> >you have a database record 5N
> > 
> >It would seem to me the rate limiting factor here is how many questions
> >do you have to answer
> >before you are presented with an answer
> >this makes this project a FLOW chart exercise
> >with when to trigger the answer since each question will take you to a
> >more precise answer
> > 
> >One other consideration I would consider is how to GO BACK one step
> >(question) if the end user makes
> >a wrong answer ( you would not want the EU to start over in a
possible 7
> >question rules based situation )
> > 
> >and if the answer is given will you permit further questions from the
> >possible correct answer
> > 
> >Like the K is 2.4
> >the obvious answer is give 80 mEq of KCL
> >but the next question we all know we should ask is
> >What is the Mag ?
> >and
> >What is the PO4 level ?
> >so should I use 60 mMol of KPO4
> >the easy way to handle this is just ask the EU to check the Mag and PO4
> >and have guidelines for Mag and PO4 replacement
> >----- Original Message -----
> >From: Michael Ward
> >To: nsbasic-palm@yahoogroups.com
> >Sent: Sunday, December 23, 2007 10:50 PM
> >Subject: Re: [nsbasic-palm] Literal Table Overflow
> >
> >EM Rules has different decision rules, scores etc and a number of
popups
> >i.e. how to manage INR >20
> > 
> >Does that help?
> > 
> >Mike
> >
> >On Dec 24, 2007 12:51 AM, Dwight Norris <norrisd@...> wrote:
> >Mike let me try to refresh my memory
> >your EM rules program
> >Is this the one for drips or a flow chart type application
> >where if you have these signs and symptoms you do this or rule out that
> >and move to the next rule out consideration in the flow chart 
> >
> >As for a Data Base these are a snap in NSBasic
> >and if you are doing the flow chart type app
> >Doug Handys Doc Reader is the perfect tool
> >I have the old version of NSBasic 4.4.2 and use the Doc Reader as a
external 
> >tool
> >I think the new version of NSBasic 6.? includes this Doc Reader as
part of
> >the software
> >I could be way wrong here
> >So if you could supply us with a little more info on how your
program flows
> >we may be able to add more constructive help 
> >If you need to use a database or the doc reader I would be happy to
> >contribute
> >suggestions and code
> >dwight
> >----- Original Message -----
> >From: "Michael Ward" < mward04@...>
> >To: <nsbasic-palm@yahoogroups.com>
> >Sent: Sunday, December 23, 2007 10:29 PM
> >Subject: [nsbasic-palm] Literal Table Overflow 
> >
> >> So I've encountered a "Literal Table Overflow" error in my EM Rules
> >> program. I'm assuming this is because I didn't use a database and put
> >> most of my text in the app itself. My question is how I would use a 
> >> database to offload most of this data to make my program run
smoother.
> >> I've been reluctant to use a database because I'm not really sure how
> >> to do so. I see there's a tutorial but didn't think I really
needed a 
> >> database for an individual static page. Can I use a single database
> >> for multiple different pages? Any one have a good demo with a
database
> >> I could review?
> >>
> >> Thanks!
> >> Mike
> >> 
> >>
> >>
> >>
> >> Complete Searchable Archive:
> >> http://marc.theaimsgroup.com/?l=nsbasic-palm&r=1&w=2 
> >>
> >> Shortcut URL to this page:
> >> http://groups.yahoo.com/group/nsbasic-palm
> >> Yahoo! Groups Links
> >>
> >>
> >>
> >>
> >
> >
> >
> >
> >
> >-- 
> >Michael Ward MD, MBA
> >Resident Physician
> >Department of Emergency Medicine
> >University of Cincinnati
> >
> >
> >
> >-- 
> >Michael Ward MD, MBA
> >Resident Physician
> >Department of Emergency Medicine
> >University of Cincinnati
>



[Attachment #3 (text/html)]

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" \
"http://www.w3.org/TR/html4/strict.dtd"> <html>
<head>
</head>




<body style="background-color: #ffffff;">

<!--~-|**|PrettyHtmlStartT|**|-~-->
<div id="ygrp-mlmsg" style="width:655px; position:relative;">
  <div id="ygrp-msg" style="width: 490px; padding: 0 15px 0 0; float:left;  \
z-index:1;"> <!--~-|**|PrettyHtmlEndT|**|-~-->

    <div id="ygrp-text">
            <p><br>
I don't know if this is the most efficient way to do what you need to<br>
do, but this has worked for me.<br>
<br>
Dim voldeepf as String<br>
<br>
Voldeepf=&quot;This is the method to load the string into a database.&quot;<br>
voldeepf=voldeepf+<wbr>&quot;This is the way you would do it if the size of the<br>
string is too big.&quot;&#43;chr(10)<wbr>&#43;Chr(10)<br>
'The chr(10) create new lines in the textbox. <br>
<br>
`Sample of code to actually load database<br>
`remember you have to create the database first<br>
<br>
Dim dbvoldeepft as String<br>
dbvoldeepft=<wbr>voldeepf<br>
<br>
if dbKey=&quot;voldeepft&quot; then <br>
    'msgbox &quot;Can't write without key...&quot;<br>
    'exit sub ' no sense continuing if no key<br>
'else<br>
    result=dbOpen(<wbr>probdb,&quot;probdb.<wbr>pdb&quot;,0) ' open database<br>
    if result not= 0 then <br>
        msgbox &quot;Database not found&quot;<br>
        exit sub               ' can't continue without database!    <br>
             <br>
    end if<br>
    result=dbFind(<wbr>probdb,dbKey)             ' see if record exists<br>
with the key<br>
    if result=0 then<br>
        result=alert(<wbr>&quot;Record exists&quot;, &quot;Found record with key:<br>
&quot;&#43;dbKey,2,&quot;Replace&quot;<wbr>,&quot;Skip&quot;) ' yep, something's \
there <br>  if result=0 then<br>
            result=dbUpdate(<wbr>probdb,dbKey,<wbr>dbvoldeepft) ' allow update<br>
with current data<br>
            msgbox &quot;Record updated&quot;<br>
        end if<br>
    else<br>
        result=dbInsert(<wbr>probdb,dbKey,<wbr>dbvoldeepft)   ' record available<br>
for key, so put the new data there<br>
   end if <br>
    result=dbClose(<wbr>probdb)                     ' close the database to<br>
release the pointers<br>
End If<br>
<br>
'This is the code that calls the database and loads the string into<br>
the textbox<br>
<br>
Dim probdb as Database<br>
Dim dbkey as String<br>
Dim result as Integer<br>
<br>
dbKey=&quot;voldeepft&quot;<br>
<br>
Dim dbvoldeepft as String<br>
<br>
If dbKey=&quot;voldeepft&quot; Then <br>
    result=dbOpen(<wbr>probdb,&quot;probdb.<wbr>pdb&quot;,0)    ' open database<br>
    If result Not= 0 Then <br>
        MsgBox &quot;Program not found&quot;<br>
        Exit Sub               ' can't continue without database!    <br>
             <br>
    End If<br>
    result=dbFind(<wbr>probdb,dbKey)                ' otherwise, see if<br>
record exists with the key<br>
    If result=0 Then<br>
        result=dbRead(<wbr>probdb,dbKey,<wbr>dbvoldeepft)<br>
            Fld1.text=dbvoldeep<wbr>ft<br>
          Else<br>
        MsgBox &quot;No program found!&quot; '&#43;dbKey  <br>
    End If<br>
<br>
result=dbClose(<wbr>probdb)                     ' close the database to<br>
release the pointers<br>
End If<br>
<br>
--- In <a href="mailto:nsbasic-palm%40yahoogroups.com">nsbasic-palm@<wbr>yahoogroups.<wbr>com</a>, \
&quot;George Henne&quot; &lt;gh@...&gt; wrote:<br> &gt;<br>
&gt; Did you see this?<br>
&gt; <br>
&gt; Tutorial 06: Reading and Writing data:<br>
&gt; &lt;<a href="http://www.nsbasic.com/palm/info/technotes/TT06.htm">http://www.nsbasic.<wbr>com/palm/<wbr>info/technotes/<wbr>TT06.htm</a>&gt;<br>
 &gt; <br>
&gt; <br>
&gt; <br>
&gt; &gt;Is there a tutorial on how to use a database?  I saw one on NSBasic but<br>
&gt; &gt;I did not see it actually using the database program.  This stuff<br>
is not<br>
&gt; &gt;natural to me so I have to see a full example before I can actually<br>
do it.<br>
&gt; &gt; <br>
&gt; &gt;Mike<br>
&gt; &gt;<br>
&gt; &gt;On Dec 24, 2007 2:31 AM, Dwight Norris &lt;norrisd@...<wbr>&gt; wrote:<br>
&gt; &gt;Mike just off the top real quick<br>
&gt; &gt;I would think you would want to use a database concept to guide the end<br>
&gt; &gt;user to text box information<br>
&gt; &gt;this is a real rough draft<br>
&gt; &gt; <br>
&gt; &gt;If vINR = 6 or vINR &gt; 6 and vINR &lt; 8 then<br>
&gt; &gt;show listbox with this data<br>
&gt; &gt;else<br>
&gt; &gt;If vINR &lt; 6 or vINR &gt; 4 then<br>
&gt; &gt;show different listbox with this data<br>
&gt; &gt;end if<br>
&gt; &gt; <br>
&gt; &gt;data entered would be the keyed field in the database<br>
&gt; &gt;the list box data just comes along for the ride or is connected to the<br>
&gt; &gt;INR value<br>
&gt; &gt; <br>
&gt; &gt;you could get fancy and ask two questions before you show the<br>
database info<br>
&gt; &gt; <br>
&gt; &gt;like if the INR is 5 and the patient is bleeding<br>
&gt; &gt;you have a database record 5B<br>
&gt; &gt;if the INR is 5 and the patient is NOT bleeding<br>
&gt; &gt;you have a database record 5N<br>
&gt; &gt; <br>
&gt; &gt;It would seem to me the rate limiting factor here is how many questions<br>
&gt; &gt;do you have to answer<br>
&gt; &gt;before you are presented with an answer<br>
&gt; &gt;this makes this project a FLOW chart exercise<br>
&gt; &gt;with when to trigger the answer since each question will take you to a<br>
&gt; &gt;more precise answer<br>
&gt; &gt; <br>
&gt; &gt;One other consideration I would consider is how to GO BACK one step<br>
&gt; &gt;(question) if the end user makes<br>
&gt; &gt;a wrong answer ( you would not want the EU to start over in a<br>
possible 7<br>
&gt; &gt;question rules based situation )<br>
&gt; &gt; <br>
&gt; &gt;and if the answer is given will you permit further questions from the<br>
&gt; &gt;possible correct answer<br>
&gt; &gt; <br>
&gt; &gt;Like the K is 2.4<br>
&gt; &gt;the obvious answer is give 80 mEq of KCL<br>
&gt; &gt;but the next question we all know we should ask is<br>
&gt; &gt;What is the Mag ?<br>
&gt; &gt;and<br>
&gt; &gt;What is the PO4 level ?<br>
&gt; &gt;so should I use 60 mMol of KPO4<br>
&gt; &gt;the easy way to handle this is just ask the EU to check the Mag and PO4<br>
&gt; &gt;and have guidelines for Mag and PO4 replacement<br>
&gt; &gt;----- Original Message -----<br>
&gt; &gt;From: Michael Ward<br>
&gt; &gt;To: <a href="mailto:nsbasic-palm%40yahoogroups.com">nsbasic-palm@<wbr>yahoogroups.<wbr>com</a><br>
 &gt; &gt;Sent: Sunday, December 23, 2007 10:50 PM<br>
&gt; &gt;Subject: Re: [nsbasic-palm] Literal Table Overflow<br>
&gt; &gt;<br>
&gt; &gt;EM Rules has different decision rules, scores etc and a number of<br>
popups<br>
&gt; &gt;i.e. how to manage INR &gt;20<br>
&gt; &gt; <br>
&gt; &gt;Does that help?<br>
&gt; &gt; <br>
&gt; &gt;Mike<br>
&gt; &gt;<br>
&gt; &gt;On Dec 24, 2007 12:51 AM, Dwight Norris &lt;norrisd@...<wbr>&gt; wrote:<br>
&gt; &gt;Mike let me try to refresh my memory<br>
&gt; &gt;your EM rules program<br>
&gt; &gt;Is this the one for drips or a flow chart type application<br>
&gt; &gt;where if you have these signs and symptoms you do this or rule out that<br>
&gt; &gt;and move to the next rule out consideration in the flow chart <br>
&gt; &gt;<br>
&gt; &gt;As for a Data Base these are a snap in NSBasic<br>
&gt; &gt;and if you are doing the flow chart type app<br>
&gt; &gt;Doug Handys Doc Reader is the perfect tool<br>
&gt; &gt;I have the old version of NSBasic 4.4.2 and use the Doc Reader as a<br>
external <br>
&gt; &gt;tool<br>
&gt; &gt;I think the new version of NSBasic 6.? includes this Doc Reader as<br>
part of<br>
&gt; &gt;the software<br>
&gt; &gt;I could be way wrong here<br>
&gt; &gt;So if you could supply us with a little more info on how your<br>
program flows<br>
&gt; &gt;we may be able to add more constructive help <br>
&gt; &gt;If you need to use a database or the doc reader I would be happy to<br>
&gt; &gt;contribute<br>
&gt; &gt;suggestions and code<br>
&gt; &gt;dwight<br>
&gt; &gt;----- Original Message -----<br>
&gt; &gt;From: &quot;Michael Ward&quot; &lt; mward04@...&gt;<br>
&gt; &gt;To: &lt;<a href="mailto:nsbasic-palm%40yahoogroups.com">nsbasic-palm@<wbr>yahoogroups.<wbr>com</a>&gt;<br>
 &gt; &gt;Sent: Sunday, December 23, 2007 10:29 PM<br>
&gt; &gt;Subject: [nsbasic-palm] Literal Table Overflow <br>
&gt; &gt;<br>
&gt; &gt;&gt; So I've encountered a &quot;Literal Table Overflow&quot; error in my EM \
Rules<br> &gt; &gt;&gt; program. I'm assuming this is because I didn't use a database \
and put<br> &gt; &gt;&gt; most of my text in the app itself. My question is how I \
would use a <br> &gt; &gt;&gt; database to offload most of this data to make my \
program run<br> smoother.<br>
&gt; &gt;&gt; I've been reluctant to use a database because I'm not really sure \
how<br> &gt; &gt;&gt; to do so. I see there's a tutorial but didn't think I \
really<br> needed a <br>
&gt; &gt;&gt; database for an individual static page. Can I use a single database<br>
&gt; &gt;&gt; for multiple different pages? Any one have a good demo with a<br>
database<br>
&gt; &gt;&gt; I could review?<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Thanks!<br>
&gt; &gt;&gt; Mike<br>
&gt; &gt;&gt; <br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Complete Searchable Archive:<br>
&gt; &gt;&gt; <a href="http://marc.theaimsgroup.com/?l=nsbasic-palm&amp;r=1&amp;w=2">h \
ttp://marc.<wbr>theaimsgroup.<wbr>com/?l=nsbasic-<wbr>palm&amp;r=1&amp;<wbr>w=2</a> \
<br> &gt; &gt;&gt;<br>
&gt; &gt;&gt; Shortcut URL to this page:<br>
&gt; &gt;&gt; <a href="http://groups.yahoo.com/group/nsbasic-palm">http://groups.<wbr>yahoo.com/<wbr>group/nsbasic-<wbr>palm</a><br>
 &gt; &gt;&gt; Yahoo! Groups Links<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;-- <br>
&gt; &gt;Michael Ward MD, MBA<br>
&gt; &gt;Resident Physician<br>
&gt; &gt;Department of Emergency Medicine<br>
&gt; &gt;University of Cincinnati<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;-- <br>
&gt; &gt;Michael Ward MD, MBA<br>
&gt; &gt;Resident Physician<br>
&gt; &gt;Department of Emergency Medicine<br>
&gt; &gt;University of Cincinnati<br>
&gt;<br>
<br>
</p>
    </div>  

    <!--~-|**|PrettyHtmlStart|**|-~-->
    <span width="1" style="color: white;">__._,_.___</span>
    <!-- Start the section with Message In topic -->
    <div id="ygrp-actbar">
              <span class="left">
          <a href="http://groups.yahoo.com/group/nsbasic-palm/message/55530;_ylc=X3oDM \
TM2b3M3bWtpBF9TAzk3MzU5NzE0BGdycElkAzIwMTk3NTUEZ3Jwc3BJZAMxNzA1MDA2NzY1BG1zZ0lkAzU1NTM5BHNlYwNmdHIEc2xrA3Z0cGMEc3RpbWUDMTE5ODUxODgwMgR0cGNJZAM1NTUzMA--">
                
            Messages in this topic          </a> (<span class="bld">7</span>)
        </span>
        <a href="http://groups.yahoo.com/group/nsbasic-palm/post;_ylc=X3oDMTJxbDhmaHJr \
BF9TAzk3MzU5NzE0BGdycElkAzIwMTk3NTUEZ3Jwc3BJZAMxNzA1MDA2NzY1BG1zZ0lkAzU1NTM5BHNlYwNmdHIEc2xrA3JwbHkEc3RpbWUDMTE5ODUxODgwMg--?act=reply&messageNum=55539">
  <span class="bld">
            Reply          </span> (via web post)
        </a>  | 
        <a href="http://groups.yahoo.com/group/nsbasic-palm/post;_ylc=X3oDMTJlanU2MnJu \
BF9TAzk3MzU5NzE0BGdycElkAzIwMTk3NTUEZ3Jwc3BJZAMxNzA1MDA2NzY1BHNlYwNmdHIEc2xrA250cGMEc3RpbWUDMTE5ODUxODgwMg--" \
class="bld">  Start a new topic        </a>
          </div> 
    <!-------     Start Nav Bar  ------>
    <!-- |**|begin egp html banner|**| -->
    <div id="ygrp-vitnav">
                <a href="http://groups.yahoo.com/group/nsbasic-palm/messages;_ylc=X3oD \
MTJlOXBhMjAzBF9TAzk3MzU5NzE0BGdycElkAzIwMTk3NTUEZ3Jwc3BJZAMxNzA1MDA2NzY1BHNlYwNmdHIEc2xrA21zZ3MEc3RpbWUDMTE5ODUxODgwMg--">Messages</a> \
  |    <a href="http://groups.yahoo.com/group/nsbasic-palm/files;_ylc=X3oDMTJmMm5xYmwy \
BF9TAzk3MzU5NzE0BGdycElkAzIwMTk3NTUEZ3Jwc3BJZAMxNzA1MDA2NzY1BHNlYwNmdHIEc2xrA2ZpbGVzBHN0aW1lAzExOTg1MTg4MDI-">Files</a> \
  |    <a href="http://groups.yahoo.com/group/nsbasic-palm/photos;_ylc=X3oDMTJlNjRmNmx \
iBF9TAzk3MzU5NzE0BGdycElkAzIwMTk3NTUEZ3Jwc3BJZAMxNzA1MDA2NzY1BHNlYwNmdHIEc2xrA3Bob3QEc3RpbWUDMTE5ODUxODgwMg--">Photos</a> \
  |    <a href="http://groups.yahoo.com/group/nsbasic-palm/links;_ylc=X3oDMTJmcGZtOWJ1 \
BF9TAzk3MzU5NzE0BGdycElkAzIwMTk3NTUEZ3Jwc3BJZAMxNzA1MDA2NzY1BHNlYwNmdHIEc2xrA2xpbmtzBHN0aW1lAzExOTg1MTg4MDI-">Links</a> \
  
        
        
        
    </div>  
    <!-- |**|end egp html banner|**| -->

                <div id="ygrp-grft">
                  
<!-- |**|begin egp html banner|**| -->

          <BR>
Complete Searchable Archive:<BR>
 <a href="http://marc.theaimsgroup.com/?l=nsbasic-palm&r=1&w=2">http://marc.theaimsgroup.com/?l=nsbasic-palm&amp;r=1&amp;w=2</a><BR>
 <BR>
Shortcut URL to this page:<BR>
 <a href="http://groups.yahoo.com/group/nsbasic-palm">http://groups.yahoo.com/group/nsbasic-palm</a> \
 <!-- |**|end egp html banner|**| -->

              </div>
    
    <!-- yahoo logo -->
    <!-- |**|begin egp html banner|**| -->
    <div id="ygrp-ft">
      <a href="http://groups.yahoo.com/;_ylc=X3oDMTJkdTBkMm5zBF9TAzk3MzU5NzE0BGdycElkA \
                zIwMTk3NTUEZ3Jwc3BJZAMxNzA1MDA2NzY1BHNlYwNmdHIEc2xrA2dmcARzdGltZQMxMTk4NTE4ODAy">
                
      <img src="http://us.i1.yimg.com/us.yimg.com/i/yg/img/logo/ma_grp_160.gif" \
height="15" width="106" border="0" alt="Yahoo! Groups"></a> <br>  <a \
href="http://groups.yahoo.com/group/nsbasic-palm/join;_ylc=X3oDMTJmdTI5ZGVoBF9TAzk3MzU \
5NzE0BGdycElkAzIwMTk3NTUEZ3Jwc3BJZAMxNzA1MDA2NzY1BHNlYwNmdHIEc2xrA3N0bmdzBHN0aW1lAzExOTg1MTg4MDI-">Change \
settings via the Web</a> (Yahoo! ID required) <br>  Change settings via email: <a \
href="mailto:nsbasic-palm-digest@yahoogroups.com?subject=Email Delivery: \
Digest">Switch delivery to Daily Digest</a> | <a href = \
"mailto:nsbasic-palm-traditional@yahoogroups.com?subject=Change Delivery Format: \
Traditional">Switch format to Traditional</a> <br>

      <a href="http://groups.yahoo.com/group/nsbasic-palm;_ylc=X3oDMTJkNzhvNjhvBF9TAzk \
3MzU5NzE0BGdycElkAzIwMTk3NTUEZ3Jwc3BJZAMxNzA1MDA2NzY1BHNlYwNmdHIEc2xrA2hwZgRzdGltZQMxMTk4NTE4ODAy">
  Visit Your Group 
      </a> |
      <a href="http://docs.yahoo.com/info/terms/">
        Yahoo! Groups Terms of Use      </a> |
      <a href="mailto:nsbasic-palm-unsubscribe@yahoogroups.com?subject=">
        Unsubscribe      </a> 
    </div>     <!-- |**|end egp html banner|**| -->
  </div> <!-- ygrp-msg -->

  
  <!-- Sponsor -->
  <!-- |**|begin egp html banner|**| -->
  <div id="ygrp-sponsor" style="width:140px;float: left; clear: none; margin-left: \
5px; background:white; margin-bottom:25px ;position:absolute; top:0; right: 0;">  \
<!-- Network content -->  
    <!-- Start vitality -->
    <div id="ygrp-vital">
              <div id="vithd">Recent Activity</div>
        <ul style="list-style-type:none; padding: 0; margin: 2px 0;">
                <li style="clear: both;">
      <div class="ct" style="float: right;"><span \
style="display:none">&nbsp;</span>6</div>  <div class="cat"><a \
href="http://groups.yahoo.com/group/nsbasic-palm/members;_ylc=X3oDMTJmbTkxdWxuBF9TAzk3 \
MzU5NzE0BGdycElkAzIwMTk3NTUEZ3Jwc3BJZAMxNzA1MDA2NzY1BHNlYwN2dGwEc2xrA3ZtYnJzBHN0aW1lAzExOTg1MTg4MDI-">New \
Members</a></div>  </li>
  
            
            
            
                <li style="clear: both;">
      <div class="ct" style="float: right;"><span \
style="display:none">&nbsp;</span>2</div>  <div class="cat"><a \
href="http://groups.yahoo.com/group/nsbasic-palm/files;_ylc=X3oDMTJnOW51ZmdqBF9TAzk3Mz \
U5NzE0BGdycElkAzIwMTk3NTUEZ3Jwc3BJZAMxNzA1MDA2NzY1BHNlYwN2dGwEc2xrA3ZmaWxlcwRzdGltZQMxMTk4NTE4ODAy">New \
Files</a></div>  </li>
  
            
        </ul>
            <a href="http://groups.yahoo.com/group/nsbasic-palm;_ylc=X3oDMTJlMjg2c2M0B \
F9TAzk3MzU5NzE0BGdycElkAzIwMTk3NTUEZ3Jwc3BJZAMxNzA1MDA2NzY1BHNlYwN2dGwEc2xrA3ZnaHAEc3RpbWUDMTE5ODUxODgwMg--">
  Visit Your Group      </a>
    </div> 
              
    <!-- Network content -->
              <div id="nc">
              <div class="ad">
                      <div id="hd1">Yahoo! Finance</div> 
<p><a href="http://us.ard.yahoo.com/SIG=12jrqhi6u/M=493064.12016257.12445664.8674578/D \
=groups/S=1705006765:NC/Y=YAHOO/EXP=1198526002/A=4507179/R=0/SIG=12de4rskk/*http://us.rd.yahoo.com/evt=50284/*http://finance.yahoo.com/personal-finance">It's \
Now Personal</a></p>  <p>Guides, news,</p> 
<p>advice & more.</p>                   </div>
                    <div class="ad">
                      <div id="hd1">Parenting Zone</div> 
<p><a href="http://us.ard.yahoo.com/SIG=12j5piv6u/M=493064.12016283.12445687.8674578/D \
=groups/S=1705006765:NC/Y=YAHOO/EXP=1198526002/A=5045820/R=0/SIG=11gsqr691/*http://advision.webevents.yahoo.com/parenting/">on \
Yahoo! Groups</a></p>  <p>Your one stop for</p> 
<p>parenting groups.</p>                  </div>
                    <div class="ad">
                      <div id="hd1">Yahoo! Groups</div> 
<p><a href="http://us.ard.yahoo.com/SIG=12jjerjjc/M=493064.12016258.12445665.8674578/D \
=groups/S=1705006765:NC/Y=YAHOO/EXP=1198526002/A=4706131/R=0/SIG=11f8fj6tf/*http://tech.groups.yahoo.com/group/samsunghd/">Get \
info and support</a></p>  <p>on Samsung HDTVs</p> 
<p>and devices.</p>                  </div>
          </div>
    
  </div>   <!-- |**|end egp html banner|**| -->
  <div style="clear:both; color: #FFF; font-size:1px;">.</div>
</div>   <img src="http://geo.yahoo.com/serv?s=97359714/grpId=2019755/grpspId=1705006765/msgId=55539/stime=1198518802/nc1=4507179/nc2=5045820/nc3=4706131" \
width="1" height="1"> <br>

<span  style="color: white;">__,_._,___</span>
<!--~-|**|PrettyHtmlEnd|**|-~-->
</body>
<!--~-|**|PrettyHtmlStart|**|-~-->
<head>
<style type="text/css">
<!--
#ygrp-mkp{
  border: 1px solid #d8d8d8;
  font-family: Arial;
  margin: 14px 0px;
  padding: 0px 14px;
}
#ygrp-mkp hr{
  border: 1px solid #d8d8d8;
}
#ygrp-mkp #hd{
  color: #628c2a;
  font-size: 85%;
  font-weight: bold;
  line-height: 122%;
  margin: 10px 0px;
}
#ygrp-mkp #ads{
  margin-bottom: 10px;
}
#ygrp-mkp .ad{
  padding: 0 0;
}
#ygrp-mkp .ad a{
  color: #0000ff;
  text-decoration: none;
}
-->
</style>
</head>
<head>
<style type="text/css">
<!--
#ygrp-sponsor #ygrp-lc{
  font-family: Arial;
}
#ygrp-sponsor #ygrp-lc #hd{
  margin: 10px 0px;
  font-weight: bold;
  font-size: 78%;
  line-height: 122%;
}
#ygrp-sponsor #ygrp-lc .ad{
  margin-bottom: 10px;
  padding: 0 0;
}
-->
</style>
</head>
<head>
<style type="text/css">
<!--
#ygrp-mlmsg {font-size:13px; font-family: \
arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;} #ygrp-mlmsg table \
{font-size:inherit;font:100%;} #ygrp-mlmsg select, input, textarea {font:99% \
arial,helvetica,clean,sans-serif;} #ygrp-mlmsg pre, code {font:115% \
monospace;*font-size:100%;} #ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
    font-family: Georgia;	
}
#ygrp-text p{
    margin: 0 0 1em 0;
}
#ygrp-tpmsgs{
    font-family: Arial;	
    clear: both;
}
#ygrp-vitnav{
	padding-top: 10px;
	font-family: Verdana;
	font-size: 77%;
	margin: 0;
}
#ygrp-vitnav a{
	padding: 0 1px;
}
#ygrp-actbar{
	clear: both;
	margin: 25px 0;
	white-space:nowrap;
	color: #666;
	text-align: right;
}
#ygrp-actbar .left{
	float: left;
	white-space:nowrap;
}
.bld{font-weight:bold;}
#ygrp-grft{
	font-family: Verdana;
	font-size: 77%;
	padding: 15px 0;
}
#ygrp-ft{
  font-family: verdana;
  font-size: 77%;
  border-top: 1px solid #666; 
  padding: 5px 0; 
}
#ygrp-mlmsg #logo{
  padding-bottom: 10px;
}

#ygrp-vital{
	background-color: #e0ecee;
	margin-bottom: 20px;
	padding: 2px 0 8px 8px;
}
#ygrp-vital #vithd{
	font-size: 77%;
	font-family: Verdana;
	font-weight: bold;
	color: #333;
	text-transform: uppercase;
}
#ygrp-vital ul{
	padding: 0;
	margin: 2px 0;
}
#ygrp-vital ul li{
  list-style-type: none;
  clear: both;
  border: 1px solid #e0ecee;  
}
#ygrp-vital ul li .ct{
  font-weight: bold;
  color: #ff7900;
  float: right;
  width: 2em;
  text-align:right;
  padding-right: .5em;
}
#ygrp-vital ul li .cat{
  font-weight: bold;
}
#ygrp-vital a{
	text-decoration: none;
}

#ygrp-vital a:hover{
  text-decoration: underline;
}

#ygrp-sponsor #hd{
	color: #999;
	font-size: 77%;
}
#ygrp-sponsor #ov{
	padding: 6px 13px;
	background-color: #e0ecee;
	margin-bottom: 20px;
}
#ygrp-sponsor #ov ul{
	padding: 0 0 0 8px;
	margin: 0;
}
#ygrp-sponsor #ov li{
	list-style-type: square;
	padding: 6px 0;
	font-size: 77%;
}
#ygrp-sponsor #ov li a{
	text-decoration: none;
	font-size: 130%;
}
#ygrp-sponsor #nc{
  background-color: #eee;
  margin-bottom: 20px;
  padding: 0 8px;
}
#ygrp-sponsor .ad{
	padding: 8px 0;
}
#ygrp-sponsor .ad #hd1{
	font-family: Arial;
	font-weight: bold;
	color: #628c2a;
	font-size: 100%;
	line-height: 122%;
}
#ygrp-sponsor .ad a{
	text-decoration: none;
}
#ygrp-sponsor .ad a:hover{
	text-decoration: underline;
}
#ygrp-sponsor .ad p{
	margin: 0;
}
o{font-size: 0; }
.MsoNormal{
   margin: 0 0 0 0;
}
#ygrp-text tt{
  font-size: 120%;
}
blockquote{margin: 0 0 0 4px;}
.replbq{margin:4}
-->
</style>
</head>
<!--~-|**|PrettyHtmlEnd|**|-~-->
</html><!--End group email -->



[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic