473,729 Members | 2,150 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Someone - **please, please, please** help :-( .js problem

Hello,

I have an HTML page that I am trying to import 2 .js file (I created)
into. These files are: row_functions.j s and data_check_func tions.js.
Whenever I bring the contents of the files into this HTML file, all is
OK but whenever the functions are separated (as it is now), when I run
the page, I get the following error:

Line 73, object expected.

Line 73 below is:

<INPUT onClick="if (FTry2(PrepObj( 'FrmX'))) {
addRowToTable(' FDependents', form.FDependSoc ialSecurityNumb er.value,
form.FDependLas tName.value,
form.FDependFir stName.value, form.FDependMid dleInitial.valu e,
form.FDependDat eOfBirth.value, form.FDependSta te.value,
form.FDependZip Code.value, form.FDependPho neNumber.value,
form.FDependAmo untPaid.value, form.FDependRel ationship.value ); } "
type=button value=" Add " name="Add">

In other words, there seems to be something wrong with the "onClick"
event. It does not seem to recognize the functions I have in the other
..js files. It does not get into the "FTry2" or the "PrepObj" functions
(I had placed an "alert" there at the entry point of the functions and
they never fired.

Someone please help :-( What am I doing wrong?

----------------------- HTML PAGE LISTED BELOW ------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv=Content-Type content="text/html;
charset=windows-1252">
</HEAD>
<script language="javas cript" TYPE="applicati on/x-javascript"
src="file:///C|Documents and Settings\Deskto p\BASE
PAGE\row_functi ons.js" >
<script language="javas cript" TYPE="applicati on/x-javascript"
src="file:///C|Documents and Settings\Deskto p\BASE
PAGE\data_check _functions.js" >

<SCRIPT language=JavaSc ript type="text/javascript">
function PrepObj(Frm) {
alert("got in this shit");
// So written to allow display by ShowFF()
with (document.forms[Frm]) return { Fawm:Frm, A:[
// {F:"Field" W:"What" H:"How" ?R:RegExp ?V:ValFn ?P{Params}},
{F:"FDependSoci alSecurityNumbe r", W:"Social Security Number", H:"be
in ###-##-#### format ", V:RegCheckSocia lOK},
{F:"FDependLast Name", W:"Last Name", H:"non-blank", V:FmlyOK},
{F:"FDependFirs tName", W:"First Name", H:"non-blank", V:FmlyOK},
{F:"FDependMidd leInitial", W:"Middle Initial", H:"non-blank",
V:FmlyOK},
{F:"FDependDate OfBirth", W:"Date of Birth", H:"in valid format
MM-DD-YYYY", V:RegCheckDateO K, V:DateOK},
{F:"FDependStat e", W:"State", H:"non-blank", V:FmlyOK},
{F:"FDependZipC ode", W:"Zip Code", H:" ", V:RegCheckZipOK },
{F:"FDependPhon eNumber", W:"Phone Number", H:" in XXX-XXX-XXXX form
", V:RegCheckUSPho neOK},
{F:"FDependAmou ntPaid", W:"Amount Paid", H:"in dollars and cents ",
V:RegCheckUSDol larsOK},
{F:"FDependRela tionship", W:"Relationship ", H:"non-blank",
V:FmlyOK}
] } }

function loadData(){
addRowToTable(1 ,2,3,4,5,6,7,8, 9,10);
}
</SCRIPT>
<BODY>
<FORM name=FrmX >
<div ID="errmesg">  </div>
Social Security Number <br>
&nbsp;&nbsp;&nb sp;&nbsp;&nbsp; &nbsp;&nbsp;&nb sp;<INPUT TYPE ="text"
style="width:30 0px" maxLength=11 name=FDependSoc ialSecurityNumb er>
<br>Last Name<br>
&nbsp;&nbsp;&nb sp;&nbsp;&nbsp; &nbsp;&nbsp;&nb sp;<INPUT TYPE ="text"
style="width:30 0px" maxLength=35 name=FDependLas tName>
<br>First Name<br>
&nbsp;&nbsp;&nb sp;&nbsp;&nbsp; &nbsp;&nbsp;&nb sp;<INPUT TYPE ="text"
style="width:30 0px" maxLength=35 name=FDependFir stName>
<br>Middile Initial<br>
&nbsp;&nbsp;&nb sp;&nbsp;&nbsp; &nbsp;&nbsp;&nb sp;<INPUT TYPE ="text"
style="width:30 0px" maxLength=1 name=FDependMid dleInitial>
<br>Date Of Birth<br>
&nbsp;&nbsp;&nb sp;&nbsp;&nbsp; &nbsp;&nbsp;&nb sp;<INPUT TYPE ="text"
style="width:30 0px" maxLength=12 name=FDependDat eOfBirth>
<br>State<br>
&nbsp;&nbsp;&nb sp;&nbsp;&nbsp; &nbsp;&nbsp;&nb sp;<SELECT size=1 "
style="width:30 0px" name=FDependSta te>
<OPTION value=TX >TX</OPTION>
<OPTION value=CA>CA</OPTION>
<OPTION value=FL>FL</OPTION>
<OPTION value=NY>NY</OPTION>
</SELECT>
<br>Zip Code<br>
&nbsp;&nbsp;&nb sp;&nbsp;&nbsp; &nbsp;&nbsp;&nb sp;<INPUT TYPE ="text"
style="width:30 0px" maxLength=5 name=FDependZip Code>
<br>Phone Number<br>
&nbsp;&nbsp;&nb sp;&nbsp;&nbsp; &nbsp;&nbsp;&nb sp;<INPUT TYPE ="text"
style="width:30 0px" maxLength=12 name=FDependPho neNumber>
<br>Amount Paid<br>
&nbsp;&nbsp;&nb sp;&nbsp;&nbsp; &nbsp;&nbsp;&nb sp;<INPUT TYPE ="text"
style="width:30 0px" maxLength=8 name=FDependAmo untPaid>
<br>Relationshi p<br>
&nbsp;&nbsp;&nb sp;&nbsp;&nbsp; &nbsp;&nbsp;
<SELECT size=1 style="width:30 0px" name=FDependRel ationship>
<OPTION value=1 selected>1- MOTHER</OPTION>
<OPTION value=2>2- FATHER</OPTION>
<OPTION value=3>3- SISTER</OPTION>
<OPTION value=4>4- BROTHER</OPTION>
<OPTION value=5>5- GRANDMOTHER</OPTION>
<OPTION value=6>6- GRANDFATHER</OPTION>
</SELECT>
<P>

<TABLE width=388><TBOD Y><TR>
<TD width=113>
<INPUT onClick="if (FTry2(PrepObj( 'FrmX'))) {
addRowToTable(' FDependents', form.FDependSoc ialSecurityNumb er.value,
form.FDependLas tName.value,
form.FDependFir stName.value, form.FDependMid dleInitial.valu e,
form.FDependDat eOfBirth.value, form.FDependSta te.value,
form.FDependZip Code.value, form.FDependPho neNumber.value,
form.FDependAmo untPaid.value, form.FDependRel ationship.value ); } "
type=button value=" Add " name="Add">
</TD>
<TD width=154>
<INPUT onclick=removeR owFromTable('FD ependents'); type=button
value=Remove name=Remove>
</TD><TD width=154>
<INPUT onclick=openInN ewWindow(this.f orm); type=submit value=Continue
name=Continue>
</TD>
</TR>
</TBODY></TABLE>
</FORM>
</P>
<FORM name=FrmTabX action="#">
<TABLE id="FDependents " class=table cellSpacing=0 cellPadding=0
width="100%" align=left border=1>
<TBODY>
<TR>
<TD vAlign=top bgColor=darkgre en><FONT color=#006633>< FONT
color=#ffffff>C hoice</FONT> </FONT></TD>
<TD vAlign=top bgColor=darkgre en><FONT color=#ffffff>S ocial Sec
No.</FONT></TD>
<TD vAlign=top bgColor=darkgre en><FONT
color=#ffffff>L astName</FONT></TD>
<TD vAlign=top bgColor=darkgre en><FONT color=#ffffff>F irst
Name</FONT></TD>
<TD vAlign=top bgColor=darkgre en><FONT color=#ffffff>M iddle
</FONT></TD>
<TD vAlign=top bgColor=darkgre en><FONT color=#ffffff>D ate of
Birth</FONT></TD>
<TD vAlign=top bgColor=darkgre en><FONT color=#ffffff>S tate </FONT></TD>
<TD vAlign=top bgColor=darkgre en><FONT color=#ffffff>Z ip
Code</FONT></TD>
<TD vAlign=top bgColor=darkgre en><FONT color=#ffffff>P hone
Number</FONT></TD>
<TD vAlign=top bgColor=darkgre en><FONT color=#ffffff>A mount Pd.
</FONT></TD>
<TD vAlign=top bgColor=darkgre en><FONT
color=#ffffff>R elationship</FONT></TD></TR>
<TR>
<TD vAlign=top>*</TD>
<TD vAlign=top>*</TD>
<TD vAlign=top>*</TD>
<TD vAlign=top>*</TD>
<TD vAlign=top>*</TD>
<TD vAlign=top>*</TD>
<TD vAlign=top>*</TD>
<TD vAlign=top>*</TD>
<TD vAlign=top>*</TD>
<TD vAlign=top>*</TD>
<TD vAlign=top>*</TD>
</TR>
</TBODY></TABLE></P>
</FORM>
</BODY>
</HTML>

Jul 23 '05 #1
11 1922
milkyway wrote:
Hello,

I have an HTML page that I am trying to import 2 .js file (I created)
into. These files are: row_functions.j s and data_check_func tions.js.
Whenever I bring the contents of the files into this HTML file, all is
OK but whenever the functions are separated (as it is now), when I run
the page, I get the following error:

Line 73, object expected.

Line 73 below is:

<INPUT onClick="if (FTry2(PrepObj( 'FrmX'))) {
addRowToTable(' FDependents', form.FDependSoc ialSecurityNumb er.value,


where is 'addRowToTable' defined?

Reduce your problem to the smallest amount of code to still show it
(say one form input and minimal HTML) and re-post - at least get rid of
all the &nbsp; - use padding or margin or some other layout technique.

Try changing references such as:

form.FDependSoc ialSecurityNumb er.value

to:

forms.FrmX.FDep endSocialSecuri tyNumber.value

Also, all your attribute values should be quoted, not just some of
them. And ditch "language='java script' " - it's depreciated and
replaced by type="text/javascript".

--
Fred
Jul 23 '05 #2
On 16 Jan 2005 05:01:36 -0800, in comp.lang.javas cript "milkyway"
<d0******@hotma il.com> wrote:
| Hello,
|
| I have an HTML page that I am trying to import 2 .js file (I created)
| into. These files are: row_functions.j s and data_check_func tions.js.
| Whenever I bring the contents of the files into this HTML file, all is
| OK but whenever the functions are separated (as it is now), when I run
| the page, I get the following error:
|
| Line 73, object expected.
|
| Line 73 below is:
|
| <INPUT onClick="if (FTry2(PrepObj( 'FrmX'))) {
| addRowToTable(' FDependents', form.FDependSoc ialSecurityNumb er.value,
| form.FDependLas tName.value,
| form.FDependFir stName.value, form.FDependMid dleInitial.valu e,
| form.FDependDat eOfBirth.value, form.FDependSta te.value,
| form.FDependZip Code.value, form.FDependPho neNumber.value,
| form.FDependAmo untPaid.value, form.FDependRel ationship.value ); } "
| type=button value=" Add " name="Add">
|
| In other words, there seems to be something wrong with the "onClick"
| event. It does not seem to recognize the functions I have in the other
| .js files. It does not get into the "FTry2" or the "PrepObj" functions
| (I had placed an "alert" there at the entry point of the functions and
| they never fired.
|
| Someone please help :-( What am I doing wrong?
|
| ----------------------- HTML PAGE LISTED BELOW ------------------
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
| <HTML>
| <HEAD>
| <META http-equiv=Content-Type content="text/html;
| charset=windows-1252">
| </HEAD>
| <script language="javas cript" TYPE="applicati on/x-javascript"
| src="file:///C|Documents and Settings\Deskto p\BASE
| PAGE\row_functi ons.js" >
| <script language="javas cript" TYPE="applicati on/x-javascript"
| src="file:///C|Documents and Settings\Deskto p\BASE
| PAGE\data_check _functions.js" >


Your script files are pointing to your hard drive. You should make the
links point to the folder within your website. For example the script
files are in a folder called scripts, your <script> tags would look
like:
<script language="javas cript" TYPE="applicati on/x-javascript"
src="folder/row_functions.j s" >
<script language="javas cript" TYPE="applicati on/x-javascript"
src="folder/data_check_func tions.js" >

Script tags etc should normally be placed between the <head></head>
tags, the browser could be ignoring them in your code.

The Type attribute should be type="text/javascript" but don't quote me
on that.

---------------------------------------------------------------
jn****@yourpant sbigpond.net.au : Remove your pants to reply
---------------------------------------------------------------
Jul 23 '05 #3
Fred Oz wrote:
<snip>
Try changing references such as:

form.FDependSoc ialSecurityNumb er.value

to:

forms.FrmX.FDep endSocialSecuri tyNumber.value
The first (left most) item in these property accessors is (in ECMAScript
production rule terms) an Identifier and will be resolved against the
scope chain of the (internally generated, for code defined in an
intrinsic event attribute strings) event handling function (as per ECMA
272 (3rd edition) Section 10.1.4 "Scope Chain and Identifier
Resolution").

As a result, error-free resolution of either of those property accessors
requires that the left most Identifier correspond with a named property
of one of the objects on the function's scope chain that holds a
reference to an object. When closures are not being employed, the normal
scope chain of an executing javascript function will contain the
Activation/Variable object (holding references to the function's formal
parameters, named inner function declarations and local variables) of
the individual execution context followed by the global/window object.
The global/window object would not normally be expected to have
properties named "form" or "forms" and so both of those property
accessors will fail.

In practice some browsers (including the more common ones) add a custom
scope chain to the event handling functions that they internally
generate from intrinsic event attribute string defined code. Those
custom scope chains do include a number of objects from the DOM,
depending on the browser in question. If the browser has added the INPUT
element on which the attribute is specified to the scope chain, then
"form" will resolve as a reference to the W3C HTML DOM specified (and
seemingly universally supported) - form - property of the INPUT element
(or, more precisely the HTMLInputElemen t interface). And when the -
document - element is added to the scope chain "forms" will be resolved
as the W3C HTML DOM specified - forms - collection of the HTMLDocument
interface (universally implemented in HTML DOMs, but missing form some
older XHTML DOM implementations ).

Experimentation has suggested that all of the browsers that do provide a
custom scope chain for event handling functions internally generated
from intrinsic event attribute strings will place the element on which
the attribute appears on that scope chain. However, the placing of a
reference to the - document - on that scope chain is less commonly
implemented. Thus the proposed switch from the original property
accessor to the proposed alternative will sacrifice some cross-browser
compatibility for no particularly good reason.

On the other hand, the creating of custom scope chains for internally
generated event handling functions is not defined in (or even suggested
by) any published specification/recommendation, so it is surprising that
where they are created they differ in behaviour. And it is also not
surprising that some (otherwise reasonably standards compliant) browsers
do not implement such a mechanism at all (leaving their internally
generated event handling functions with scope chains that satisfy ECMA
262 but go no further). For these browsers both property accessor
formulations will error, rather than resolving to useful values.

To maximise the cross-browser compatibility the code defined in the
string values of intrinsic event attributes that code should be written
as if it was the function body definition of any top level
ECMAScirpt/javascript function assigned to an event handling property of
a DOM element. No reliance on the inconstantly implemented custom scope
chains should be made. Instead property accessors should be capable of
being sucessfully resolved in a normal ECMAScirpt execution context.
Thus:-

forms.FrmX.FDep endSocialSecuri tyNumber.value

- would be better specified as:-

document.forms. FrmX.FDependSoc ialSecurityNumb er.value

-(because - document - can be expected to be a property of the
global/window object and so will be on the scope chain of any and all
ECMAScript functions). And:-

form.FDependSoc ialSecurityNumb er.value

- would be better as:-

this.form.FDepe ndSocialSecurit yNumber.value

- because the - this - keyword refers to the object with which the
function is executed as a method (the INPUT element in the case of an
event handler associated with that element).

The latter property accessor probably being the best option as it allows
referencing via the form without any interest in the name/ID of the
form. Allowing the form to be treated anonymously and so making the code
more portable.

Ideally both property accessors would reference the individual form
controls via the form's - elements - collection in order to fully
conform with the W3C DOM specification, rather than relying on the
'shortcut' of referring to those controls as named properties of the
form element itself (even though no scriptable browsers that understand
forms are known that do not implement the 'shortcut').
Also, all your attribute values should be quoted, not
just some of them.

<snip>

In HTML (as opposed to XHTML) 'should' is too strong a term. Quoting all
attribute strings is often suggested as good practice but rules exist
that define when attribute strings must be quoted, and when it is not
necessary. The advantage of quoting all attribute strings is that it can
never be wrong and makes it unnecessary to remember the rules about when
it must be done.

Follow-ups set to comp.lang.javas cript.

Richard.
Jul 23 '05 #4
Hi Fred,

Fred Oz wrote:
milkyway wrote:

Line 73 below is:

<INPUT onClick="if (FTry2(PrepObj( 'FrmX'))) {
addRowToTable(' FDependents',
form.FDependSoc ialSecurityNumb er.value,
where is 'addRowToTable' defined? The function "addRowToTa ble" is in the .js file "row_functions. js". I
thought that by referencing this file in my HTML file, that it would be
imported here and work - am I wrong?
Reduce your problem to the smallest amount of code to still show it
(say one form input and minimal HTML) and re-post - at least get rid of all the &nbsp; - use padding or margin or some other layout technique.
I have paired it down to the following. I still get the error. But
here, no .js files are used and I still get the same error on:

<INPUT onClick="workin g();" type="button" value=" Add "
name="Add">

I don't see what is wrong .... :-(

--------- PAIRED DOWN CODE BELOW ----------------------------

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv=Content-Type content="text/html;
charset=windows-1252">
</HEAD>

<SCRIPT language="JavaS cript" TYPE="applicati on/x-javascript">

function working()
{
alert("got in here");
}

</SCRIPT>
<BODY>
<FORM name=FrmX >
<TABLE width=388>
<TBODY>
<TR>
<TD width=113>
<INPUT onClick="workin g();" type="button" value=" Add "
name="Add">
</TD>
</TR>
</TBODY>
</TABLE>
</FORM>

<FORM name=FrmTabX action="#">
</FORM>
</BODY>
</HTML>
Try changing references such as:

form.FDependSoc ialSecurityNumb er.value

to:

forms.FrmX.FDep endSocialSecuri tyNumber.value

Also, all your attribute values should be quoted, not just some of
them. And ditch "language='java script' " - it's depreciated and
replaced by type="text/javascript".


I have made the replacements but I don't think the processing gets that
far to access these values. I have paired the code down though - please
see above.

Kindest Regards.

Jul 23 '05 #5
Hi Jeff,

Jeff North wrote:
On 16 Jan 2005 05:01:36 -0800, in comp.lang.javas cript "milkyway"
<d0******@hotma il.com> wrote:
Your script files are pointing to your hard drive. You should make the links point to the folder within your website. For example the script
files are in a folder called scripts, your <script> tags would look
like:
<script language="javas cript" TYPE="applicati on/x-javascript"
src="folder/row_functions.j s" >
<script language="javas cript" TYPE="applicati on/x-javascript"
src="folder/data_check_func tions.js" >


My code is currently not on a website. I am doing some tests without
one. Is there a way to use the .js files even though they are located
on your hard drive? If so, how?

Kindest Regards.

Jul 23 '05 #6
Hello all,

Thank you for your help :-) I think the reason for the problem has
changed. Basically, if someone can tell me how to include a .js file
that is on the hard drive, then all will be OK --- I think ...
How does one do this?

TIA

Jul 23 '05 #7
milkyway wrote:
Hello all,

Thank you for your help :-) I think the reason for the problem has
changed. Basically, if someone can tell me how to include a .js file
that is on the hard drive, then all will be OK --- I think ...
How does one do this?


This should not present a problem at all.
Mick
Jul 23 '05 #8
milkyway wrote:
[...]
I have paired it down to the following. I still get the error. But
here, no .js files are used and I still get the same error on:

<INPUT onClick="workin g();" type="button" value=" Add "
name="Add">

I don't see what is wrong .... :-(
I don't get any errors, however:

--------- PAIRED DOWN CODE BELOW ----------------------------

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
You are missing the opening "<", but I'll assume that is just an error
in copy/paste.

[...] <SCRIPT language="JavaS cript" TYPE="applicati on/x-javascript">
Language is depreciated, the correct type is:

<script type="text/javascript">
<FORM name=FrmX >
Quote attributes:

... name="FrmX">
<TABLE width=388>
And here:

... width="388">

et cetera

[...] <FORM name=FrmTabX action="#">
If you want no action, use:

<FORM name="FrmTabX" action="">

I have made the replacements but I don't think the processing gets that
far to access these values. I have paired the code down though - please
see above.


The only thing that might stop your code from working is the incorrect
type, but even that was tollerated by Firefox.

--
Fred
Jul 23 '05 #9
milkyway wrote:
Hello all,

Thank you for your help :-) I think the reason for the problem has
changed. Basically, if someone can tell me how to include a .js file
that is on the hard drive, then all will be OK --- I think ...
How does one do this?

TIA


Your original file path was:

<script language="javas cript" TYPE="applicati on/x-javascript"
src="file:///C|Documents and Settings\Deskto p\BASE
PAGE\row_functi ons.js" >

The use of pipe "|" is illegal in a file name/path.

All paths should use forward slash "/", not backward "\".

For development, put your .js files in the same directory as your web
page or in a sub-directory and reference with a relative path.

e.g. create a sub-directory where your HTML is called "scripts", then
reference your script file as:

<script type="text/javascript"
src="scripts/row_functions.j s">
</script>

--
Rob
Jul 23 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
2042
by: Nafai | last post by:
Hello. I need to handle cin errors like these: .... int n; cout << "Type a number: "; cin >> n; // Check user actually typed a number. ....
11
1599
by: milkyway | last post by:
Hello, I have an HTML page that I am trying to import 2 .js file (I created) into. These files are: row_functions.js and data_check_functions.js. Whenever I bring the contents of the files into this HTML file, all is OK but whenever the functions are separated (as it is now), when I run the page, I get the following error: Line 73, object expected.
0
1231
by: Alan Silver | last post by:
Hello, I am having a problem setting and resetting cookies. I'm sure I just doing something really stupid as this is such a basic issue, but I can find any answer. Please can someone help me? The following code is a complete page that demonstrates my problem. If you save this as an .aspx and load it in a browser, it tells you it is creating the cookie. If you reload the page, it tells you it is changing the value. If you reload it...
9
6760
by: Edwinah63 | last post by:
Hi everyone, Please let there be someone out there who can help. I have two BOUND combo boxes on a continuous form, the second being dependent on the first. I have no problem getting the second combo to change depending on what values the user selects in the first box, it's just that every time the user changes the first combobox, the second combobox FOR EVERY RECORD goes blank.
7
1781
by: rn5a | last post by:
This is the second time I am asking this question in this newsgroup since I haven't got a solution or response from anyone in my previous post & I need to resolve this issue desperately. Sorry for the double post but I just didn't have any other option other than re-posting the same question in this newsgroup. Consider the following code in a VB class file: Namespace LoginUserFetchDB Public Class ZForZebra : Inherits SoapHeader
1
2271
by: ryann18 | last post by:
Can someone please help with this modifying Account problem!?!?! Modify the Account class so that it also permits an account to be opened with just a name and an account number, assuming an initial balance of zero. Modify the main method of the Transactions class to demonstrate this new capability. //******************************************************************** // Account.java Author: Lewis/Loftus // // Represents a...
2
1603
by: shblack | last post by:
Please can someone help me with this program. I am in a JAVA programming class and I am having a heck of a time. I am still having a problem with the basic concepts of JAVA but the teacher continues to give us difficult assignments with out any help. Here is the assignment: Write a class named 'Player' that has two attributes, 'name' (which has to be a 'Sting') and 'rating' (which has to be a 'int'). Then write an application class named...
40
2319
by: aslamhenry | last post by:
please key in any 5 digits number : 56789 and the ouput is 5678 9 567 89 56 789 5 6789
7
16165
by: jeddiki | last post by:
Hi, As I am in Turkey at present, I can not see vidoes on youtube. So I have tried a few proxies but keep finding them slow or not working. So I have installed myphpProxy on my server under the domain name www.blog-start.com Unfortuantely it is not not working correctly
0
8913
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9280
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
9200
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
8144
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6722
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
6016
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
4525
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
3238
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
3
2162
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.