473,753 Members | 6,868 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Script is working in IE, but not working in Netscape 7 - trouble with document.select ion.createRange ();

I'm a beginner with Javascript and especially cross-browser
Javascript. I got this working in IE, but not in Netscape 7. It seems
like, in Netscape, every time I click on a button, the focus shifts to
that button, so there is no text to be selected. What should I do?

Below you'll see some code that I have in one of my forms. I was
hoping to have these buttons and when I click on them they would take
selected text from a textarea box and replace it with the text but
surrounded with the HTML tags I wanted. But I can't get this to work.
Why?


<script language="javas cript"
function wrapSelectionBo ld (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<b ' + range.text + '<\/b ';
}
function wrapSelectionIt alic (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<i ' + range.text + '<\/i ';
}
function wrapSelectionBl ockQuote (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<blockquote ' + range.text + '<\/blockquote ';
}
function wrapSelectionBi gHeadline (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<h1 ' + range.text + '<\/h1 ';
}
function wrapSelectionSm allHeadline (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<h3 ' + range.text + '<\/h3 ';
}
</script
<input type="button" value="bold"
onclick="wrapSe lectionBold(thi s.form.inputId2 )" /
<input type="button" value="italic"
onclick="wrapSe lectionItalic(t his.form.inputI d2)"/
<input type="button" value="blockquo te"
onclick="wrapSe lectionBlockQuo te(this.form.in putId2)"/
<input type="button" value="big headline"
onclick="wrapSe lectionBigHeadl ine(this.form.i nputId2)"/
<input type="button" value="small headline"
onclick="wrapSe lectionSmallHea dline(this.form .inputId2)"/



<div class="formElem ent"
Change the brief description or introduction for your Weblog; <br
Or change the contents of your Webpage:<br
<textarea id="inputId2" name="formInput s[cbMainContent]"
class="textarea Input" </textarea
<p HTML into symbols? <input type="checkbox"
name="formInput s[usingHtml]" value="y" class="textarea Checkbox" </p

</div
Jul 23 '05 #1
8 2017
On 2 May 2004 15:23:58 -0700, lawrence <lk******@geoci ties.com> wrote:
I'm a beginner with Javascript and especially cross-browser
Javascript. I got this working in IE, but not in Netscape 7. It seems
like, in Netscape, every time I click on a button, the focus shifts to
that button, so there is no text to be selected. What should I do?

Below you'll see some code that I have in one of my forms. I was
hoping to have these buttons and when I click on them they would take
selected text from a textarea box and replace it with the text but
surrounded with the HTML tags I wanted. But I can't get this to work.
Why?


[snipped code]

It doesn't really matter whether the text stays selected or not; IE is the
only browser I know of that supports the document.select ion object. Your
code simply won't work on the majority of browsers.

As far as I'm aware, there is no general way to do what you are attempting.

Mike

--
Michael Winter
M.******@blueyo nder.co.invalid (replace ".invalid" with ".uk" to reply)
Jul 23 '05 #2
In article <da************ **************@ posting.google. com>,
lk******@geocit ies.com enlightened us with...

Below you'll see some code that I have in one of my forms. I was
hoping to have these buttons and when I click on them they would take
selected text from a textarea box and replace it with the text but
surrounded with the HTML tags I wanted. But I can't get this to work.
Why?


Because it's full of IE only stuff (document.selec tion, createRange,
etc).
You can't do this on the other browsers. They simply don't support it
yet. There is no equivalent. IIRC, it's on the request list for Mozilla.
--
--
~kaeli~
You feel stuck with your debt if you can't budge it.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #3
kaeli <ti******@NOSPA M.comcast.net> wrote in message news:<MP******* *************** **@nntp.lucent. com>...
In article <da************ **************@ posting.google. com>,
lk******@geocit ies.com enlightened us with...

Below you'll see some code that I have in one of my forms. I was
hoping to have these buttons and when I click on them they would take
selected text from a textarea box and replace it with the text but
surrounded with the HTML tags I wanted. But I can't get this to work.
Why?


Because it's full of IE only stuff (document.selec tion, createRange,
etc).
You can't do this on the other browsers. They simply don't support it
yet. There is no equivalent. IIRC, it's on the request list for Mozilla.


You're saying that even if I study up on Mozilla/Netscape quite a bit
I'll find no way to do this in Netscape? I won't waste my time if you
say it is impossible, though if it is possible I'm happy to do the
work of researching it. I'm new to Javascript so I'm not sure how much
can be done with it.
Jul 23 '05 #4
In article <da************ ************@po sting.google.co m>,
lk******@geocit ies.com enlightened us with...

You're saying that even if I study up on Mozilla/Netscape quite a bit
I'll find no way to do this in Netscape? I won't waste my time if you
say it is impossible, though if it is possible I'm happy to do the
work of researching it. I'm new to Javascript so I'm not sure how much
can be done with it.


I already researched it when I tried it a couple months ago when this
same question came up and couldn't find out how. Feel free to knock
yourself out, though - maybe you're more creative than me. If you find a
way, post it, okay?

Mozilla has a createRange, but it is not of Selection.
http://www.mozilla.org/docs/dom/domr...ange_ref8.html

Here's the main docs for the DOM reference, right at the S where I was
looking for Selection.
http://www.mozilla.org/docs/dom/domr...rtIX.html#IX_S

Note that Netscape 6+ is based on Mozilla and should support most, if
not all, of what they support.

--
--
~kaeli~
If a parsley farmer is sued, can they garnish his wages?
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #5
I had this working in IE and suddenly in stopped working, even in IE.
For the life of me, I can't see what mistake I made. Does anyone see
what mistake I made? (this bit from one of my forms)


<script language="javas cript">
function wrapSelectionBo ld (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<b>' + range.text + '<\/b>';
}
function wrapSelectionIt alic (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<i>' + range.text + '<\/i>';
}
function wrapSelectionBl ockQuote (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<blockquote>' + range.text + '<\/blockquote>';
}
function wrapSelectionBi gHeadline (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<h1>' + range.text + '<\/h1>';
}
function wrapSelectionSm allHeadline (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<h3>' + range.text + '<\/h3>';
}
function wrapSelectionMa keALink (element) {
var range = document.select ion.createRange ();
address = prompt("What address?");
address = '<a href=\"' + address + '\">';
if (range.parentEl ement() == element)
range.text = address + range.text + '<\/a>';
}
</script>
<input type="button" value="bold"
onclick="wrapSe lectionBold(thi s.form.inputId2 )" />
<input type="button" value="italic"
onclick="wrapSe lectionItalic(t his.form.inputI d2)"/>
<input type="button" value="blockquo te"
onclick="wrapSe lectionBlockQuo te(this.form.in putId2)"/>
<input type="button" value="big headline"
onclick="wrapSe lectionBigHeadl ine(this.form.i nputId2)"/>
<input type="button" value="small headline"
onclick="wrapSe lectionSmallHea dline(this.form .inputId2)"/>
<input type="button" value="make a link"
onclick="wrapSe lectionMakeALin k(this.form.inp utId2)"/>

<div class="formElem ent">
Type your main content:
<textarea id="inputId2" name="formInput s[cbMainContent]"
class="textarea Input"></textarea>
<p>HTML into symbols? <input type="checkbox"
name="formInput s[usingHtml]" value="y" class="textarea Checkbox"></p>

</div>
Jul 23 '05 #6
In article <da************ **************@ posting.google. com>,
lk******@geocit ies.com enlightened us with...
I had this working in IE and suddenly in stopped working, even in IE.
For the life of me, I can't see what mistake I made. Does anyone see
what mistake I made? (this bit from one of my forms)


Forgot the form tag needs to be around that textarea, since you use
this.form.input Id2 to reference it?
This worked fine for me in IE6.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title> New Document </title>
</head>

<body>
<script language="javas cript" type="text/javascript">
function wrapSelectionBo ld (element) {
alert(element);
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<b>' + range.text + '<\/b>';
}
function wrapSelectionIt alic (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<i>' + range.text + '<\/i>';
}
function wrapSelectionBl ockQuote (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<blockquote>' + range.text + '<\/blockquote>';
}
function wrapSelectionBi gHeadline (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<h1>' + range.text + '<\/h1>';
}
function wrapSelectionSm allHeadline (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<h3>' + range.text + '<\/h3>';
}
function wrapSelectionMa keALink (element) {
var range = document.select ion.createRange ();
address = prompt("What address?");
address = '<a href=\"' + address + '\">';
if (range.parentEl ement() == element)
range.text = address + range.text + '<\/a>';
}
</script>

<form>
<input type="button" value="bold"
onclick="wrapSe lectionBold(thi s.form.inputId2 )" />
<input type="button" value="italic"
onclick="wrapSe lectionItalic(t his.form.inputI d2)"/>
<input type="button" value="blockquo te"
onclick="wrapSe lectionBlockQuo te(this.form.in putId2)"/>
<input type="button" value="big headline"
onclick="wrapSe lectionBigHeadl ine(this.form.i nputId2)"/>
<input type="button" value="small headline"
onclick="wrapSe lectionSmallHea dline(this.form .inputId2)"/>
<input type="button" value="make a link"
onclick="wrapSe lectionMakeALin k(this.form.inp utId2)"/>
<div class="formElem ent">
Type your main content:
<textarea id="inputId2" name="formInput s[cbMainContent]"
class="textarea Input"></textarea>
<p>HTML into symbols? <input type="checkbox"
name="formInput s[usingHtml]" value="y" class="textarea Checkbox"></p>

</div>
</form>

</body>
</html>

--
--
~kaeli~
A midget fortune teller who escapes from prison is a small
medium at large.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #7
Thanks, but actually, the form tags are there, I just didn't include
them in my example. The form is so huge I thought it would be
overwhelming to post the whole thing. I've now got it workin on one
page but not another, so whatever the problem is, it must be very
small, perhaps a missing semi-colon or something.
This works without a problem in IE:
>>>>>>>>>>> >>>>>>>>>>>>>>> >>>>>>>>>>>>> > <input type="button" value="bold"
onclick="wrapSe lectionBold(thi s.form.inputId2 )" />
<input type="button" value="italic"
onclick="wrapSe lectionItalic(t his.form.inputI d2)"/>
<input type="button" value="blockquo te"
onclick="wrapSe lectionBlockQuo te(this.form.in putId2)"/>
<input type="button" value="big headline"
onclick="wrapSe lectionBigHeadl ine(this.form.i nputId2)"/>
<input type="button" value="small headline"
onclick="wrapSe lectionSmallHea dline(this.form .inputId2)"/>
<div class="formElem ent">
Type a brief description for your Weblog; <br>
Or type the full contents of your Webpage:<br>
<textarea id="inputId2" name="formInput s[cbMainContent]"
class="textarea Input"></textarea>
<p>HTML into symbols? <input type="checkbox"
name="formInput s[usingHtml]" value="y" class="textarea Checkbox"></p>
</div>>>>>>>>>>>> >>>>>>>>>>>>>>> >>>>>>>>>>>>

But this does not, and I have trouble seeing the difference:

>>>>>>>> >>>>>>>>>>>>>>> >>>>>>>>>>>> <input type="button" value="bold"
onclick="wrapSe lectionBold(thi s.form.inputId2 )" />
<input type="button" value="italic"
onclick="wrapSe lectionItalic(t his.form.inputI d2)"/>
<input type="button" value="blockquo te"
onclick="wrapSe lectionBlockQuo te(this.form.in putId2)"/>
<input type="button" value="big headline"
onclick="wrapSe lectionBigHeadl ine(this.form.i nputId2)"/>
<input type="button" value="small headline"
onclick="wrapSe lectionSmallHea dline(this.form .inputId2)"/>
<input type="button" value="make a link"
onclick="wrapSe lectionMakeALin k(this.form.inp utId2)"/>

<div class="formElem ent">
Type your main content: <br/>
<textarea id="inputId2" name="formInput s[cbMainContent]"
class="textarea Input"></textarea>
<p>HTML into symbols? <input type="checkbox"
name="formInput s[usingHtml]" value="y" class="textarea Checkbox"></p>
</div>>>>>>>>>>>> >>>>>>>>>>>>>>> >>>>>>>>>>>>


I use the same functions on both, except for this one:

function wrapSelectionMa keALink (element) {
var range = document.select ion.createRange ();
address = prompt('What address?');
address = '<a href=\"' + address + '\">';
if (range.parentEl ement() == element)
range.text = address + range.text + '<\/a>';
}





kaeli <ti******@NOSPA M.comcast.net> wrote in message news:<MP******* *************** **@nntp.lucent. com>... In article <da************ **************@ posting.google. com>,
lk******@geocit ies.com enlightened us with...
I had this working in IE and suddenly in stopped working, even in IE.
For the life of me, I can't see what mistake I made. Does anyone see
what mistake I made? (this bit from one of my forms)


Forgot the form tag needs to be around that textarea, since you use
this.form.input Id2 to reference it?
This worked fine for me in IE6.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title> New Document </title>
</head>

<body>
<script language="javas cript" type="text/javascript">
function wrapSelectionBo ld (element) {
alert(element);
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<b>' + range.text + '<\/b>';
}
function wrapSelectionIt alic (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<i>' + range.text + '<\/i>';
}
function wrapSelectionBl ockQuote (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<blockquote>' + range.text + '<\/blockquote>';
}
function wrapSelectionBi gHeadline (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<h1>' + range.text + '<\/h1>';
}
function wrapSelectionSm allHeadline (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<h3>' + range.text + '<\/h3>';
}
function wrapSelectionMa keALink (element) {
var range = document.select ion.createRange ();
address = prompt("What address?");
address = '<a href=\"' + address + '\">';
if (range.parentEl ement() == element)
range.text = address + range.text + '<\/a>';
}
</script>

<form>
<input type="button" value="bold"
onclick="wrapSe lectionBold(thi s.form.inputId2 )" />
<input type="button" value="italic"
onclick="wrapSe lectionItalic(t his.form.inputI d2)"/>
<input type="button" value="blockquo te"
onclick="wrapSe lectionBlockQuo te(this.form.in putId2)"/>
<input type="button" value="big headline"
onclick="wrapSe lectionBigHeadl ine(this.form.i nputId2)"/>
<input type="button" value="small headline"
onclick="wrapSe lectionSmallHea dline(this.form .inputId2)"/>
<input type="button" value="make a link"
onclick="wrapSe lectionMakeALin k(this.form.inp utId2)"/>
<div class="formElem ent">
Type your main content:
<textarea id="inputId2" name="formInput s[cbMainContent]"
class="textarea Input"></textarea>
<p>HTML into symbols? <input type="checkbox"
name="formInput s[usingHtml]" value="y" class="textarea Checkbox"></p>

</div>
</form>

</body>
</html>

--

Jul 23 '05 #8
Okay, I see now. I had two form elements with an id of inputId2. That
is why it was not working.

kaeli <ti******@NOSPA M.comcast.net> wrote in message news:<MP******* *************** **@nntp.lucent. com>...
In article <da************ **************@ posting.google. com>,
lk******@geocit ies.com enlightened us with...
I had this working in IE and suddenly in stopped working, even in IE.
For the life of me, I can't see what mistake I made. Does anyone see
what mistake I made? (this bit from one of my forms)


Forgot the form tag needs to be around that textarea, since you use
this.form.input Id2 to reference it?
This worked fine for me in IE6.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title> New Document </title>
</head>

<body>
<script language="javas cript" type="text/javascript">
function wrapSelectionBo ld (element) {
alert(element);
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<b>' + range.text + '<\/b>';
}
function wrapSelectionIt alic (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<i>' + range.text + '<\/i>';
}
function wrapSelectionBl ockQuote (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<blockquote>' + range.text + '<\/blockquote>';
}
function wrapSelectionBi gHeadline (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<h1>' + range.text + '<\/h1>';
}
function wrapSelectionSm allHeadline (element) {
var range = document.select ion.createRange ();
if (range.parentEl ement() == element)
range.text = '<h3>' + range.text + '<\/h3>';
}
function wrapSelectionMa keALink (element) {
var range = document.select ion.createRange ();
address = prompt("What address?");
address = '<a href=\"' + address + '\">';
if (range.parentEl ement() == element)
range.text = address + range.text + '<\/a>';
}
</script>

<form>
<input type="button" value="bold"
onclick="wrapSe lectionBold(thi s.form.inputId2 )" />
<input type="button" value="italic"
onclick="wrapSe lectionItalic(t his.form.inputI d2)"/>
<input type="button" value="blockquo te"
onclick="wrapSe lectionBlockQuo te(this.form.in putId2)"/>
<input type="button" value="big headline"
onclick="wrapSe lectionBigHeadl ine(this.form.i nputId2)"/>
<input type="button" value="small headline"
onclick="wrapSe lectionSmallHea dline(this.form .inputId2)"/>
<input type="button" value="make a link"
onclick="wrapSe lectionMakeALin k(this.form.inp utId2)"/>
<div class="formElem ent">
Type your main content:
<textarea id="inputId2" name="formInput s[cbMainContent]"
class="textarea Input"></textarea>
<p>HTML into symbols? <input type="checkbox"
name="formInput s[usingHtml]" value="y" class="textarea Checkbox"></p>

</div>
</form>

</body>
</html>

--

Jul 23 '05 #9

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

Similar topics

1
11865
by: Jeff Thies | last post by:
Is there a NS7, Opera7 or Mozilla equivalent for: document.selection.createRange(); Jeff
13
1570
by: Yousuf Khan | last post by:
Hi, I have this pre-built JS routine that creates a text animation special-effect. The routine was included inside a freeware HTML editor, called AceHTML. The problem is that it seems to work only on IE and IE-emulating browsers (such as Opera). According to what other people have told me, the problem is because this script has an outdated browser detection scheme, and that the procedure it uses for Netscape is no longer valid in modern...
15
3322
by: lawrence | last post by:
Is this the correct way to test for a method before I use it? createRange() is, I believe, an IE only method. function wrapSelectionInTag(selection, tag) { if (document.selection.createRange) { var range = document.selection.createRange(); if (range.parentElement() == element) range.text = '<' + tag + '>' + range.text + '<\/' + tag + '>'; }
5
1665
by: zaw | last post by:
Hi I am working on implementing this script to shopping cart. Basically, it copies fill the shipping address from billing automatically. I believe one or more syntax is not netscape compatible. Can anyone point out which one it is and how to make it both netscape and MS browser compatible? I hope if I can make the script compatible for those two at extreme, it will probably work with most browser out there. As you would notice, this form...
1
1372
by: c.anandkumar | last post by:
Hi How do I figure out if a selection in a document is in a particular control? I have a TEXTAREA in which a user can type in some text, select some text and 'apply' tags around it clicking a button. I am using document.selection.createRange() to create a textRange object and then modify its text property to suit the action. But the problem is I want to limit this action to a few "INPUT type=text" and TEXTAREA controls. How do I check...
2
2464
by: fnsbe | last post by:
Hi everybody, First of all I'm not a java hero but I tried to write my own text editor. Everything works but only when the existing text need to be re-edited the butttons of my editor seem not to work anymore... This is the main script : <!-- function storeCaret (txtarea) { if (txtarea.createTextRange) {
2
2625
by: ethandbrown | last post by:
Hi All-- I'm a bit stymied here. I need to display arbitrary HTML obtained through AJAX. The problem is when a <script> block is encountered one can't use innerHTML to set the content, because the <script> block won't be evaluated. Googling around, a found the createContextualFragment() solution which does execute script code. The following, for example, works:
1
1195
by: naseesalih | last post by:
i write code for protect selection of field. its working properly in explorer but not working in Netscape or other browser. pls send any one who know how to write netscape function getBooleanFalse() { return false; } function disableSlection() { var formPrefix = "registerAccountForm" ; ...
3
2141
by: jeddiki | last post by:
Hi, I am using this script which is nearly working correctly, but not quite! When a user selects some text from the web-page and copies it, the script is supposed to pick up the current web-page url and create a resource box or credit line that is added to the selected text when the data is pasted. You will see that the meta keywords are used (randomly) as the anchor text
0
9072
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
8896
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9653
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
9451
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...
0
8328
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...
0
4771
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...
0
4942
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2872
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2284
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.