473,748 Members | 2,523 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Script output not appearing.

71 New Member
I have a script that shows the time and date. It's been working on my site for quite a while now. Suddenly it stops showing up, after getting my drop down menu to work.

If I put text between the <div id="datetime"> </div> tags, the text shows up, but the javascript output being sent to those some divs doesn't seem to want to work. It should be showing up in the middle of the content pane, just below the first table box. (set by .css)

Here's the script:
Expand|Select|Wrap|Line Numbers
  1. //Original:  Xavier R. (xav@lougaou.com)
  2. //Modified:  Benjamin Wright, Editor
  3. //Web Site:  http://www.lougaou.com/
  4.  
  5. //This script and many more are available free online at The JavaScript Source!!
  6. //http://javascript.internet.com
  7.  
  8. var days = new Array("Sun, ","Mon, ","Tue, ","Wed, ","Thu, ","Fri, ","Sat, "); 
  9. var months = new Array("Jan ","Feb ","Mar ","Apr ","May ","Jun ", 
  10.                        "Jul ","Aug ","Sep ","Oct ","Nov ","Dec " ); 
  11.  
  12. function dt( ) 
  13.     // if browser doesn't support getElementById, 
  14.     // then it won't support CSS...so forget it 
  15.     if ( document.getElementById == null ) return; 
  16.     var dt = new Date(); 
  17.  
  18.     var hours = dt.getHours();     
  19.     var ampm = (hours > 11) ? " PM " : " AM "; 
  20.     if (hours > 12) hours -= 12; //If it's afternoon, subtract 12 to reset to 12hour scale. 
  21.     if (hours == 0) hours = 12;  //If it's midnight, show 12. 
  22.  
  23.     var now = hours + ":" + (100+dt.getMinutes()) + ":" + (100+dt.getSeconds()) + ampm + " "
  24.               + days[dt.getDay()] + months[dt.getMonth()] + dt.getDate() + ", " + dt.getFullYear(); 
  25.  
  26.     document.getElementById("datetime").innerHTML = now.replace( /\:1/g, ":" ); 
  27.  
  28.     setTimeout( "dt()", 1000 ); 
  29.  
  30. And here's a link to the page: http://rsteph49.tripod.com/default.shtml
  31.  
  32. Here's the code:
  33.  
  34. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  35. <html>
  36.  
  37.     <head>
  38.         <title>Clermont Christian Church</title>
  39.         <link href="styles.css" rel="stylesheet" type="text/css" />
  40.             <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
  41.             <meta name="description" content="This is the website homepage" />
  42.             <meta name="keywords" content="Christian, Indiana, Church, Clermont, Religion, Indianapolis, Sunday, School" />
  43.  
  44.             <style type="text/css" media="all">
  45.                 @import "style.css";
  46.             </style>
  47.  
  48. <script type="text/javascript" language="JavaScript1.2" src="/java_scripts/coolmenus4.js"></script>
  49. <script type="text/javascript" language="JavaScript1.2" src="/java_scripts/cm_addins.js"></script>
  50. <script type="text/javascript" language="javascript1.2" src="/java_scripts/sniffer.js">
  51.  
  52. /***********************************************
  53. * Top Navigational Bar III v3.5 (By BrotherCake- brothercake.com)
  54. * Exclusive permission by Dynamicdrive.com to include script in archive
  55. * For this and 100's more DHTML scripts, visit http://www.dynamicdrive.com/
  56. * This notice MUST stay intact for legal use
  57. ***********************************************/
  58.  
  59. </script>
  60.  
  61. <script type="text/javascript" language="javascript1.2" src="/java_scripts/basic_datetime.js"></script>
  62. <script type="text/javascript" language="javascript1.2" src="/java_scripts/custom.js"></script>
  63. <script type="text/javascript" language="javascript1.2" src="/java_scripts/style.js"></script>
  64.  
  65. </head>
  66.  
  67. <body id="body" onLoad="dt()">
  68.  
  69.     <div id="bannercontent">
  70.         <img src="/images/header.jpg" alt="" />
  71.     </div>
  72.  
  73.     <div id="menucontent">
  74.         <script type="text/javascript" language="javascript1.2" src="/java_scripts/menu.js"></script>
  75.     </div>
  76.  
  77.         <div id="datetime"></div>
  78.  
  79.         <div id="bodycontent">
  80.             <table border="0" cellpadding="25" cellspacing="0" bordercolor="#FF33FF" bgcolor="#ffffff" width="900" align="center">
  81.             <tr>
  82.                 <td align="left">
  83.                     <table border="8" cellpadding="0" cellspacing="0" align="center" bordercolor="#0000cc" bordercolordark="#000066" bordercolorlight="#0066ff">
  84.                     <tr>
  85.                         <td width="815" height="250" align="left" valign="top">
  86.                             <h1>Clermont Christian Church</h1>
  87.  
  88.                             <p>Welcome to our church&acute;s internet home!  You may have stopped here on purpose, or you may have gotten here by accident, but either way, we&acute;re glad you&acute;re here!</p>
  89.                             <br />
  90.                             <p>We are in the business of connecting people to God and connecting people to one another so that life can be all that God intends!  As you look around our site, we hope you&acute;ll find helpful information about CCC and get to know a little bit about who we are.  We&acute;d love to see you face to face sometime, so feel free to stop in to one of our services anytime, or introduce yourself as you see us out in the community.  We are praying for you!</p>
  91.                         </td>
  92.                     </tr>
  93.                     </table>
  94.                 </td>
  95.             </tr>
  96.  
  97.             <tr>
  98.                 <td>
  99.                 <table border="0" cellpadding="5" cellspacing="0" align="center" bordercolor="#ff00cc">
  100.                     <tr>
  101.                         <td width="400" height="400" align="center" valign="middle">
  102.                             <table border="8" cellpadding="0" cellspacing="0" align="center" bordercolor="#0000cc" bordercolordark="#000066" bordercolorlight="#0066ff"><tr><td width="400" height="400" align="center" valign="middle">
  103.                                 <img src="/images/christmasshow2.gif" align="absmiddle" border="0" alt="" />
  104.                             </td></tr></table>
  105.                         </td>
  106.                         <td width="400" height="400" align="center" valign="middle">
  107.                             <table border="8" cellpadding="0" cellspacing="0" align="center" bordercolor="#0000cc" bordercolordark="#000066" bordercolorlight="#0066ff"><tr><td width="400" height="400" align="center" valign="middle">
  108.                                 <img src="/images/services.gif" align="absmiddle"  border="0" alt="" />
  109.                             </td></tr></table>
  110.                         </td>
  111.                     </tr>
  112.  
  113.                     <tr>
  114.                         <td width="400" height="200" align="center" valign="middle">
  115.                             <table border="8" cellpadding="0" cellspacing="0" align="center" bordercolor="#0000cc" bordercolordark="#000066" bordercolorlight="#0066ff"><tr><td width="400" height="250" align="center" valign="middle">
  116.                                 <p class="announceHeader">Discovering Clermont #101:</p>
  117.                                 <p class="announceBody">Date: November 12<br />
  118.                                 Time: Immediately after the 10:30am service</p>
  119.                                 <p class="announceBody">This class is designed to introduce newcomers to our church's mission and ministry.</p>
  120.                                 <p class="announceHL" style="color: #990000">Lunch & Childcare will be provided</p>
  121.                             </td></tr></table>
  122.                         </td>
  123.                         <td width="400" height="200" align="center" valign="middle">
  124.                             <table border="8" cellpadding="0" cellspacing="0" align="center" bordercolor="#0000cc" bordercolordark="#000066" bordercolorlight="#0066ff"><tr><td width="400" height="250" align="center" valign="middle">
  125.                                 <p class="announceHeader">Thanksgiving Dinner</p>
  126.                                 <p class="announceBody">Date: November 19<br />
  127.                                 Time: Immediately after the 10:30am service</p>
  128.                                 <p class="announceBody">The dinner will be held in the Community Life Center, sign-up sheets are on the bulletin board in the foyer.</p>
  129.                                 <p class="announceHL">HELP IS REALLY NEEDED in some areas!!</p>
  130.                             </td></tr></table>
  131.                         </td>
  132.                     </tr>
  133.                 </table>
  134.                 </td>
  135.             </tr>
  136.  
  137.             </table>
  138.         </div>
  139.  
  140.         <div id="footer">
  141.     <p>Clermont Christian Church / Clermont, Indiana</p>
  142. </div>
  143.  
  144.  
  145.     </body>
  146.  
  147. </html>
  148. <!-- ********************************************************** -->
  149. <!-- * START TRIPOD AD CODE - PLEASE REMOVE WHEN EDITING PAGE * -->
  150. <!-- ********************************************************** -->
  151.  
  152. <!-- revision: new - $Change: 88678 $ -->
  153.  
  154. <script type="text/javascript" src="http://hb.lycos.com/hb.js"></script>
  155. <script type="text/javascript">
  156. var cm_role = "live";
  157. var cm_host = "tripod.lycos.com";
  158. var cm_taxid = "/memberembedded";
  159.  
  160. var lycos_ad_category = null;
  161.  
  162. var lycos_ad_remote_addr = "67.98.138.34";
  163. var lycos_ad_www_server = "www.tripod.lycos.com";
  164. var lycos_ad_track_small = "http://members.tripod.com/adm/img/common/ot_smallframe.gif?rand=200387";
  165. var lycos_ad_track_served = "http://members.tripod.com/adm/img/common/ot_adserved.gif?rand=200387";
  166. </script>
  167. <script type="text/javascript" src="http://scripts.lycos.com/catman/init.js"></script>
  168. <script type="text/javascript" src="http://members.tripod.com/adm/ad/code-start.js"></script>
  169. <script type="text/javascript" src="http://members.tripod.com/adm/ad/code-middle.js"></script>
  170. <script type="text/javascript" src="http://members.tripod.com/adm/ad/code-end.js"></script>
  171. <noscript>
  172. <img src="http://members.tripod.com/adm/img/common/ot_noscript.gif?rand=200387" alt="" width="1" height="1" />
  173. <img src="http://lycos.247realmedia.com/data/?tax0_SiteID=2&amp;nojs=true" alt="" width="1" height="1" />
  174. <a href="http://network.realmedia.com/RealMedia/ads/click_nx.ads/lycostripod/ros/728x90/wp/ss/a/200387@Top1?x"><img border="0" src="http://network.realmedia.com/RealMedia/ads/adstream_nx.ads/lycostripod/ros/728x90/wp/ss/a/200387@Top1" alt="leaderboard ad" /></a>
  175. </noscript>
  176.  
  177. <!-- revision: new - $Change: 88678 $ -->
  178.  
  179. <!-- ******************************************************** -->
  180. <!-- * END TRIPOD AD CODE - PLEASE REMOVE WHEN EDITING PAGE * -->
  181. <!-- ******************************************************** -->
  182.  
Nov 8 '06 #1
3 2488
ronverdonk
4,258 Recognized Expert Specialist
When you assume that I will wade through this bunch (180 lines) of unstructured code (not enclosed in code or html tags), you better think twice!

Ronald :cool:
Nov 8 '06 #2
rsteph
71 New Member
I'm sorry I've not posted that often on here before, and never used the code and html tags options that they have. Let me try reposting that here with those tags in place, see if that helps with reading it any.

When you assume that I will wade through this bunch (180 lines) of unstructured code (not enclosed in code or html tags), you better think twice!

Ronald :cool:
Nov 9 '06 #3
rsteph
71 New Member
I have a script that shows the time and date. It's been working on my site for quite a while now. Suddenly it stops showing up, after getting my drop down menu to work.

If I put text between the <div id="datetime"> </div> tags, the text shows up, but the javascript output being sent to those some divs doesn't seem to want to work. It should be showing up in the middle of the content pane, just below the first table box. (set by .css)

Here's the script:

Expand|Select|Wrap|Line Numbers
  1.  
  2. //Original: Xavier R. (xav@lougaou.com)
  3. //Modified: Benjamin Wright, Editor
  4. //Web Site: http://www.lougaou.com/
  5.  
  6. //This script and many more are available free online at The JavaScript Source!!
  7. //http://javascript.internet.com
  8.  
  9. var days = new Array("Sun, ","Mon, ","Tue, ","Wed, ","Thu, ","Fri, ","Sat, "); 
  10. var months = new Array("Jan ","Feb ","Mar ","Apr ","May ","Jun ", 
  11. "Jul ","Aug ","Sep ","Oct ","Nov ","Dec " ); 
  12.  
  13. function dt( ) 
  14. // if browser doesn't support getElementById, 
  15. // then it won't support CSS...so forget it 
  16. if ( document.getElementById == null ) return; 
  17. var dt = new Date(); 
  18.  
  19. var hours = dt.getHours(); 
  20. var ampm = (hours > 11) ? " PM " : " AM "; 
  21. if (hours > 12) hours -= 12; //If it's afternoon, subtract 12 to reset to 12hour scale. 
  22. if (hours == 0) hours = 12; //If it's midnight, show 12. 
  23.  
  24. var now = hours + ":" + (100+dt.getMinutes()) + ":" + (100+dt.getSeconds()) + ampm + " "
  25. + days[dt.getDay()] + months[dt.getMonth()] + dt.getDate() + ", " + dt.getFullYear(); 
  26.  
  27. document.getElementById("datetime").innerHTML = now.replace( /\:1/g, ":" ); 
  28.  
  29. setTimeout( "dt()", 1000 ); 
  30.  
And here's a link to the page: http://rsteph49.tripod .com/default.shtml

Here's the code:

[HTML]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>

<head>
<title>Clermo nt Christian Church</title>
<link href="styles.cs s" rel="stylesheet " type="text/css" />
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<meta name="descripti on" content="This is the website homepage" />
<meta name="keywords" content="Christ ian, Indiana, Church, Clermont, Religion, Indianapolis, Sunday, School" />

<style type="text/css" media="all">
@import "style.css" ;
</style>

<script type="text/javascript" language="JavaS cript1.2" src="/java_scripts/coolmenus4.js"> </script>
<script type="text/javascript" language="JavaS cript1.2" src="/java_scripts/cm_addins.js"></script>
<script type="text/javascript" language="javas cript1.2" src="/java_scripts/sniffer.js">

/*************** *************** *************** **
* Top Navigational Bar III v3.5 (By BrotherCake- brothercake.com )
* Exclusive permission by Dynamicdrive.co m to include script in archive
* For this and 100's more DHTML scripts, visit http://www.dynamicdriv e.com/
* This notice MUST stay intact for legal use
*************** *************** *************** **/

</script>

<script type="text/javascript" language="javas cript1.2" src="/java_scripts/basic_datetime. js"></script>
<script type="text/javascript" language="javas cript1.2" src="/java_scripts/custom.js"></script>
<script type="text/javascript" language="javas cript1.2" src="/java_scripts/style.js"></script>

</head>

<body id="body" onLoad="dt()">

<div id="bannerconte nt">
<img src="/images/header.jpg" alt="" />
</div>

<div id="menucontent ">
<script type="text/javascript" language="javas cript1.2" src="/java_scripts/menu.js"></script>
</div>

<div id="datetime"> </div>

<div id="bodycontent ">
<table border="0" cellpadding="25 " cellspacing="0" bordercolor="#F F33FF" bgcolor="#fffff f" width="900" align="center">
<tr>
<td align="left">
<table border="8" cellpadding="0" cellspacing="0" align="center" bordercolor="#0 000cc" bordercolordark ="#000066" bordercolorligh t="#0066ff">
<tr>
<td width="815" height="250" align="left" valign="top">
<h1>Clermont Christian Church</h1>

<p>Welcome to our church&acute;s internet home! You may have stopped here on purpose, or you may have gotten here by accident, but either way, we&acute;re glad you&acute;re here!</p>
<br />
<p>We are in the business of connecting people to God and connecting people to one another so that life can be all that God intends! As you look around our site, we hope you&acute;ll find helpful information about CCC and get to know a little bit about who we are. We&acute;d love to see you face to face sometime, so feel free to stop in to one of our services anytime, or introduce yourself as you see us out in the community. We are praying for you!</p>
</td>
</tr>
</table>
</td>
</tr>

<tr>
<td>
<table border="0" cellpadding="5" cellspacing="0" align="center" bordercolor="#f f00cc">
<tr>
<td width="400" height="400" align="center" valign="middle" >
<table border="8" cellpadding="0" cellspacing="0" align="center" bordercolor="#0 000cc" bordercolordark ="#000066" bordercolorligh t="#0066ff"><tr ><td width="400" height="400" align="center" valign="middle" >
<img src="/images/christmasshow2. gif" align="absmiddl e" border="0" alt="" />
</td></tr></table>
</td>
<td width="400" height="400" align="center" valign="middle" >
<table border="8" cellpadding="0" cellspacing="0" align="center" bordercolor="#0 000cc" bordercolordark ="#000066" bordercolorligh t="#0066ff"><tr ><td width="400" height="400" align="center" valign="middle" >
<img src="/images/services.gif" align="absmiddl e" border="0" alt="" />
</td></tr></table>
</td>
</tr>

<tr>
<td width="400" height="200" align="center" valign="middle" >
<table border="8" cellpadding="0" cellspacing="0" align="center" bordercolor="#0 000cc" bordercolordark ="#000066" bordercolorligh t="#0066ff"><tr ><td width="400" height="250" align="center" valign="middle" >
<p class="announce Header">Discove ring Clermont #101:</p>
<p class="announce Body">Date: November 12<br />
Time: Immediately after the 10:30am service</p>
<p class="announce Body">This class is designed to introduce newcomers to our church's mission and ministry.</p>
<p class="announce HL" style="color: #990000">Lunch & Childcare will be provided</p>
</td></tr></table>
</td>
<td width="400" height="200" align="center" valign="middle" >
<table border="8" cellpadding="0" cellspacing="0" align="center" bordercolor="#0 000cc" bordercolordark ="#000066" bordercolorligh t="#0066ff"><tr ><td width="400" height="250" align="center" valign="middle" >
<p class="announce Header">Thanksg iving Dinner</p>
<p class="announce Body">Date: November 19<br />
Time: Immediately after the 10:30am service</p>
<p class="announce Body">The dinner will be held in the Community Life Center, sign-up sheets are on the bulletin board in the foyer.</p>
<p class="announce HL">HELP IS REALLY NEEDED in some areas!!</p>
</td></tr></table>
</td>
</tr>
</table>
</td>
</tr>

</table>
</div>

<div id="footer">
<p>Clermont Christian Church / Clermont, Indiana</p>
</div>


</body>

</html>
<!-- *************** *************** *************** ***** ******** -->
<!-- * START TRIPOD AD CODE - PLEASE REMOVE WHEN EDITING PAGE * -->
<!-- *************** *************** *************** ***** ******** -->

<!-- revision: new - $Change: 88678 $ -->

<script type="text/javascript" src="http://hb.lycos.com/hb.js"></script>
<script type="text/javascript">
var cm_role = "live";
var cm_host = "tripod.lycos.c om";
var cm_taxid = "/memberembedded" ;

var lycos_ad_catego ry = null;

var lycos_ad_remote _addr = "67.98.138. 34";
var lycos_ad_www_se rver = "www.tripod.lyc os.com";
var lycos_ad_track_ small = "http://members.tripod. com/adm/img/common/ot_smallframe.g if?rand=200387" ;
var lycos_ad_track_ served = "http://members.tripod. com/adm/img/common/ot_adserved.gif ?rand=200387";
</script>
<script type="text/javascript" src="http://scripts.lycos.c om/catman/init.js"></script>
<script type="text/javascript" src="http://members.tripod. com/adm/ad/code-start.js"></script>
<script type="text/javascript" src="http://members.tripod. com/adm/ad/code-middle.js"></script>
<script type="text/javascript" src="http://members.tripod. com/adm/ad/code-end.js"></script>
<noscript>
<img src="http://members.tripod. com/adm/img/common/ot_noscript.gif ?rand=200387" alt="" width="1" height="1" />
<img src="http://lycos.247realme dia.com/data/?tax0_SiteID=2& amp;nojs=true" alt="" width="1" height="1" />
<a href="http://network.realmed ia.com/RealMedia/ads/click_nx.ads/lycostripod/ros/728x90/wp/ss/a/200387@Top1?x"> <img border="0" src="http://network.realmed ia.com/RealMedia/ads/adstream_nx.ads/lycostripod/ros/728x90/wp/ss/a/200387@Top1" alt="leaderboar d ad" /></a>
</noscript>

<!-- revision: new - $Change: 88678 $ -->

<!-- *************** *************** *************** ***** ****** -->
<!-- * END TRIPOD AD CODE - PLEASE REMOVE WHEN EDITING PAGE * -->
<!-- *************** *************** *************** ***** ****** -->
[/HTML]
Nov 9 '06 #4

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

Similar topics

2
2265
by: Madhav | last post by:
I have the following statements in my script. ---------------------------------------------------------- textToWrite = "<HTML> \n" + "<HEAD> \n" + "<TITLE>Calendar</TITLE> \n" + "<SCRIPT LANGUAGE=\"JavaScript1.2\"SRC=\"popWin.js\">"+ "</SCRIPT> \n" + "</HEAD> \n" + "<BODY> \n" ; textToWrite += "<\BODY>\n" +
11
2839
by: Wentink | last post by:
Does anybody have a simple script that let's me popup a picture from a thumbnail? The ones i found are all very very complicated and messy in the source... Thanks, Tintin
8
4230
by: Johnny Knoxville | last post by:
I've added a favicon to my site (http://lazyape.filetap.com/) which works fine if you add the site to favourites the normal way, but I have some JavaScript code on a couple of pages with a link, which when you click it bookmarks the site (much easier). The favicon is never saved if the site is bookmarked this way. Does anyone have any ideas how to fix this?? This is the code: <script language="JavaScript">
5
1812
by: Tushar | last post by:
hello all, i would like to know why this code compiles and gives the output Code 1: ---------- int main(){ printf("String" + 2); }
1
4804
by: noleander | last post by:
Hi. I've got a C++ program written in Visual C++ 2003. The program is trivial, created with the Program-creation wizard: used the .NET "Form" template. The program has a trivial single-pane form GUI. I've got some stdout print statements in the code ... but I cannot find where in the world the output text is appearing. For printing I tried both: printf ("Hello world\n"); and Console::Write ("Hello World\n");
0
3226
by: ZMan | last post by:
Scenario: This is about debugging server side scripts that make calls to middle-tier business DLLs. The server side scripts are legacy ASP 3.0 pages, and the DLLs are managed DLLs converted/developed with VB.NET. What I want from debugging is to be able to step into the methods in the DLLs called from ASP scripts using Visual Studio .NET. Background: For typical script debugging issues, you can read and follow the two documents on...
3
1935
by: JR | last post by:
I'm experiencing a problem where, for seemingly no reason, trace output stops being logged (and appearing on my pages.) trace.enabled suddenly just turns to false. Any idea why this happens? It actually is happening on 2 machines I work on. Thanks.
1
1947
by: Adam Atlas | last post by:
(Apache/2.0.55, PHP/4.4.1) I am using an "Action" directive in my Apache configuration to map a certain file type (by means of AddType and AddHandler) to a PHP script. I wasn't sure if this would work, since the Apache docs say the Action directive is for mapping a handler name to a CGI script in particular. But it seemed to work at first. Then a mysterious bug arose: Sometimes it works perfectly, and other times the output is a totally...
5
1412
by: lionel | last post by:
Hello, This is a simple script I test in a browser (firefox & opera) : echo "test 1<br />" ; sleep(3); echo "test 2<br />" ; I expected to see "test 1" appearing first and then "test 2" 3 sec after. Still, I got "test 1" & "test 2" appearing "in one shot" after 3 seconds.
0
9555
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9376
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9329
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9250
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6796
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6076
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4607
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3315
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2787
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.