473,326 Members | 2,192 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

Can't Figure out how to Sum The Quantity

2 2Bits
Hello I have this Form Where i Am trying to Add up the Quantity of items.

Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html>
  2. <html dir="ltr" lang="en-GB">
  3. <head><meta charset="UTF-8">
  4.     <title>AETP Quotation</title>
  5.     <!--CSS for the theme-->
  6.     <style type="text/css">body {
  7.     font-family:Sans-serif, "Helvetica", Verdana, sans-serif;
  8. }
  9.  
  10. tr, td, th, thead, tfoot, span, p {
  11.     page-break-inside: avoid !important;
  12. }
  13.  
  14. /* The title of the page */
  15. .page_title {
  16.     text-decoration:underline;
  17.     text-transform:capitalize;
  18.     margin-top:0;
  19. }
  20. /* The logo contained */
  21. .logo img {
  22.     max-width:350px;
  23.     max-height:150px;
  24.     width:auto;
  25.     height:auto;
  26. }
  27. /* The logo img element */
  28. .img_logo {
  29.     max-width:350px;
  30.     max-height:150px;
  31.     width:auto;
  32.     height:auto;
  33. }
  34. /* The details about the invoice */
  35. .invoice_details {
  36.     font-size:0.9em;
  37. }
  38. /* The details about the purchase order */
  39. .po_details {
  40.     font-size:0.9em;
  41. }
  42. /* The rounded box for client and delivery details */
  43. .details_box {
  44.     padding-left:6px;
  45.     border:0px solid #AAA;
  46.     border-radius:3px;
  47.     background-color:#e6e6e6;
  48.     font-size:0.9em;
  49. }
  50. /* A label for a field */
  51. .label {
  52.     font-weight:bold;
  53.     white-space: nowrap;
  54. }
  55. /* The grid we are using to show items */
  56. .item_grid {
  57.     border-radius:6px;
  58.     margin-left: auto;
  59.     margin-right: auto;
  60.     counter-reset: row;
  61.     empty-cells: hide;
  62. }
  63. /* The blank line between items and totals in the grid */
  64. .item_grid_break {
  65.     border-bottom:0px solid #777;
  66. }
  67. /* Set the left border on certain item cells */
  68. .item_grid td, .item_grid th {
  69.     padding:3px;
  70.     border-top:0 solid #777;
  71.     border-right:0px solid #777;
  72.     border-bottom:0 solid #777;
  73.     border-left:0px solid #777;
  74. }
  75. /* The header row in the item grid */
  76. .item_grid th {
  77.     background:#bc7100;
  78.     border-top:0px solid #777;
  79. }
  80. /* Set the stripes in the item grid
  81. .item_grid tr.item_row:nth-child(odd) {
  82.     background-color:rgba(0,0,0, 0.05); */
  83. }
  84. /* Make sure last item has a bottom border
  85. .item_grid tr:last-child td {
  86.     border-bottom:0px solid #777;
  87. }
  88. */
  89. /* The grid we are using to show totals */
  90. .totals_grid {
  91.     margin-left: auto;
  92.     margin-right: auto;
  93.     counter-reset: row;
  94.     empty-cells: show;
  95. }
  96.  
  97. .totals_grid tr .totals_grid td {
  98.     border-left:none;
  99.     border-right:none;
  100. }
  101.  
  102. /* The header row in the totals grid */
  103. .totals_grid th {
  104.     background:#e6e6e6;
  105.     border-top:2px solid #d1d1d1;
  106.     border-collapse:collapse;
  107.     border-left:0px;
  108.     border-right:0px;
  109. }
  110.  
  111. /* Make sure last item has a bottom border */
  112. .totals_grid tr:last-child td {
  113.     border-bottom:2px solid #d1d1d1;
  114. }
  115.  
  116. /* The row counter */
  117. .counter:before {
  118.     counter-increment: row;
  119.     content: counter(row);
  120. }
  121. .counter {
  122.     font-weight:normal;
  123.     color:#999;
  124. }
  125.  
  126. hr {
  127.     height:2px;
  128.     color:#d1d1d1;
  129.     background:#d1d1d1;
  130.     border:none;
  131.     width:100%;
  132. }
  133.  
  134. /* THE FOLLOWING ARE GENERATED CLASSES */
  135.  
  136. /* How a heading name will be displayed */
  137. .heading_name {
  138.     font-weight:bold;
  139.     margin-top:4px;
  140.     font-size:1.1em;
  141.     white-space: nowrap;
  142. }
  143. /* How a heading technical description will be displayed */
  144. .heading_technical {
  145.     font-style:italic;
  146.     color:grey;
  147. }
  148. /* How a heading total price will be displayed */
  149. .heading_price {
  150.     display:none;
  151.     white-space:nowrap;
  152. }
  153. .consumable_price,.stock_price, .custom_price, .labour_price {
  154.     white-space:nowrap;
  155. }
  156. /* How an inline heading will be displayed */
  157. .inline_name {
  158.     font-weight:bold;
  159.     font-style:italic;
  160.     white-space: nowrap;
  161. }
  162. /* How items quantity will be displayed */
  163. .consumable_qty, .stock_qty, .custom_qty, .labour_qty {
  164.     display:inline-block;
  165.     width:70px;
  166. }
  167. /* How items name will be displayed */
  168. .consumable_name, .stock_name, .custom_name, .labour_name {
  169.     display: inline-block;
  170.     white-space: nowrap;
  171. }
  172. .heading_name {
  173.     display: block;
  174.     white-space: nowrap;
  175. }
  176. /* How autopull items will be displayed */
  177. .autopull.consumable_name, .autopull.stock_name, .autopull.custom_name, .autopull.labour_name, .autopull.stock_qty, .autopull.stock_price, .autopull.stock_discount, .autopull.stock_unit_price {
  178.     font-style:italic;
  179.     color:grey;
  180.     font-size:0.8em;
  181. }
  182. /* How additional item text will be diaplyed */
  183. .consumable_additional, .stock_additional, .custom_additional, .labour_additional {
  184.     display: inline;
  185.     font-style:italic;
  186.     color:#777;
  187.     white-space:normal;
  188. }
  189. .heading_additional {
  190.     display:block;
  191.     white-space:normal;
  192. }
  193. .stock_unit_price, .stock_price, .custom_unit_price, .custom_price, .consumable_unit_price, .consumable_price, .labour_unit_price, .labour_price {
  194.     white-space: nowrap !important;
  195. }
  196. /* What to show when showing on screen */
  197. @media screen {
  198.     body {
  199.         min-width:950px;
  200.     }
  201.     .pagebreak hr {
  202.         border-top: 5px double #8c8b8b;
  203.     }
  204. }
  205. @media print {
  206.     html, body {
  207.         width:950px; /* Sets the page to a nice width (same as used in MyHireHop webpage) */
  208.         -webkit-print-color-adjust:exact;
  209.         color-adjust:exact;
  210.     }
  211.     .pagebreak {
  212.         display: none !important;
  213.         border-top: 5px double #8c8b8b;
  214.     }
  215. }
  216. .text_right { text-align: right; }
  217. .text_left { text-align: left; }
  218.     </style>
  219.     <script>
  220.         // Change the document name and add the invoice number once the document has finished loading
  221.         window.onload = function(){
  222.             document.title = document.getElementById("doc_type").textContent + " (" + document.getElementById("number").textContent + ")";
  223.         }
  224.     </script>
  225. </head>
  226. <body><!--Make the whole page a table so the <thead> acts as the header-->
  227. <table align="center" style="width:100%;"><!--This is our page header section-->
  228.     <thead>
  229.         <tr>
  230.             <td colspan="1" rowspan="2">
  231.             <h1 class="page title" id="doc_type"><span style="color:#666666;"><span style="font-size:48px;">Quotation</span></span></h1>
  232.  
  233.             <p><span style="color:#666666;"><strong><span name="job:company">{{job.company}}</span></strong><span name="job:address" style="display:block;overflow:auto">{{job.address}}</span><span name="job:telephone" style="display:block;overflow:auto">{{job.telephone}}</span></span></p>
  234.             </td>
  235.             <td><span style="color:#666666;"><img class="img_logo" name="user:logo_url" src="/images/logo.jpg" style="float: right;" /></span></td>
  236.         </tr>
  237.         <tr>
  238.             <td>
  239.             <p name="depot:address" style="text-align: right;"><span name="depot:address" style="color:#666666;"><span name="user:company" style="font-weight:bold">{{user.company}}</span><br />
  240.             {{depot.address}}</span></p>
  241.             </td>
  242.         </tr>
  243.         <tr>
  244.             <td colspan="2">
  245.             <table cellpadding="0" cellspacing="0" width="100%">
  246.                 <tbody>
  247.                     <tr>
  248.                         <td class="text_right" style="font-size: 1.2em; text-align: left;" valign="bottom"><span style="color:#666666;"><span name="job:job_name">{{job.job_name}}</span></span></td>
  249.                     </tr>
  250.                 </tbody>
  251.             </table>
  252.             </td>
  253.         </tr>
  254.     </thead>
  255.     <!--The <tbody> is the rest of the page-->
  256.     <tbody>
  257.         <tr>
  258.             <td colspan="2">
  259.             <table cellpadding="0" cellspacing="0" width="100%">
  260.                 <tbody>
  261.                     <tr>
  262.                         <td class="details_box" valign="top" width="50%">
  263.                         <table width="100%">
  264.                             <tbody>
  265.                                 <tr>
  266.                                     <td class="label" style="min-width:95px;width:95px"><span style="color:#666666;">Quotation</span></td>
  267.                                     <td><span style="color:#666666;">JR - <span id="number" name="job:reference">{{job.reference}}</span></span></td>
  268.                                 </tr>
  269.                                 <tr>
  270.                                     <td class="label"><span style="color:#666666;">Date</span></td>
  271.                                     <td><span style="color:#666666;"><span name="general:date">{{general.date}}</span></span></td>
  272.                                 </tr>
  273.                                 <tr>
  274.                                     <td class="label" valign="top"><span style="color:#666666;">Valid Until</span></td>
  275.                                     <td>&nbsp;</td>
  276.                                 </tr>
  277.                                 <tr>
  278.                                     <td class="label" valign="top"><span style="color:#666666;">Your Reference&nbsp; &nbsp;&nbsp;</span></td>
  279.                                     <td><span style="color:#666666;"><span name="job:client_ref" style="display:block;overflow:auto">{{job.client_ref}}&nbsp;</span></span></td>
  280.                                 </tr>
  281.                                 <tr>
  282.                                     <td class="label" valign="top"><span style="color:#666666;">Job Manager&nbsp;&nbsp;</span></td>
  283.                                     <td><span name="job:user" style="color:#666666;">{{job.user}}</span></td>
  284.                                 </tr>
  285.                                 <tr>
  286.                                     <td class="label" valign="top"><font color="#666666">Job Type</font></td>
  287.                                     <td><span name="job:job_type" style="color:#666666;">{{job.job_type}}</span></td>
  288.                                 </tr>
  289.                             </tbody>
  290.                         </table>
  291.                         </td>
  292.                         <td><span style="color:#666666;">&nbsp;&nbsp;</span></td>
  293.                         <td class="details_box" valign="top" width="50%">
  294.                         <table width="100%">
  295.                             <tbody>
  296.                                 <tr>
  297.                                     <td class="label" style="min-width:165px;width:165px"><span style="color:#666666;">Deliver to</span></td>
  298.                                     <td><span style="color:#666666;"><span name="job:venue">{{job.venue}}</span></span></td>
  299.                                 </tr>
  300.                                 <tr>
  301.                                     <td class="label" valign="top"><span style="color:#666666;">Delivery Address</span></td>
  302.                                     <td><span style="color:#666666;"><span name="job:venue_address" style="display:block;overflow:auto">{{job.venue_address}}</span></span></td>
  303.                                 </tr>
  304.                                 <tr>
  305.                                     <td class="label"><span style="color:#666666;">Telephone</span></td>
  306.                                     <td><span style="color:#666666;"><span name="job:venue_telephone">{{job.venue_telephone}}</span></span></td>
  307.                                 </tr>
  308.                                 <tr>
  309.                                     <td class="label"><font color="#666666">Delivery</font></td>
  310.                                     <td name="job:deliver"><span style="color:#666666;"><span name="job:deliver">{{job.deliver}}</span></span></td>
  311.                                 </tr>
  312.                                 <tr>
  313.                                     <td class="label"><font color="#666666">Collection</font></td>
  314.                                     <td name="job:collect"><span style="color:#666666;"><span name="job:collect">{{job.collect}}</span></span></td>
  315.                                 </tr>
  316.                             </tbody>
  317.                         </table>
  318.                         </td>
  319.                     </tr>
  320.                 </tbody>
  321.             </table>
  322.             <span style="color:#666666;"><!--Job dates--></span>
  323.  
  324.             <table border="0" cellpadding="0" cellspacing="0" style="width:100%;">
  325.                 <tbody>
  326.                     <tr>
  327.                         <td>
  328.                         <table border="0" cellpadding="5" cellspacing="0" style="width:100%;">
  329.                             <tbody>
  330.                                 <tr>
  331.                                     <td><font color="#666666"><span style="white-space: nowrap;"><b>Outgoing</b></span></font></td>
  332.                                     <td><span style="color:#666666;"><span name="job:out_date">{{job.out_date}}</span> - <span name="job:out_time">{{job.out_time}}</span></span></td>
  333.                                 </tr>
  334.                                 <tr>
  335.                                     <td><span style="color:#666666;"><span class="label">Job Start</span></span></td>
  336.                                     <td><span style="color:#666666;"><span name="job:job_start">{{job.job_start}}</span> - <span name="job:job_start_time">{{job.job_start_time}}</span></span></td>
  337.                                 </tr>
  338.                                 <tr>
  339.                                     <td><span style="color:#666666;"><span class="label">Job Finish</span></span></td>
  340.                                     <td><span style="color:#666666;"><span name="job:job_end">{{job.job_end}}</span> - <span name="job:job_end_time">{{job.job_end_time}}</span></span></td>
  341.                                 </tr>
  342.                                 <tr>
  343.                                     <td><span style="color:#666666;"><span class="label">Returning</span></span></td>
  344.                                     <td><span style="color:#666666;"><span name="job:return_date">{{job.return_date}}</span> - <span name="job:return_time">{{job.return_time}}</span></span></td>
  345.                                 </tr>
  346.                             </tbody>
  347.                         </table>
  348.                         </td>
  349.                         <td style="width: 50%; text-align: left; vertical-align: top;" width:100="">
  350.                         <table border="0" cellpadding="5" cellspacing="0" style="width:100%;">
  351.                             <tbody>
  352.                                 <tr>
  353.                                     <td><font color="#666666"><span style="white-space: nowrap;"><b>Job Notes</b></span></font></td>
  354.                                 </tr>
  355.                                 <tr>
  356.                                     <td><span style="color:#666666;"><span name="job:details">{{job.details}}</span></span></td>
  357.                                 </tr>
  358.                             </tbody>
  359.                         </table>
  360.                         </td>
  361.                     </tr>
  362.                 </tbody>
  363.             </table>
  364.  
  365.             <div align="center" style="width: 100%; align:center">
  366.             <table align="center" cellpadding="6" cellspacing="0" class="item_grid" style="table-layout:fixed;width:100%;">
  367.                 <thead>
  368.                     <tr>
  369.                         <th class="item_grid_break" style="width:100%;"><span style="color:#666666;"><span style="color:#FFFFFF;">Description</span></span></th>
  370.                         <th class="item_grid_break" style="min-width:50px;width:50px;"><span style="color:#666666;"><span style="color:#FFFFFF;">Qty.</span></span></th>
  371.                         <th class="item_grid_break" style="min-width:80px;width:80px;"><span style="color:#666666;"><span style="color:#FFFFFF;">Unit Price</span></span></th>
  372.                         <th class="item_grid_break" style="min-width:70px;width:80px;"><span style="color:#666666;"><span style="color:#FFFFFF;">Discount</span></span></th>
  373.                         <th class="item_grid_break" style="min-width:95px;width:95px;"><span style="color:#666666;"><span style="color:#FFFFFF;">Price</span></span></th>
  374.                     </tr>
  375.                 </thead>
  376.                 <tbody>
  377.                     <tr class="item_row" name="items:">
  378.                         <td class="indent"><span style="color:#666666;"><span name="items:name">{{items.name}}</span> <span name="items:additional">{{items.additional}}</span></span></td>
  379.                         <td align="center"><span style="color:#666666;"><span name="items:qty">{{items.qty}}</span></span></td>
  380.                         <td style="text-align:right;"><span style="color:#666666;"><span name="items:unit_price">{{items.unit_price}}</span></span></td>
  381.                         <td style="text-align:right;"><span style="color:#666666;"><span name="items:discount">{{items.discount}}</span></span></td>
  382.                         <td style="text-align:right;"><span style="color:#666666;"><span name="items:price">{{items.price}}</span></span></td>
  383.                     </tr>
  384.                 </tbody>
  385.             </table>
  386.             </div>
  387.  
  388.             <hr /></div>
  389.  
  390.             <iv align="center" style="width: 100%; align:center">
  391.             <table align="center" cellpadding="8" cellspacing="0" class="totals_grid" width="100%">
  392.                 <tbody>
  393.                     <tr>
  394.                         <td style="text-align: center;"><strong><span style="color:#666666;"><span name="totals:value">{{totals.weight}}</span></span></strong></td>
  395.                         <td style="text-align: center;"><strong><span style="color:#666666;"><span name="total:qty"><span id="sum">0</span>
  396.     <script>
  397.     $(document).ready(function(){
  398.         $({{items.qty}}).each(function() {
  399.  
  400.             $(this).keyup(function(){
  401.                 calculateSum();
  402.             });
  403.         });
  404.  
  405.     });
  406.  
  407.     function calculateSum() {
  408.  
  409.         var sum = 0;
  410.         $({{items.qty}}).each(function() {
  411.  
  412.             if(!isNaN(this.value) && this.value.length!=0) {
  413.                 sum += parseFloat(this.value);
  414.             }
  415.  
  416.         });
  417.         $("#sum").html(sum.toFixed(0));
  418.     }
  419. </script></span></span></strong></td>
  420.                         <td style="text-align: center;"><strong><span style="color:#666666;"><span name="totals:weight">{{totals.value}}</span></span></strong></td>
  421.  
  422.                     </tr>
  423.                 </tbody>
  424.                 <thead class="totals_grid">
  425.                     <tr>
  426.                         <th scope="col" style="text-align: center;" width="25%"><span style="color:#666666;"><span class="label">Total Weight</span></span></th>
  427.                         <th scope="col" style="text-align: center;" width="25%"><span style="color:#666666;"><span class="label">Total Items</span></span></th>
  428.                         <th scope="col" style="text-align: center;" width="25%"><span style="color:#666666;"><span class="label">Replacement Value</span></span></th>
  429.                     </tr>
  430.                 </thead>
  431.             </table>
  432.             </div>
  433.  
  434.  
  435.             <div>
  436.             <hr />
  437.             <table align="center" border="0" cellpadding="10" cellspacing="0" style="width:100%">
  438.                 <tbody>
  439.                     <tr>
  440.                         <td width="22.5%"><span style="color:#666666;"><strong>Rental Charges</strong></span></td>
  441.                         <td style="text-align: right;" width="22.5%"><span style="color:#666666;"><strong><span name="totals:net" width="25%">{{totals.net}}</span></strong></span></td>
  442.                         <td style="text-align: right;" width="10%">&nbsp;</td>
  443.                         <td width="22.5%"><span style="color:#666666;"><strong>Total</strong></span></td>
  444.                         <td style="text-align: right;"><span style="color:#666666;"><strong><span name="totals:net" width="22.5%">{{totals.net}}</span></strong></span></td>
  445.                     </tr>
  446.                     <tr>
  447.                         <td><span style="color:#666666;"><strong>Sale Charges</strong></span></td>
  448.                         <td style="text-align: right;"><span style="color:#666666;"><strong><span name="totals:net" width="25%">{{totals.net}}</span></strong></span></td>
  449.                         <td style="text-align: right;">&nbsp;</td>
  450.                         <td><span style="color:#666666;"><strong>Discount</strong></span></td>
  451.                         <td name="totals:discount" style="text-align: right;"><span style="color:#666666;"><strong><span name="totals:discount">{{totals.discount}}</span></strong></span></td>
  452.                     </tr>
  453.                     <tr>
  454.                         <td><span style="color:#666666;"><strong>Service Charges</strong></span></td>
  455.                         <td style="text-align: right;"><span style="color:#666666;"><strong><span name="totals:net" width="25%">{{totals.net}}</span></strong></span></td>
  456.                         <td style="text-align: right;">&nbsp;</td>
  457.                         <td><span style="color:#666666;"><strong>VAT</strong></span></td>
  458.                         <td style="text-align: right;"><span style="color:#666666;"><strong><span name="totals:vat">{{totals.vat}}</span></strong></span></td>
  459.                     </tr>
  460.                     <tr>
  461.                         <td>&nbsp;</td>
  462.                         <td style="text-align: right;">&nbsp;</td>
  463.                         <td style="text-align: right;">&nbsp;</td>
  464.                         <td><span style="color:#666666;"><strong>Total inc VAT</strong></span></td>
  465.                         <td style="text-align: right;"><span style="color:#666666;"><strong><span name="totals:total">{{totals.total}}</span></strong></span></td>
  466.                     </tr>
  467.                 </tbody>
  468.             </table>
  469.  
  470.             <div>
  471.             <table align="center" cellpadding="5" cellspacing="0" class="totals_grid" width="100%">
  472.                 <tbody>
  473.                     <tr>
  474.                         <td style="text-align: center;">&nbsp;</td>
  475.                     </tr>
  476.                 </tbody>
  477.             </table>
  478.             </div>
  479.             </td>
  480.         </tr>
  481.     </tbody>
  482. </table>
  483. <!--End of the page table--><!--</div>--></body>
  484. </html>
  485.  
At the Moment when I open the Form i just get either Blank or 0.

Any Help Would be greatly appreciated
Mar 10 '22 #1
3 9386
Dormilich
8,658 Expert Mod 8TB
At the Moment when I open the Form i just get either Blank or 0.
First, there is no form.

Second, this may be the usual issue with callbacks* (you could check that by setting breakpoints in the dev tools).

One fix for that were to use Array.reduce(). I.e. var sum = $(...).map(...).get().reduce(...) (step 1: convert elements into a number, step 2: convert it into an array, step 3: aggregate values into a sum).

* - when executed asynchronously, the code lines may be executed in a different order than written.
Mar 11 '22 #2
silentdog
2 2Bits
Sorry Forgive me My Javacript Knowledge is pretty basic.

Could you elaborate this for me ?
Mar 21 '22 #3
Dormilich
8,658 Expert Mod 8TB
My Java Knowledge is pretty basic
Mine is non-existent.

JavaScript is a different matter though.

Could you elaborate this for me ?
What part exactly?
Mar 21 '22 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: Paul McKenna | last post by:
Hello, I am having a lot of problems figuring out layout in CSS. There are a couple of problems that I am facing: 1. My layout requires me to have 3 sections at the top of the page. So I...
4
by: ManChild | last post by:
Check out http://www.dubyadybyadybyadotcom.com/mobius in IE - note the nice border. Check it out in Firefox -- or Mozilla and I presume every other browser in the world and the border only...
5
by: johny | last post by:
Program details as follows: Input to the program the exam number and computer arch and programming results for 10 people. Three arrays - ExamNo, Arch and prog are used to hold these items. The...
9
by: AFN | last post by:
I was just dropped into someone else's code (isn't that always so fun?). I can't figure out why a custom validation control's server event function is executing. There is nothing (that I see)...
3
by: Kentor | last post by:
hello, im trying to make a little loop, but i cant figure it out... i have a string with a bunch of 1s and 0s in it: 110101010101111010101 .... i need to count the number of 1s divide it by 2 and...
6
by: ancelotp | last post by:
hi, i'm new to sql i'd appretiate if someone would helpme out with this doudt i have CODE: CREATE TABLE entry ( uno int(6) NOT NULL auto_increment, fname varchar(30) NOT NULL, sname...
1
by: dav3 | last post by:
Any help here is appreciated folks. First in my Person class the comments = errors visual basics is giving me and I am not sure why. Also when i try and set up my array of pointers to Student...
7
by: griffinheart | last post by:
hey there this script works fine in firefox. but in ie the this call document.getElementById(form).style.display='block'; gives me object required, well i don't know much about java and can't...
1
by: durjoy | last post by:
dunno is the right forum to ask for help , but i cant see any category for html help . dont know any other site as well . this site is my last hope dear experts . i was hosting my site with...
5
by: chevon1920 | last post by:
I am trying to do my assignment but I cant figure out how to get 8 data points per line to print to a file. Here is the assignment 1. Program asks the user to enter an odd number as a BASE,...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

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

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