473,594 Members | 2,713 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Re: Making Site Opaque -- This Strategy Feasible?


Yeah, but that requires installing the Flash plug-in.

If it's otherwise possible -- which it seems to be -- CSS/JavaScript
is more powerful than I'd thought!
Anyway, it's a technical question, not an "artistic" one....

On Apr 26, 3:35 pm, "Jonathan N. Little" <lws4...@centra l.netwrote:
>

This kind of nonsense is for Flash...

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIOhttp://www.LittleWorks Studio.com
Jun 27 '08 #1
12 1627
Prisoner at War wrote:
Yeah, but that requires installing the Flash plug-in.

If it's otherwise possible -- which it seems to be -- CSS/JavaScript
is more powerful than I'd thought!
Anyway, it's a technical question, not an "artistic" one....
What you want is old MS's proprietary fade transitions filter. When
DHTML was the current "Web2.0" it was sort of popular. It would require
JavaScript and be very messy to get it to work on more that one browser.
... More work that I would be willing to invest. Again, this "effect" is
more in Flash's domain.

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Jun 27 '08 #2
VK
On Apr 26, 11:40 pm, Prisoner at War <prisoner_at_.. .@yahoo.com>
wrote:
Yeah, but that requires installing the Flash plug-in.

If it's otherwise possible -- which it seems to be -- CSS/JavaScript
is more powerful than I'd thought!

Anyway, it's a technical question, not an "artistic" one....
Technically it is perfectly cross-browser possible: but to write a
stay alone working sample would require an hour of coding and cross-
browser testing. I just don't have this spare time in my hand - though
other may do or someone may have a working snippet ready. You may just
take subModal script and re-adjust it for your needs if you can:
http://www.subimage.com/dhtml/subModal/
Jun 27 '08 #3
On Apr 26, 3:53 pm, "Jonathan N. Little" <lws4...@centra l.netwrote:
>

What you want is old MS's proprietary fade transitions filter. When
DHTML was the current "Web2.0" it was sort of popular. It would require
JavaScript and be very messy to get it to work on more that one browser.
.. More work that I would be willing to invest. Again, this "effect" is
more in Flash's domain.
Yeah, but Flash requires a plug-in...besides, I'm still struggling
with CSS/JavaScript! ^_^

I know these effects sound silly, but I've got a legitimate use for
them. And, mostly, it's an educational thing: even if I didn't have a
good use for them it's nice to know what's possible. Part of my
problem right now is that I don't even know the "scope" and "depth" of
what's possible between CSS and JavaScript...I' ve come across sites
that demonstrate neat tricks, but none really teach -- at best, they
provide a brief outline for an already knowledgeable reader....

I've bought the book "DOM Scripting"...I hope that will answer many
questions....
--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIOhttp://www.LittleWorks Studio.com
Jun 27 '08 #4
On Apr 26, 5:14 pm, VK <schools_r...@y ahoo.comwrote:
>

Technically it is perfectly cross-browser possible: but to write a
stay alone working sample would require an hour of coding and cross-
browser testing. I just don't have this spare time in my hand - though
other may do or someone may have a working snippet ready. You may just
take subModal script and re-adjust it for your needs if you can:http://www.subimage.com/dhtml/subModal/

Hey, cool!! I have **no idea what it is** but it looks fun! 8-)

Thanks, I hope I can understand all this stuff soon...can you tell me,
how did you (how did all of you people) learn this stuff??? I mean,
I'm reading many different books and trying to integrate different
concepts, but so far I've yet to come up with any original scripts of
my own...what I'm somewhat successful at is "hacking" others' scripts
to my own uses...but I'd like to be able to conceive of something and
know how to go about making it so, without having to research others'
similar implementations !

So how did you all learn this stuff?? Is it just a matter of time??
Ack, I'm spending so much time dealing with site "mechanics" I've
stopped creating actual content altogether! =(

But at least this diversion is quite fun! =) Even if often in a very
frustrating way, like a hard-to-get woman! =\
Jun 27 '08 #5
Playing around : tested in Safari, Opera and FireFox. Simplified
version that behaves more properly when/if the window is resized.

<html>
<head>
<title>Demo</title>
<style type="text/css">
html {
width: 100%;
height: 100%;
padding: 0px 0px;
background-color: #DCDCDC;
}

body {
width: 80%;
height: 100%;
margin: 0px auto;
padding: 0.5em 2em;
background-color: #FFFFFF;
border-left: thin solid black;
border-right: thin solid black;
}

p {
font: 1em Georgia, serif;
line-height: 1.4;
}

div#cover {
visibility: hidden;
position: absolute;
background-color: black;
opacity: 0.6;
z-index: 1001;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
}

div#popup {
visibility: hidden;
position: absolute;
z-index: 1002;
left: 0px;
top: 0px;
border: medium double black;
padding: 10px 10px;
background-color: white;
}

div#popup p {
font: normal 0.8em Verdana, Geneva, sans-serif;
text-align: center;
}
</style>

<script>

function $ (p) {
return document.getEle mentById(p);
};
function lockScreen() {
$('cover').styl e.visibility = 'visible';
$('popup').styl e.visibility = 'visible';
return false;
};
function releaseScreen() {
$('cover').styl e.visibility = 'hidden';
$('popup').styl e.visibility = 'hidden';
};

</script>

</head>
<body>
<div id="cover"></div>
<div id="popup">
<p>Lorem Ipsum rulez!</p>
<p><button type="button" onclick="releas eScreen()">Clos e</button>
</div>
<a href="noscript. html" onclick="return lockScreen()">A pply settings</
a>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Quisque eu est. Morbi laoreet, diam at interdum pharetra,
tellus pede posuere massa, fermentum scelerisque enim elit
in felis. Donec auctor, libero non rhoncus mattis, dui sapien
faucibus quam, ut pulvinar elit est ac tortor. Quisque molestie.
Donec eu lorem. Integer semper suscipit ipsum. Phasellus et
justo sed dolor blandit lobortis. Morbi a urna eu dolor bibendum
fermentum. Phasellus adipiscing blandit nisi. Aenean urna est,
adipiscing eu, pellentesque eget, egestas sit amet, nibh.
Vestibulum ante ipsum primis in faucibus orci luctus et ultrices
posuere cubilia Curae; Curabitur id mauris non elit consectetuer
semper. Nam nec nunc. Nulla facilisi. Suspendisse nec nibh.
Cras vitae felis.</p>
<script>
//Center the popup when/if the window is resized.
window.onresize = window.onload = function () {
var e = $('popup'), d = document.docume ntElement;
e.style.left = ((d.clientWidth - e.offsetWidth)/2) + 'px';
e.style.top = ((d.clientHeigh t - e.offsetHeight)/2) + 'px';
};
</script>
</body>
</html>
Jun 27 '08 #6
<html>
<head>
<title>Demo</title>
<style type="text/css">
html {
width: 100%;
height: 100%;
padding: 0px 0px;
background-color: #DCDCDC;
}

body {
width: 80%;
height: 100%;
margin: 0px auto;
padding: 0.5em 2em;
background-color: #FFFFFF;
border-left: thin solid black;
border-right: thin solid black;
}

p {
font: 1em Georgia, serif;
line-height: 1.4;
}

div#cover {
visibility: hidden;
position: absolute;
background-color: black;
opacity: 0.6;
z-index: 1001;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
}

div#popup {
visibility: hidden;
position: absolute;
z-index: 1002;
left: 0px;
top: 0px;
border: medium double black;
padding: 10px 10px;
background-color: white;
}

div#popup p {
font: normal 0.8em Verdana, Geneva, sans-serif;
text-align: center;
}
</style>

<script>
//Playing around : tested in Safari, Opera and FireFox.
//Simplified version that behaves better when/if the window is
resized.

function $ (p) {
return document.getEle mentById(p);
};
function lockScreen() {
$('cover').styl e.visibility = 'visible';
$('popup').styl e.visibility = 'visible';
return false;
};
function releaseScreen() {
$('cover').styl e.visibility = 'hidden';
$('popup').styl e.visibility = 'hidden';
};

//Center the popup when/if the window is resized.
window.onresize = window.onload = function () {
var e = $('popup'), d = document.docume ntElement;
e.style.left = ((d.clientWidth - e.offsetWidth)/2) + 'px';
e.style.top = ((d.clientHeigh t - e.offsetHeight)/2) + 'px';
};

</script>

</head>
<body>
<div id="cover"></div>
<div id="popup">
<p>Lorem Ipsum rulez!</p>
<p><button type="button" onclick="releas eScreen()">Clos e</button>
</div>
<a href="noscript. html" onclick="return lockScreen()">C lick to do it !
</a>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Quisque eu est. Morbi laoreet, diam at interdum pharetra,
tellus pede posuere massa, fermentum scelerisque enim elit
in felis. Donec auctor, libero non rhoncus mattis, dui sapien
faucibus quam, ut pulvinar elit est ac tortor. Quisque molestie.
Donec eu lorem. Integer semper suscipit ipsum. Phasellus et
justo sed dolor blandit lobortis. Morbi a urna eu dolor bibendum
fermentum. Phasellus adipiscing blandit nisi. Aenean urna est,
adipiscing eu, pellentesque eget, egestas sit amet, nibh.
Vestibulum ante ipsum primis in faucibus orci luctus et ultrices
posuere cubilia Curae; Curabitur id mauris non elit consectetuer
semper. Nam nec nunc. Nulla facilisi. Suspendisse nec nibh.
Cras vitae felis.</p>
</body>
</html>
Jun 27 '08 #7
Version 2 fades in/out... :-)
Not for IE. Oh My !
Safari, FireFox & Opera, ok.

@Prisoner at War : a friendly advice :
if you aren't doing so already :
Use FireFox *2* + FireBug for debugging.
It's handy as a learning tool, as well.
<html>
<head>
<title>untitled </title>
<meta name="generator " content="TextMa te http://macromates.com/">
<meta name="author" content="Jorge Chamorro Bieling">
<!-- Date: 2008-05-02 -->

<title>Demo</title>

<style type="text/css">
html {
width: 100%;
height: 100%;
padding: 0px 0px;
background-color: #DCDCDC;
}

body {
width: 80%;
height: 100%;
margin: 0px auto;
padding: 0.5em 2em;
background-color: #FFFFFF;
border-left: thin solid black;
border-right: thin solid black;
}

p {
font: 1em Georgia, serif;
line-height: 1.4;
}

div#cover {
visibility: hidden;
position: absolute;
background-color: black;
opacity: 0.6;
z-index: 1001;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
}

div#popup {
visibility: hidden;
position: absolute;
z-index: 1002;
left: 0px;
top: 0px;
border: medium double black;
padding: 10px 10px;
background-color: white;
}

div#popup p {
font: normal 0.8em Verdana, Geneva, sans-serif;
text-align: center;
}
</style>

<script>

function $ (p) {
return document.getEle mentById(p);
};

function show (pID, pVisible, pTargetOpacity) {
var kFaderSteps = 15,
kFadermS = 500/kFaderSteps, //Half a second
e = $(pID),
step;

if (pVisible) {
if (e.style.visibi lity === 'visible') { return; }
e.style.opacity = 0;
e.style.visibil ity = 'visible';
step = pTargetOpacity/kFaderSteps;
(e.fader=functi on () {
if (e.fader !== arguments.calle e) { return; }
var currentOpacity = +e.style.opacit y;
if (( currentOpacity += step ) >= pTargetOpacity ) {
currentOpacity = pTargetOpacity;
e.fader = undefined;
} else { setTimeout(e.fa der, kFadermS); }
e.style.opacity = currentOpacity;
})();
} else {
//Will always fade to opacity=0.0;
if (e.style.visibi lity === 'hidden') { return; }
step = e.style.opacity/kFaderSteps;
(e.fader=functi on () {
if (e.fader !== arguments.calle e) { return; }
var currentOpacity = +e.style.opacit y;
if (( currentOpacity -= step ) <= 0.0 ) {
currentOpacity = 0.0;
e.style.visibil ity = 'hidden';
e.fader = undefined;
} else { setTimeout(e.fa der, kFadermS); }
e.style.opacity = currentOpacity;
})();
}
};

function lockScreen() {
show('cover', true, 0.6);
show('popup', true, 1.0);
return false;
};

function releaseScreen() {
show('cover', false);
show('popup', false);
};

//Center the popup when/if the window is resized.
window.onresize = window.onload = function () {
var e = $('popup'), d = document.docume ntElement;
e.style.left = ((d.clientWidth - e.offsetWidth)/2) + 'px';
e.style.top = ((d.clientHeigh t - e.offsetHeight)/2) + 'px';
};

</script>

</head>
<body>
<div id="cover"></div>
<div id="popup">
<p>Lorem Ipsum rulez!</p>
<p><button type="button" onclick="releas eScreen()">Clos e</button>
</div>
<a href="noscript. html" onclick="return lockScreen()">C lick to do it !
</a>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Quisque eu est. Morbi laoreet, diam at interdum pharetra,
tellus pede posuere massa, fermentum scelerisque enim elit
in felis. Donec auctor, libero non rhoncus mattis, dui sapien
faucibus quam, ut pulvinar elit est ac tortor. Quisque molestie.
Donec eu lorem. Integer semper suscipit ipsum. Phasellus et
justo sed dolor blandit lobortis. Morbi a urna eu dolor bibendum
fermentum. Phasellus adipiscing blandit nisi. Aenean urna est,
adipiscing eu, pellentesque eget, egestas sit amet, nibh.
Vestibulum ante ipsum primis in faucibus orci luctus et ultrices
posuere cubilia Curae; Curabitur id mauris non elit consectetuer
semper. Nam nec nunc. Nulla facilisi. Suspendisse nec nibh.
Cras vitae felis.</p>
</body>
</html>
Jun 27 '08 #8
<html>
<head>
<title>Demo</title>
<style type="text/css">
html {
width: 100%;
height: 100%;
padding: 0px 0px;
background-color: #DCDCDC;
}

body {
width: 80%;
height: 100%;
margin: 0px auto;
padding: 0.5em 2em;
background-color: #FFFFFF;
border-left: thin solid black;
border-right: thin solid black;
}

p {
font: 1em Georgia, serif;
line-height: 1.4;
}

div#cover {
visibility: hidden;
position: absolute;
background-color: black;
opacity: 0.6;
z-index: 1001;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
}

div#popup {
visibility: hidden;
position: absolute;
z-index: 1002;
left: 0px;
top: 0px;
border: medium double black;
padding: 10px 10px;
background-color: white;
}

div#popup p {
font: normal 0.8em Verdana, Geneva, sans-serif;
text-align: center;
}

</style>
<script>
/*
Playing around : tested in Safari, Opera and FireFox.
Simplified version that behaves better when/if the window is
resized.
*/
function $ (p) {
return document.getEle mentById(p);
};

function lockScreen() {
$('cover').styl e.visibility = 'visible';
$('popup').styl e.visibility = 'visible';
return false;
};

function releaseScreen() {
$('cover').styl e.visibility = 'hidden';
$('popup').styl e.visibility = 'hidden';
};

//Center the popup when/if the window is resized.
window.onresize = window.onload = function () {
var e = $('popup'), d = document.docume ntElement;
e.style.left = ((d.clientWidth - e.offsetWidth)/2) + 'px';
e.style.top = ((d.clientHeigh t - e.offsetHeight)/2) + 'px';
};
</script>
</head>
<body>
<div id="cover"></div>
<div id="popup">
<p>Lorem Ipsum rulez!</p>
<p><button type="button" onclick="releas eScreen()">Clos e</
button>
</div>
<a href="noscript. html" onclick="return lockScreen()">C lick to do
it !
</a>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Quisque eu est. Morbi laoreet, diam at interdum pharetra,
tellus pede posuere massa, fermentum scelerisque enim elit
in felis. Donec auctor, libero non rhoncus mattis, dui sapien
faucibus quam, ut pulvinar elit est ac tortor. Quisque molestie.
Donec eu lorem. Integer semper suscipit ipsum. Phasellus et
justo sed dolor blandit lobortis. Morbi a urna eu dolor bibendum
fermentum. Phasellus adipiscing blandit nisi. Aenean urna est,
adipiscing eu, pellentesque eget, egestas sit amet, nibh.
Vestibulum ante ipsum primis in faucibus orci luctus et ultrices
posuere cubilia Curae; Curabitur id mauris non elit consectetuer
semper. Nam nec nunc. Nulla facilisi. Suspendisse nec nibh.
Cras vitae felis.</p>
</body>
</html>
Jun 27 '08 #9

/*
Playing around : tested in Safari, Opera and FireFox.
Simplified version that behaves better when/if the window is
resized.
*/
<html>
<head>
<title>Demo</title>
<style type="text/css">
html {
width: 100%;
height: 100%;
padding: 0px 0px;
background-color: #DCDCDC;
}

body {
width: 80%;
height: 100%;
margin: 0px auto;
padding: 0.5em 2em;
background-color: #FFFFFF;
border-left: thin solid black;
border-right: thin solid black;
}

p {
font: 1em Georgia, serif;
line-height: 1.4;
}

div#cover {
visibility: hidden;
position: absolute;
background-color: black;
opacity: 0.6;
z-index: 1001;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
}

div#popup {
visibility: hidden;
position: absolute;
z-index: 1002;
left: 0px;
top: 0px;
border: medium double black;
padding: 10px 10px;
background-color: white;
}

div#popup p {
font: normal 0.8em Verdana, Geneva, sans-serif;
text-align: center;
}

</style>
<script>

function $ (p) {
return document.getEle mentById(p);
};

function lockScreen() {
$('cover').styl e.visibility = 'visible';
$('popup').styl e.visibility = 'visible';
return false;
};

function releaseScreen() {
$('cover').styl e.visibility = 'hidden';
$('popup').styl e.visibility = 'hidden';
};

//Center the popup when/if the window is resized.
window.onresize = window.onload = function () {
var e = $('popup'), d = document.docume ntElement;
e.style.left = ((d.clientWidth - e.offsetWidth)/2) + 'px';
e.style.top = ((d.clientHeigh t - e.offsetHeight)/2) + 'px';
};
</script>
</head>
<body>
<div id="cover"></div>
<div id="popup">
<p>Lorem Ipsum rulez!</p>
<p><button type="button" onclick="releas eScreen()">Clos e</
button>
</div>
<a href="noscript. html" onclick="return lockScreen()">C lick to do
it !
</a>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Quisque eu est. Morbi laoreet, diam at interdum pharetra,
tellus pede posuere massa, fermentum scelerisque enim elit
in felis. Donec auctor, libero non rhoncus mattis, dui sapien
faucibus quam, ut pulvinar elit est ac tortor. Quisque molestie.
Donec eu lorem. Integer semper suscipit ipsum. Phasellus et
justo sed dolor blandit lobortis. Morbi a urna eu dolor bibendum
fermentum. Phasellus adipiscing blandit nisi. Aenean urna est,
adipiscing eu, pellentesque eget, egestas sit amet, nibh.
Vestibulum ante ipsum primis in faucibus orci luctus et ultrices
posuere cubilia Curae; Curabitur id mauris non elit consectetuer
semper. Nam nec nunc. Nulla facilisi. Suspendisse nec nibh.
Cras vitae felis.</p>
</body>
</html>
Jun 27 '08 #10

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

Similar topics

4
1971
by: Claudio Jolowicz | last post by:
I am trying to find a solution to the following design problem (code at the bottom): We are implementing a trader agent that can trade with other traders on an electronical trading platform. To make the trader more extensible, we have defined a strategy interface and implemented this interface for different trading strategies. The problem relates to how to connect the trader and the strategy. The problem is tricky because the strategy...
10
2112
by: Gernot Frisch | last post by:
Hi, I have found some menu functions. It works quite well, but how can I replace it with a simple <a href> if javascript is turned off? I reduced my code to: <script>IncludeMenuHere()</script> More, any tips about "fading" the menu item in and out (x-browser)? Currently it's using DIVs and this.items.visibility(false);
19
1943
by: mehdi.louizi | last post by:
Hello, I'm beginning to create a web site but I'm facing a big problem for which I didn't find any solution!! I'm using the 1024*768 screen resolution, and when I change it to 800*600 the page is visible but with the scroll bars. So the design is no longer the same.. Same thing if I work on a 800*600 resolution, the page is too ugly to bee seen.. I don't want to work with frames. Concerning the creation of tables with fixed width (100 %),...
19
1567
by: Capstar | last post by:
Hi NG, I've read some time ago in this NG, that when you're writing a library it can be good practice to use an opaque type to point to your structures if the user doesn't need to modify the structure himself. This way the internal structure of the lib can be changed, and the lib can be recompiled, but the application using the lib doesn't need to be recompiled. But then there are two ways to define the opque type:
2
1953
by: jashugun | last post by:
Hello to everybody, I'm trying to write a small program which is meant to interact with an sqlite database. My idea is to create once a database handler, which happens to be an opaque pointer (a pointer to a struct which is not defined anywhere, if I understood correctly). Now, if I had the possibility of instantiating a concrete struct, I would create a function like this: struct sqlite& myDb() {
18
11298
by: chankl | last post by:
Can anyone explain what's an opaque pointer and how it's implemented in C? I read about this concept in the book "C interfaces and implementations". Here's an example from the book (list.h - available from the website): #define T List_T
25
3383
by: marcin.rzeznicki | last post by:
Hello everyone I've got a little problem with choosing the best decoding strategy for some nasty problem. I have to deal with very large files wich contain text encoded with various encodings. Their length makes loading contents of file into memory in single run inappropriate. I solved this problem by implementing memory mapping using P/Invoke and I load contents of file in chunks. Since files' contents are in different encodings what I...
3
2156
by: Ernesto Bascón | last post by:
Hi everybody: I have two questions: 1. I'm using opaque pointers in my classes to hide their data structures; there is a way to use opaque pointers in template classes; since the implementation and the declaration of the template class is in the same file, the use of opaque pointers does not make sense, but... what about implementation hiding for libraries? how can I make sure that the new versions of my libraries have binary...
5
220
by: Prisoner at War | last post by:
On Apr 26, 5:19 pm, Ben C <spams...@spam.eggswrote: Super!! It will take me a while to digest your idea, though...and in the meantime, may I ask: how about utilizing any CSS 2.x methods? And, first of all, really -- is your script or pseudo-code there JavaScript or CSS or both?? Sorry, I'm really not sure where one stops and the other begins...they're so hand-in-hand, after all! Thanks again!!
27
2500
by: Nate Eldredge | last post by:
Consider the following pseudo-code: #include <opaque.h> struct foo { int a; opaque_t op; int b; };
0
7946
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
7876
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
8372
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
8003
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
6654
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
5739
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
5408
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
3859
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
1478
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.