473,387 Members | 1,542 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,387 software developers and data experts.

Microsoft JScript runtime error: is null or not an object

Hello

I'm having the following problem:

My main webpage calls a function stored in a .js file that creates an HTML window to display a calendar. Whenever I click on a date in that calendar,
the calendar should return to the main webpage, but it cannot find the home window again. I'm getting this error:

Microsoft JScript runtime error: 'self.opener.document.idFormMain.txtPeriodOfOperat ionEff' is null or not an object

I've successfully used this before, but I'm at a loss why it's not working here.

I've included relevant parts the source code that I'm using as follows:

Part <A> is a section of the HTML in my main webpage that creates the Calendar Window.
Part <B> is a javascript function at the bottom of the main HTML page that's called from the highlighted line in <A>
Part <C> is the HTML of the Calendar Window that is created by calendar.js

For copyright reasons (i.e. I don't own it), I'm afraid I can't include the source for calendar.js.

Can anyone help me?

Thanks much in advance.
Expand|Select|Wrap|Line Numbers
  1. =================================BEGIN Part A=================================
  2. <script src='calender.js' type='text/javascript'></script>
  3.  
  4. <!-- Begin Main (Right-Side, Bottom) -->
  5. <tr valign='top' style='height: 184px'>
  6. <td align='center' valign='top' style='font-family: tahoma,verdana,arial,sans-serif; font-size: 11px; font-weight: bold; color: #000000; padding: 0px;'>
  7. <span id="spnForm" runat="server" /> 
  8. <form id='idFormMain' method='post'>
  9. <hr size='1' style='color: #808000; border-top-style: solid; border-right-style: solid; border-left-style: solid; border-bottom-style: solid;' noshade/>
  10. <!-- Master Data Input Table -->
  11. <table id='idtblMasterDataInput' style='width: 720px;' border='0' cellpadding='0' cellspacing='0'>
  12. <!-- Row 3 of Master Data Input Table -->
  13. <tr>
  14. <td align='left' valign='middle' style='width: 100%; padding-right: 0px; padding-left: 0px; font-size: 11px; padding-bottom: 0px; color: #000000; padding-top: 0px; font-family: tahoma,verdana,arial,sans-serif; background-color: #ffffff; border-bottom-width: 1px; border-bottom-color: #d1b172;'>
  15. <!-- Container Table for Row 3 of Master Data Input Table -->
  16. <table id='idtblMasterDataInputRow3' style='width: 100%;' border='0' cellpadding='0' cellspacing='0'>
  17. <tr>
  18. <td align='left' valign='middle' style='width: 30%'>
  19. <!-- Effective Date Input Subtable -->
  20. <table id='idtblPeriodOfOperationEff' style='width: 100%;' border='0' cellpadding='0' cellspacing='0'>
  21. <tr>
  22. <td align='left' valign='middle' style='width: 33%; padding-right: 0px; padding-left: 6px; font-size: 11px; padding-bottom: 0px; color: #000000; padding-top: 1px; font-family: tahoma,verdana,arial,san-serif; background-color: #ffffff;'>
  23. Effective Date:
  24. </td>
  25. <td align='left' valign='middle' style='width: 47%; padding-right: 0px; padding-left: 6px; font-size: 11px; padding-bottom: 0px; color: #000000; padding-top: 1px; font-family: tahoma,verdana,arial,sans-serif; background-color: #ffffff;'>
  26. <input type='text' id='txtPeriodOfOperationEff' name='txtPeriodOfOperationEff' maxlength='10' runat='server' style='padding-right: 0px; padding-left: 6px; font-size: 11px; padding-bottom: 0px; text-transform: uppercase; width: 90%; color: #000000; padding-top: 1px; font-family: tahoma,verdana,arial,sans-serif; background-color: #ffffff;' />
  27. </td>
  28. <td align='left' valign='middle' style='width: 20%; padding-right: 0px; padding-left: 6px; font-size: 11px; padding-bottom: 0px; color: #000000; padding-top: 1px; font-family: tahoma,verdana,arial,sans-serif; background-color: #ffffff;'>
  29. <img border='0' src='/img/calendar1.gif' onclick="javascript:pop_cal('txtPeriodOfOperationEff')" width="16" height="16"/>
  30. </td>
  31. </tr>
  32. </table>
  33. </td>
  34. <td align='left' valign='middle' style='width: 30%'>
  35. <!-- Discontinue Date Input Subtable -->
  36. <table id='idtblPeriodOfOperationDisc' style='width: 100%;' border='0' cellpadding='0' cellspacing='0'>
  37. <tr>
  38. <td align='left' valign='middle' style='width: 36%; padding-right: 0px; padding-left: 6px; font-size: 11px; padding-bottom: 0px; color: #000000; padding-top: 1px; font-family: tahoma,verdana,arial,san-serif; background-color: #ffffff;'>
  39. Discontinue Date:
  40. </td>
  41. <td align='left' valign='middle' style='width: 44%; padding-right: 0px; padding-left: 6px; font-size: 11px; padding-bottom: 0px; color: #000000; padding-top: 1px; font-family: tahoma,verdana,arial,sans-serif; background-color: #ffffff;'>
  42. <input type='text' id='txtPeriodOfOperationDisc' name='txtPeriodOfOperationDisc' maxlength='10' runat='server' style='padding-right: 0px; padding-left: 6px; font-size: 11px; padding-bottom: 0px; text-transform: uppercase; width: 90%; color: #000000; padding-top: 1px; font-family: tahoma,verdana,arial,sans-serif; background-color: #ffffff;' />
  43. </td>
  44. <td align='left' valign='middle' style='width: 20%; padding-right: 0px; padding-left: 6px; font-size: 11px; padding-bottom: 0px; color: #000000; padding-top: 1px; font-family: tahoma,verdana,arial,sans-serif; background-color: #ffffff;'>
  45. <img border='0' src='/img/calendar1.gif' onclick="javascript:pop_cal('txtPeriodOfOperationDisc')" width="16" height="16"/>
  46. </td>
  47. </tr>
  48. </table>
  49. </td>
  50. </tr>
  51. </table>
  52. </td>
  53. </tr>
  54. </table>
  55. </form>
  56. </td>
  57. </tr>
  58. ==================================END Part A==================================
  59.  
Expand|Select|Wrap|Line Numbers
  1. =================================BEGIN Part B=================================
  2. <script type="text/javascript">
  3. function pop_cal(ival)
  4. {
  5. show_calendar('idFormMain.' + ival); // show_calendar() is a function within calendar.js
  6. }
  7. </script>
  8. ==================================END Part B==================================
  9.  
  10. =================================BEGIN Part C=================================
  11. <html>
  12. <head><title>Calendar</title>
  13. </head>
  14. <body BGCOLOR='#FFFFFF' link="black" vlink="black" alink="black" text="black" STYLE="font-family: tahoma,verdana,arial,sans-serif; font-size: 1px; font-weight: normal; color: #000000;">
  15. <CENTER><FONT STYLE="font-family: tahoma,verdana,arial,sans-serif; font-size: 13px; font-weight: bold; color: #000000;">May 2007</FONT></CENTER><TABLE WIDTH='100%' BORDER=1 CELLSPACING=0 CELLPADDING=0 BGCOLOR='#F0F0F0' BORDERCOLOR='#000000' STYLE='width: 230px; font-family: tahoma,verdana,arial,sans-serif; font-size: 11px; font-weight: normal; color: #000000; border-collapse: collapse;'><TR><TD ALIGN=center valign=bottom style='height:20px;'>
  16. <A HREF="javascript:window.opener.Build('idFormMain.txtPeriodOfOperationEff', '4', '2006', 'MM/DD/YYYY');"> <img src='/img/nav_begin.gif' border=0> </A></TD><TD ALIGN=center VALIGN=bottom>
  17. <A HREF="javascript:window.opener.Build('idFormMain.txtPeriodOfOperationEff', '3', '2007', 'MM/DD/YYYY');"> <img src='/img/nav_prev.gif' border=0> </A></TD><TD ALIGN=center VALIGN=bottom>
  18. <A HREF="javascript:window.opener.Build('idFormMain.txtPeriodOfOperationEff', '5', '2007', 'MM/DD/YYYY');"> <img src='/img/nav_next.gif' border=0> </A></TD><TD ALIGN=center VALIGN=bottom>
  19. <A HREF="javascript:window.opener.Build('idFormMain.txtPeriodOfOperationEff', '4', '2008', 'MM/DD/YYYY');"> <img src='/img/nav_end.gif' border=0> </A></TD></TR></TABLE><BR>
  20. <TABLE BORDER=1 CELLSPACING=0 CELLPADDING=0' BORDERCOLOR='#000099' STYLE='width: 230px; font-family: tahoma,verdana,arial,sans-serif; font-size: 11px; font-weight: normal; color: #000000; border-collapse: collapse;'><TR><TD ALIGN='CENTER' VALIGN='MIDDLE' WIDTH='14%' STYLE='height: 20px; font-family: tahoma,verdana,arial,sans-serif; font-size: 11px; font-weight: bold; color: #FFFFFF; background-color: #000099;'>S</TD><TD ALIGN='CENTER' VALIGN='MIDDLE' WIDTH='14%' STYLE='height: 20px; font-family: tahoma,verdana,arial,sans-serif; font-size: 11px; font-weight: bold; color: #FFFFFF; background-color: #000099;'>M</TD><TD ALIGN='CENTER' VALIGN='MIDDLE' WIDTH='14%' STYLE='height: 20px; font-family: tahoma,verdana,arial,sans-serif; font-size: 11px; font-weight: bold; color: #FFFFFF; background-color: #000099;'>T</TD><TD ALIGN='CENTER' VALIGN='MIDDLE' WIDTH='14%' STYLE='height: 20px; font-family: tahoma,verdana,arial,sans-serif; font-size: 11px; font-weight: bold; color: #FFFFFF; background-color: #000099;'>W</TD><TD ALIGN='CENTER' VALIGN='MIDDLE' WIDTH='14%' STYLE='height: 20px; font-family: tahoma,verdana,arial,sans-serif; font-size: 11px; font-weight: bold; color: #FFFFFF; background-color: #000099;'>T</TD><TD ALIGN='CENTER' VALIGN='MIDDLE' WIDTH='14%' STYLE='height: 20px; font-family: tahoma,verdana,arial,sans-serif; font-size: 11px; font-weight: bold; color: #FFFFFF; background-color: #000099;'>F</TD><TD ALIGN='CENTER' VALIGN='MIDDLE' WIDTH='16%' STYLE='height: 20px; font-family: tahoma,verdana,arial,sans-serif; font-size: 11px; font-weight: bold; color: #FFFFFF; background-color: #000099;'>S</TD></TR><TR><TD WIDTH='14%' BGCOLOR="#E0E0C0"><FONT SIZE='2' FACE='Verdana'>&nbsp;</FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'>&nbsp;</FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/01/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">1</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/02/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">2</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/03/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">3</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/04/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">4</A></FONT></TD><TD WIDTH='14%' BGCOLOR="#E0E0C0"><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/05/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">5</A></FONT></TD></TR><TR><TD WIDTH='14%' BGCOLOR="#E0E0C0"><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/06/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">6</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/07/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">7</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/08/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">8</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/09/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">9</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/10/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">10</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/11/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">11</A></FONT></TD><TD WIDTH='14%' BGCOLOR="#E0E0C0"><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/12/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">12</A></FONT></TD><TR><TD WIDTH='14%' BGCOLOR="#E0E0C0"><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/13/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">13</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/14/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">14</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/15/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">15</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/16/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">16</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/17/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">17</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/18/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();"><FONT COLOR="RED"><B>18</B></FONT></A></FONT></TD><TD WIDTH='14%' BGCOLOR="#E0E0C0"><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/19/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">19</A></FONT></TD><TR><TD WIDTH='14%' BGCOLOR="#E0E0C0"><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/20/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">20</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/21/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">21</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/22/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">22</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/23/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">23</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/24/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">24</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/25/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">25</A></FONT></TD><TD WIDTH='14%' BGCOLOR="#E0E0C0"><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/26/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">26</A></FONT></TD><TR><TD WIDTH='14%' BGCOLOR="#E0E0C0"><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/27/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">27</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/28/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">28</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/29/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">29</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/30/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">30</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana'><A HREF='#' onClick="self.opener.document.idFormMain.txtPeriodOfOperationEff.value='05/31/2007';self.opener.document.idFormMain.txtPeriodOfOperationEff.focus();window.close();">31</A></FONT></TD><TD WIDTH='14%'><FONT SIZE='2' FACE='Verdana' COLOR='gray'>1</FONT></TD><TD WIDTH='14%' BGCOLOR="#E0E0C0"><FONT SIZE='2' FACE='Verdana' COLOR='gray'>2</FONT></TD></TABLE>
  21. <CENTER><FONT STYLE="font-family: tahoma,verdana,arial,sans-serif; font-size: 11px; font-weight: normal; color: #000000;">[ <A HREF="javascript:window.close();">Close Calendar</A> ]</FONT></CENTER>
  22. </font></body></html>
  23. ==================================END Part C==================================
  24.  
May 18 '07 #1
1 3028
acoder
16,027 Expert Mod 8TB
This is a typical example of misusing IDs in place of names. That syntax requires the form to have a name "idFormMain". Either add that name to the form or change all references to self.opener.document.idFormMain to self.opener.document.getElementById("idFormMain").
Jun 7 '08 #2

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

Similar topics

0
by: Sean Newton | last post by:
I am absolutely bewildered by now by the Microsoft.Samples SSPI and Security assemblies. I've been trying to set these up in a very straightforward harness in the way that I'd like to be able to...
1
by: JNariss | last post by:
Hello, I have created a connection to my Access database with Dreamweaver and made a simple form with 4 fields. The code behind this form was/is: <%@LANGUAGE="VBCRIPT" CODEPAGE="1252"%>...
2
by: emfinkk | last post by:
Everything was working fine. I installed a bunch of Windows Updates and now I can no longer create ActiveX objects on 2 different Web Servers (1 Server2000, 1 Server2003). I have reinstalled...
28
by: sturlamolden | last post by:
On Monday Microsoft announced a new runtime for dynamic languages, which they call "DLR". It sits on top of the conventional .NET runtime (CLR) and provides services for dynamically typed...
1
by: pratimapaudel | last post by:
function Showdiv() { var SelectStates = document.getElementById('Select1').value; if(SelectStates ="3") { document.getElementById("div2").style.display = "block"; } else ...
7
by: EdEvans | last post by:
have the following code on a page: protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Page.ClientScript.RegisterStartupScript(this.GetType(), "DoPreview",...
3
by: suganya | last post by:
Hi Some professionals already has developed the project using menu. In my company, they have given me task to clear the error in that. It is a script file named as "menubarAPI4.js" which is kept...
26
by: asmx126453 | last post by:
Hey Guys, i have a question about that error is there a specfick thing were the error on focus becase i have a DOTNET project and it shows on almost evry page that error if i whanne add something...
2
by: joelkeepup | last post by:
Hi, I made a change this morning and now im getting an error that says either "a is undefined or null" or "e is undefined or null" the microsoft ajax line is below, I have no idea how to...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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...

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.